diff --git a/core/lib/Thelia/Core/Thelia.php b/core/lib/Thelia/Core/Thelia.php
index 9702b4c4b..856b1d402 100644
--- a/core/lib/Thelia/Core/Thelia.php
+++ b/core/lib/Thelia/Core/Thelia.php
@@ -76,7 +76,19 @@ class Thelia extends Kernel
*/
public function loadConfiguration()
{
+ $request = $this->getContainer()->get('request');
+ }
+
+ /**
+ *
+ * boot parent kernel and after current kernel
+ *
+ */
+ public function boot()
+ {
+ parent::boot();
+ $this->loadConfiguration();
}
/**
diff --git a/core/lib/Thelia/Model/map/LangTableMap.php b/core/lib/Thelia/Model/map/LangTableMap.php
index ae0c57d05..e9544d25b 100644
--- a/core/lib/Thelia/Model/map/LangTableMap.php
+++ b/core/lib/Thelia/Model/map/LangTableMap.php
@@ -45,6 +45,7 @@ class LangTableMap extends TableMap
$this->addPrimaryKey('ID', 'Id', 'INTEGER', true, null, null);
$this->addColumn('TITLE', 'Title', 'VARCHAR', false, 100, null);
$this->addColumn('CODE', 'Code', 'VARCHAR', false, 10, null);
+ $this->addColumn('LOCALE', 'Locale', 'VARCHAR', false, 45, null);
$this->addColumn('URL', 'Url', 'VARCHAR', false, 255, null);
$this->addColumn('BY_DEFAULT', 'ByDefault', 'TINYINT', false, null, null);
$this->addColumn('CREATED_AT', 'CreatedAt', 'TIMESTAMP', false, null, null);
diff --git a/core/lib/Thelia/Model/om/BaseLang.php b/core/lib/Thelia/Model/om/BaseLang.php
index fc1a042c7..0f1a1a474 100644
--- a/core/lib/Thelia/Model/om/BaseLang.php
+++ b/core/lib/Thelia/Model/om/BaseLang.php
@@ -63,6 +63,12 @@ abstract class BaseLang extends BaseObject implements Persistent
*/
protected $code;
+ /**
+ * The value for the locale field.
+ * @var string
+ */
+ protected $locale;
+
/**
* The value for the url field.
* @var string
@@ -131,6 +137,16 @@ abstract class BaseLang extends BaseObject implements Persistent
return $this->code;
}
+ /**
+ * Get the [locale] column value.
+ *
+ * @return string
+ */
+ public function getLocale()
+ {
+ return $this->locale;
+ }
+
/**
* Get the [url] column value.
*
@@ -288,6 +304,27 @@ abstract class BaseLang extends BaseObject implements Persistent
return $this;
} // setCode()
+ /**
+ * Set the value of [locale] column.
+ *
+ * @param string $v new value
+ * @return Lang The current object (for fluent API support)
+ */
+ public function setLocale($v)
+ {
+ if ($v !== null) {
+ $v = (string) $v;
+ }
+
+ if ($this->locale !== $v) {
+ $this->locale = $v;
+ $this->modifiedColumns[] = LangPeer::LOCALE;
+ }
+
+
+ return $this;
+ } // setLocale()
+
/**
* Set the value of [url] column.
*
@@ -411,10 +448,11 @@ abstract class BaseLang extends BaseObject implements Persistent
$this->id = ($row[$startcol + 0] !== null) ? (int) $row[$startcol + 0] : null;
$this->title = ($row[$startcol + 1] !== null) ? (string) $row[$startcol + 1] : null;
$this->code = ($row[$startcol + 2] !== null) ? (string) $row[$startcol + 2] : null;
- $this->url = ($row[$startcol + 3] !== null) ? (string) $row[$startcol + 3] : null;
- $this->by_default = ($row[$startcol + 4] !== null) ? (int) $row[$startcol + 4] : null;
- $this->created_at = ($row[$startcol + 5] !== null) ? (string) $row[$startcol + 5] : null;
- $this->updated_at = ($row[$startcol + 6] !== null) ? (string) $row[$startcol + 6] : null;
+ $this->locale = ($row[$startcol + 3] !== null) ? (string) $row[$startcol + 3] : null;
+ $this->url = ($row[$startcol + 4] !== null) ? (string) $row[$startcol + 4] : null;
+ $this->by_default = ($row[$startcol + 5] !== null) ? (int) $row[$startcol + 5] : null;
+ $this->created_at = ($row[$startcol + 6] !== null) ? (string) $row[$startcol + 6] : null;
+ $this->updated_at = ($row[$startcol + 7] !== null) ? (string) $row[$startcol + 7] : null;
$this->resetModified();
$this->setNew(false);
@@ -423,7 +461,7 @@ abstract class BaseLang extends BaseObject implements Persistent
$this->ensureConsistency();
}
- return $startcol + 7; // 7 = LangPeer::NUM_HYDRATE_COLUMNS.
+ return $startcol + 8; // 8 = LangPeer::NUM_HYDRATE_COLUMNS.
} catch (Exception $e) {
throw new PropelException("Error populating Lang object", $e);
@@ -655,6 +693,9 @@ abstract class BaseLang extends BaseObject implements Persistent
if ($this->isColumnModified(LangPeer::CODE)) {
$modifiedColumns[':p' . $index++] = '`CODE`';
}
+ if ($this->isColumnModified(LangPeer::LOCALE)) {
+ $modifiedColumns[':p' . $index++] = '`LOCALE`';
+ }
if ($this->isColumnModified(LangPeer::URL)) {
$modifiedColumns[':p' . $index++] = '`URL`';
}
@@ -687,6 +728,9 @@ abstract class BaseLang extends BaseObject implements Persistent
case '`CODE`':
$stmt->bindValue($identifier, $this->code, PDO::PARAM_STR);
break;
+ case '`LOCALE`':
+ $stmt->bindValue($identifier, $this->locale, PDO::PARAM_STR);
+ break;
case '`URL`':
$stmt->bindValue($identifier, $this->url, PDO::PARAM_STR);
break;
@@ -843,15 +887,18 @@ abstract class BaseLang extends BaseObject implements Persistent
return $this->getCode();
break;
case 3:
- return $this->getUrl();
+ return $this->getLocale();
break;
case 4:
- return $this->getByDefault();
+ return $this->getUrl();
break;
case 5:
- return $this->getCreatedAt();
+ return $this->getByDefault();
break;
case 6:
+ return $this->getCreatedAt();
+ break;
+ case 7:
return $this->getUpdatedAt();
break;
default:
@@ -885,10 +932,11 @@ abstract class BaseLang extends BaseObject implements Persistent
$keys[0] => $this->getId(),
$keys[1] => $this->getTitle(),
$keys[2] => $this->getCode(),
- $keys[3] => $this->getUrl(),
- $keys[4] => $this->getByDefault(),
- $keys[5] => $this->getCreatedAt(),
- $keys[6] => $this->getUpdatedAt(),
+ $keys[3] => $this->getLocale(),
+ $keys[4] => $this->getUrl(),
+ $keys[5] => $this->getByDefault(),
+ $keys[6] => $this->getCreatedAt(),
+ $keys[7] => $this->getUpdatedAt(),
);
return $result;
@@ -933,15 +981,18 @@ abstract class BaseLang extends BaseObject implements Persistent
$this->setCode($value);
break;
case 3:
- $this->setUrl($value);
+ $this->setLocale($value);
break;
case 4:
- $this->setByDefault($value);
+ $this->setUrl($value);
break;
case 5:
- $this->setCreatedAt($value);
+ $this->setByDefault($value);
break;
case 6:
+ $this->setCreatedAt($value);
+ break;
+ case 7:
$this->setUpdatedAt($value);
break;
} // switch()
@@ -971,10 +1022,11 @@ abstract class BaseLang extends BaseObject implements Persistent
if (array_key_exists($keys[0], $arr)) $this->setId($arr[$keys[0]]);
if (array_key_exists($keys[1], $arr)) $this->setTitle($arr[$keys[1]]);
if (array_key_exists($keys[2], $arr)) $this->setCode($arr[$keys[2]]);
- if (array_key_exists($keys[3], $arr)) $this->setUrl($arr[$keys[3]]);
- if (array_key_exists($keys[4], $arr)) $this->setByDefault($arr[$keys[4]]);
- if (array_key_exists($keys[5], $arr)) $this->setCreatedAt($arr[$keys[5]]);
- if (array_key_exists($keys[6], $arr)) $this->setUpdatedAt($arr[$keys[6]]);
+ if (array_key_exists($keys[3], $arr)) $this->setLocale($arr[$keys[3]]);
+ if (array_key_exists($keys[4], $arr)) $this->setUrl($arr[$keys[4]]);
+ if (array_key_exists($keys[5], $arr)) $this->setByDefault($arr[$keys[5]]);
+ if (array_key_exists($keys[6], $arr)) $this->setCreatedAt($arr[$keys[6]]);
+ if (array_key_exists($keys[7], $arr)) $this->setUpdatedAt($arr[$keys[7]]);
}
/**
@@ -989,6 +1041,7 @@ abstract class BaseLang extends BaseObject implements Persistent
if ($this->isColumnModified(LangPeer::ID)) $criteria->add(LangPeer::ID, $this->id);
if ($this->isColumnModified(LangPeer::TITLE)) $criteria->add(LangPeer::TITLE, $this->title);
if ($this->isColumnModified(LangPeer::CODE)) $criteria->add(LangPeer::CODE, $this->code);
+ if ($this->isColumnModified(LangPeer::LOCALE)) $criteria->add(LangPeer::LOCALE, $this->locale);
if ($this->isColumnModified(LangPeer::URL)) $criteria->add(LangPeer::URL, $this->url);
if ($this->isColumnModified(LangPeer::BY_DEFAULT)) $criteria->add(LangPeer::BY_DEFAULT, $this->by_default);
if ($this->isColumnModified(LangPeer::CREATED_AT)) $criteria->add(LangPeer::CREATED_AT, $this->created_at);
@@ -1058,6 +1111,7 @@ abstract class BaseLang extends BaseObject implements Persistent
{
$copyObj->setTitle($this->getTitle());
$copyObj->setCode($this->getCode());
+ $copyObj->setLocale($this->getLocale());
$copyObj->setUrl($this->getUrl());
$copyObj->setByDefault($this->getByDefault());
$copyObj->setCreatedAt($this->getCreatedAt());
@@ -1116,6 +1170,7 @@ abstract class BaseLang extends BaseObject implements Persistent
$this->id = null;
$this->title = null;
$this->code = null;
+ $this->locale = null;
$this->url = null;
$this->by_default = null;
$this->created_at = null;
diff --git a/core/lib/Thelia/Model/om/BaseLangPeer.php b/core/lib/Thelia/Model/om/BaseLangPeer.php
index b8cc515cd..1019d0bd3 100644
--- a/core/lib/Thelia/Model/om/BaseLangPeer.php
+++ b/core/lib/Thelia/Model/om/BaseLangPeer.php
@@ -36,13 +36,13 @@ abstract class BaseLangPeer
const TM_CLASS = 'LangTableMap';
/** The total number of columns. */
- const NUM_COLUMNS = 7;
+ const NUM_COLUMNS = 8;
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
- const NUM_HYDRATE_COLUMNS = 7;
+ const NUM_HYDRATE_COLUMNS = 8;
/** the column name for the ID field */
const ID = 'lang.ID';
@@ -53,6 +53,9 @@ abstract class BaseLangPeer
/** the column name for the CODE field */
const CODE = 'lang.CODE';
+ /** the column name for the LOCALE field */
+ const LOCALE = 'lang.LOCALE';
+
/** the column name for the URL field */
const URL = 'lang.URL';
@@ -84,12 +87,12 @@ abstract class BaseLangPeer
* e.g. LangPeer::$fieldNames[LangPeer::TYPE_PHPNAME][0] = 'Id'
*/
protected static $fieldNames = array (
- BasePeer::TYPE_PHPNAME => array ('Id', 'Title', 'Code', 'Url', 'ByDefault', 'CreatedAt', 'UpdatedAt', ),
- BasePeer::TYPE_STUDLYPHPNAME => array ('id', 'title', 'code', 'url', 'byDefault', 'createdAt', 'updatedAt', ),
- BasePeer::TYPE_COLNAME => array (LangPeer::ID, LangPeer::TITLE, LangPeer::CODE, LangPeer::URL, LangPeer::BY_DEFAULT, LangPeer::CREATED_AT, LangPeer::UPDATED_AT, ),
- BasePeer::TYPE_RAW_COLNAME => array ('ID', 'TITLE', 'CODE', 'URL', 'BY_DEFAULT', 'CREATED_AT', 'UPDATED_AT', ),
- BasePeer::TYPE_FIELDNAME => array ('id', 'title', 'code', 'url', 'by_default', 'created_at', 'updated_at', ),
- BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, )
+ BasePeer::TYPE_PHPNAME => array ('Id', 'Title', 'Code', 'Locale', 'Url', 'ByDefault', 'CreatedAt', 'UpdatedAt', ),
+ BasePeer::TYPE_STUDLYPHPNAME => array ('id', 'title', 'code', 'locale', 'url', 'byDefault', 'createdAt', 'updatedAt', ),
+ BasePeer::TYPE_COLNAME => array (LangPeer::ID, LangPeer::TITLE, LangPeer::CODE, LangPeer::LOCALE, LangPeer::URL, LangPeer::BY_DEFAULT, LangPeer::CREATED_AT, LangPeer::UPDATED_AT, ),
+ BasePeer::TYPE_RAW_COLNAME => array ('ID', 'TITLE', 'CODE', 'LOCALE', 'URL', 'BY_DEFAULT', 'CREATED_AT', 'UPDATED_AT', ),
+ BasePeer::TYPE_FIELDNAME => array ('id', 'title', 'code', 'locale', 'url', 'by_default', 'created_at', 'updated_at', ),
+ BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, )
);
/**
@@ -99,12 +102,12 @@ abstract class BaseLangPeer
* e.g. LangPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/
protected static $fieldKeys = array (
- BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'Title' => 1, 'Code' => 2, 'Url' => 3, 'ByDefault' => 4, 'CreatedAt' => 5, 'UpdatedAt' => 6, ),
- BasePeer::TYPE_STUDLYPHPNAME => array ('id' => 0, 'title' => 1, 'code' => 2, 'url' => 3, 'byDefault' => 4, 'createdAt' => 5, 'updatedAt' => 6, ),
- BasePeer::TYPE_COLNAME => array (LangPeer::ID => 0, LangPeer::TITLE => 1, LangPeer::CODE => 2, LangPeer::URL => 3, LangPeer::BY_DEFAULT => 4, LangPeer::CREATED_AT => 5, LangPeer::UPDATED_AT => 6, ),
- BasePeer::TYPE_RAW_COLNAME => array ('ID' => 0, 'TITLE' => 1, 'CODE' => 2, 'URL' => 3, 'BY_DEFAULT' => 4, 'CREATED_AT' => 5, 'UPDATED_AT' => 6, ),
- BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'title' => 1, 'code' => 2, 'url' => 3, 'by_default' => 4, 'created_at' => 5, 'updated_at' => 6, ),
- BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, )
+ BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'Title' => 1, 'Code' => 2, 'Locale' => 3, 'Url' => 4, 'ByDefault' => 5, 'CreatedAt' => 6, 'UpdatedAt' => 7, ),
+ BasePeer::TYPE_STUDLYPHPNAME => array ('id' => 0, 'title' => 1, 'code' => 2, 'locale' => 3, 'url' => 4, 'byDefault' => 5, 'createdAt' => 6, 'updatedAt' => 7, ),
+ BasePeer::TYPE_COLNAME => array (LangPeer::ID => 0, LangPeer::TITLE => 1, LangPeer::CODE => 2, LangPeer::LOCALE => 3, LangPeer::URL => 4, LangPeer::BY_DEFAULT => 5, LangPeer::CREATED_AT => 6, LangPeer::UPDATED_AT => 7, ),
+ BasePeer::TYPE_RAW_COLNAME => array ('ID' => 0, 'TITLE' => 1, 'CODE' => 2, 'LOCALE' => 3, 'URL' => 4, 'BY_DEFAULT' => 5, 'CREATED_AT' => 6, 'UPDATED_AT' => 7, ),
+ BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'title' => 1, 'code' => 2, 'locale' => 3, 'url' => 4, 'by_default' => 5, 'created_at' => 6, 'updated_at' => 7, ),
+ BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, )
);
/**
@@ -181,6 +184,7 @@ abstract class BaseLangPeer
$criteria->addSelectColumn(LangPeer::ID);
$criteria->addSelectColumn(LangPeer::TITLE);
$criteria->addSelectColumn(LangPeer::CODE);
+ $criteria->addSelectColumn(LangPeer::LOCALE);
$criteria->addSelectColumn(LangPeer::URL);
$criteria->addSelectColumn(LangPeer::BY_DEFAULT);
$criteria->addSelectColumn(LangPeer::CREATED_AT);
@@ -189,6 +193,7 @@ abstract class BaseLangPeer
$criteria->addSelectColumn($alias . '.ID');
$criteria->addSelectColumn($alias . '.TITLE');
$criteria->addSelectColumn($alias . '.CODE');
+ $criteria->addSelectColumn($alias . '.LOCALE');
$criteria->addSelectColumn($alias . '.URL');
$criteria->addSelectColumn($alias . '.BY_DEFAULT');
$criteria->addSelectColumn($alias . '.CREATED_AT');
diff --git a/core/lib/Thelia/Model/om/BaseLangQuery.php b/core/lib/Thelia/Model/om/BaseLangQuery.php
index 0ca82516d..330887111 100644
--- a/core/lib/Thelia/Model/om/BaseLangQuery.php
+++ b/core/lib/Thelia/Model/om/BaseLangQuery.php
@@ -22,6 +22,7 @@ use Thelia\Model\LangQuery;
* @method LangQuery orderById($order = Criteria::ASC) Order by the id column
* @method LangQuery orderByTitle($order = Criteria::ASC) Order by the title column
* @method LangQuery orderByCode($order = Criteria::ASC) Order by the code column
+ * @method LangQuery orderByLocale($order = Criteria::ASC) Order by the locale column
* @method LangQuery orderByUrl($order = Criteria::ASC) Order by the url column
* @method LangQuery orderByByDefault($order = Criteria::ASC) Order by the by_default column
* @method LangQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
@@ -30,6 +31,7 @@ use Thelia\Model\LangQuery;
* @method LangQuery groupById() Group by the id column
* @method LangQuery groupByTitle() Group by the title column
* @method LangQuery groupByCode() Group by the code column
+ * @method LangQuery groupByLocale() Group by the locale column
* @method LangQuery groupByUrl() Group by the url column
* @method LangQuery groupByByDefault() Group by the by_default column
* @method LangQuery groupByCreatedAt() Group by the created_at column
@@ -45,6 +47,7 @@ use Thelia\Model\LangQuery;
* @method Lang findOneById(int $id) Return the first Lang filtered by the id column
* @method Lang findOneByTitle(string $title) Return the first Lang filtered by the title column
* @method Lang findOneByCode(string $code) Return the first Lang filtered by the code column
+ * @method Lang findOneByLocale(string $locale) Return the first Lang filtered by the locale column
* @method Lang findOneByUrl(string $url) Return the first Lang filtered by the url column
* @method Lang findOneByByDefault(int $by_default) Return the first Lang filtered by the by_default column
* @method Lang findOneByCreatedAt(string $created_at) Return the first Lang filtered by the created_at column
@@ -53,6 +56,7 @@ use Thelia\Model\LangQuery;
* @method array findById(int $id) Return Lang objects filtered by the id column
* @method array findByTitle(string $title) Return Lang objects filtered by the title column
* @method array findByCode(string $code) Return Lang objects filtered by the code column
+ * @method array findByLocale(string $locale) Return Lang objects filtered by the locale column
* @method array findByUrl(string $url) Return Lang objects filtered by the url column
* @method array findByByDefault(int $by_default) Return Lang objects filtered by the by_default column
* @method array findByCreatedAt(string $created_at) Return Lang objects filtered by the created_at column
@@ -146,7 +150,7 @@ abstract class BaseLangQuery extends ModelCriteria
*/
protected function findPkSimple($key, $con)
{
- $sql = 'SELECT `ID`, `TITLE`, `CODE`, `URL`, `BY_DEFAULT`, `CREATED_AT`, `UPDATED_AT` FROM `lang` WHERE `ID` = :p0';
+ $sql = 'SELECT `ID`, `TITLE`, `CODE`, `LOCALE`, `URL`, `BY_DEFAULT`, `CREATED_AT`, `UPDATED_AT` FROM `lang` WHERE `ID` = :p0';
try {
$stmt = $con->prepare($sql);
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
@@ -320,6 +324,35 @@ abstract class BaseLangQuery extends ModelCriteria
return $this->addUsingAlias(LangPeer::CODE, $code, $comparison);
}
+ /**
+ * Filter the query on the locale column
+ *
+ * Example usage:
+ *
+ * $query->filterByLocale('fooValue'); // WHERE locale = 'fooValue'
+ * $query->filterByLocale('%fooValue%'); // WHERE locale LIKE '%fooValue%'
+ *
+ *
+ * @param string $locale The value to use as filter.
+ * Accepts wildcards (* and % trigger a LIKE)
+ * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
+ *
+ * @return LangQuery The current query, for fluid interface
+ */
+ public function filterByLocale($locale = null, $comparison = null)
+ {
+ if (null === $comparison) {
+ if (is_array($locale)) {
+ $comparison = Criteria::IN;
+ } elseif (preg_match('/[\%\*]/', $locale)) {
+ $locale = str_replace('*', '%', $locale);
+ $comparison = Criteria::LIKE;
+ }
+ }
+
+ return $this->addUsingAlias(LangPeer::LOCALE, $locale, $comparison);
+ }
+
/**
* Filter the query on the url column
*
diff --git a/documentation/404.html b/documentation/api/404.html
similarity index 100%
rename from documentation/404.html
rename to documentation/api/404.html
diff --git a/documentation/class-Exception.html b/documentation/api/class-Exception.html
similarity index 100%
rename from documentation/class-Exception.html
rename to documentation/api/class-Exception.html
diff --git a/documentation/class-LogicException.html b/documentation/api/class-LogicException.html
similarity index 100%
rename from documentation/class-LogicException.html
rename to documentation/api/class-LogicException.html
diff --git a/documentation/class-PDOStatement.html b/documentation/api/class-PDOStatement.html
similarity index 100%
rename from documentation/class-PDOStatement.html
rename to documentation/api/class-PDOStatement.html
diff --git a/documentation/class-RuntimeException.html b/documentation/api/class-RuntimeException.html
similarity index 100%
rename from documentation/class-RuntimeException.html
rename to documentation/api/class-RuntimeException.html
diff --git a/documentation/class-Thelia.Action.BaseAction.html b/documentation/api/class-Thelia.Action.BaseAction.html
similarity index 95%
rename from documentation/class-Thelia.Action.BaseAction.html
rename to documentation/api/class-Thelia.Action.BaseAction.html
index 0c3136c68..b33250c52 100644
--- a/documentation/class-Thelia.Action.BaseAction.html
+++ b/documentation/api/class-Thelia.Action.BaseAction.html
@@ -141,7 +141,7 @@
Author:
Manuel Raynaud <mraynaud@openstudio.fr>
- Located at core/lib/Thelia/Action/BaseAction.php
+ Located at core/lib/Thelia/Action/BaseAction.php
@@ -159,7 +159,7 @@ href="mailto:mraynaud@openstudio.fr">mraynaud@openstudio.fr&g
#
- __construct( Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher )
+ __construct( Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher )
@@ -193,7 +193,7 @@ href="mailto:mraynaud@openstudio.fr">mraynaud@openstudio.fr&g
#
- getDispatcher( )
+ getDispatcher( )
diff --git a/documentation/class-Thelia.Action.Cart.html b/documentation/api/class-Thelia.Action.Cart.html
similarity index 100%
rename from documentation/class-Thelia.Action.Cart.html
rename to documentation/api/class-Thelia.Action.Cart.html
diff --git a/documentation/class-Thelia.Action.Customer.html b/documentation/api/class-Thelia.Action.Customer.html
similarity index 100%
rename from documentation/class-Thelia.Action.Customer.html
rename to documentation/api/class-Thelia.Action.Customer.html
diff --git a/documentation/class-Thelia.Controller.DefaultController.html b/documentation/api/class-Thelia.Controller.DefaultController.html
similarity index 100%
rename from documentation/class-Thelia.Controller.DefaultController.html
rename to documentation/api/class-Thelia.Controller.DefaultController.html
diff --git a/documentation/class-Thelia.Controller.NullControllerInterface.html b/documentation/api/class-Thelia.Controller.NullControllerInterface.html
similarity index 100%
rename from documentation/class-Thelia.Controller.NullControllerInterface.html
rename to documentation/api/class-Thelia.Controller.NullControllerInterface.html
diff --git a/documentation/class-Thelia.Core.Bundle.TheliaBundle.html b/documentation/api/class-Thelia.Core.Bundle.TheliaBundle.html
similarity index 100%
rename from documentation/class-Thelia.Core.Bundle.TheliaBundle.html
rename to documentation/api/class-Thelia.Core.Bundle.TheliaBundle.html
diff --git a/documentation/class-Thelia.Core.Event.ActionEvent.html b/documentation/api/class-Thelia.Core.Event.ActionEvent.html
similarity index 100%
rename from documentation/class-Thelia.Core.Event.ActionEvent.html
rename to documentation/api/class-Thelia.Core.Event.ActionEvent.html
diff --git a/documentation/class-Thelia.Core.Event.TheliaEvents.html b/documentation/api/class-Thelia.Core.Event.TheliaEvents.html
similarity index 100%
rename from documentation/class-Thelia.Core.Event.TheliaEvents.html
rename to documentation/api/class-Thelia.Core.Event.TheliaEvents.html
diff --git a/documentation/class-Thelia.Core.EventListener.RequestListener.html b/documentation/api/class-Thelia.Core.EventListener.RequestListener.html
similarity index 100%
rename from documentation/class-Thelia.Core.EventListener.RequestListener.html
rename to documentation/api/class-Thelia.Core.EventListener.RequestListener.html
diff --git a/documentation/class-Thelia.Core.EventListener.ViewListener.html b/documentation/api/class-Thelia.Core.EventListener.ViewListener.html
similarity index 100%
rename from documentation/class-Thelia.Core.EventListener.ViewListener.html
rename to documentation/api/class-Thelia.Core.EventListener.ViewListener.html
diff --git a/documentation/class-Thelia.Core.Template.Parser.html b/documentation/api/class-Thelia.Core.Template.Parser.html
similarity index 100%
rename from documentation/class-Thelia.Core.Template.Parser.html
rename to documentation/api/class-Thelia.Core.Template.Parser.html
diff --git a/documentation/class-Thelia.Core.Template.ParserInterface.html b/documentation/api/class-Thelia.Core.Template.ParserInterface.html
similarity index 100%
rename from documentation/class-Thelia.Core.Template.ParserInterface.html
rename to documentation/api/class-Thelia.Core.Template.ParserInterface.html
diff --git a/documentation/class-Thelia.Core.Thelia.html b/documentation/api/class-Thelia.Core.Thelia.html
similarity index 95%
rename from documentation/class-Thelia.Core.Thelia.html
rename to documentation/api/class-Thelia.Core.Thelia.html
index af39a8cd3..05642a0e4 100644
--- a/documentation/class-Thelia.Core.Thelia.html
+++ b/documentation/api/class-Thelia.Core.Thelia.html
@@ -146,7 +146,7 @@ Symfony\Component\HttpKernel\Kernel
Namespace: Thelia\ Core
- Located at core/lib/Thelia/Core/Thelia.php
+ Located at core/lib/Thelia/Core/Thelia.php
@@ -222,7 +222,7 @@ Symfony\Component\HttpKernel\Kernel
#
- loadConfiguration( )
+ loadConfiguration( )
@@ -253,7 +253,7 @@ Symfony\Component\HttpKernel\Kernel
#
- getCacheDir( )
+ getCacheDir( )
@@ -293,7 +293,7 @@ Symfony\Component\HttpKernel\Kernel
#
- getLogDir( )
+ getLogDir( )
@@ -333,7 +333,7 @@ Symfony\Component\HttpKernel\Kernel
#
- registerBundles( )
+ registerBundles( )
@@ -372,7 +372,7 @@ Symfony\Component\HttpKernel\Kernel
#
- registerContainerConfiguration( Symfony\Component\Config\Loader\LoaderInterface $loader )
+ registerContainerConfiguration( Symfony\Component\Config\Loader\LoaderInterface $loader )
diff --git a/documentation/class-Thelia.Core.TheliaHttpKernel.html b/documentation/api/class-Thelia.Core.TheliaHttpKernel.html
similarity index 100%
rename from documentation/class-Thelia.Core.TheliaHttpKernel.html
rename to documentation/api/class-Thelia.Core.TheliaHttpKernel.html
diff --git a/documentation/class-Thelia.Exception.MemberAccessException.html b/documentation/api/class-Thelia.Exception.MemberAccessException.html
similarity index 100%
rename from documentation/class-Thelia.Exception.MemberAccessException.html
rename to documentation/api/class-Thelia.Exception.MemberAccessException.html
diff --git a/documentation/class-Thelia.Log.AbstractTlogDestination.html b/documentation/api/class-Thelia.Log.AbstractTlogDestination.html
similarity index 100%
rename from documentation/class-Thelia.Log.AbstractTlogDestination.html
rename to documentation/api/class-Thelia.Log.AbstractTlogDestination.html
diff --git a/documentation/class-Thelia.Log.Destination.TlogDestinationFile.html b/documentation/api/class-Thelia.Log.Destination.TlogDestinationFile.html
similarity index 100%
rename from documentation/class-Thelia.Log.Destination.TlogDestinationFile.html
rename to documentation/api/class-Thelia.Log.Destination.TlogDestinationFile.html
diff --git a/documentation/class-Thelia.Log.Destination.TlogDestinationHtml.html b/documentation/api/class-Thelia.Log.Destination.TlogDestinationHtml.html
similarity index 100%
rename from documentation/class-Thelia.Log.Destination.TlogDestinationHtml.html
rename to documentation/api/class-Thelia.Log.Destination.TlogDestinationHtml.html
diff --git a/documentation/class-Thelia.Log.Destination.TlogDestinationNull.html b/documentation/api/class-Thelia.Log.Destination.TlogDestinationNull.html
similarity index 100%
rename from documentation/class-Thelia.Log.Destination.TlogDestinationNull.html
rename to documentation/api/class-Thelia.Log.Destination.TlogDestinationNull.html
diff --git a/documentation/class-Thelia.Log.Destination.TlogDestinationText.html b/documentation/api/class-Thelia.Log.Destination.TlogDestinationText.html
similarity index 100%
rename from documentation/class-Thelia.Log.Destination.TlogDestinationText.html
rename to documentation/api/class-Thelia.Log.Destination.TlogDestinationText.html
diff --git a/documentation/class-Thelia.Log.Tlog.html b/documentation/api/class-Thelia.Log.Tlog.html
similarity index 100%
rename from documentation/class-Thelia.Log.Tlog.html
rename to documentation/api/class-Thelia.Log.Tlog.html
diff --git a/documentation/class-Thelia.Log.TlogDestinationConfig.html b/documentation/api/class-Thelia.Log.TlogDestinationConfig.html
similarity index 100%
rename from documentation/class-Thelia.Log.TlogDestinationConfig.html
rename to documentation/api/class-Thelia.Log.TlogDestinationConfig.html
diff --git a/documentation/class-Thelia.Log.TlogInterface.html b/documentation/api/class-Thelia.Log.TlogInterface.html
similarity index 100%
rename from documentation/class-Thelia.Log.TlogInterface.html
rename to documentation/api/class-Thelia.Log.TlogInterface.html
diff --git a/documentation/class-Thelia.Model.Accessory.html b/documentation/api/class-Thelia.Model.Accessory.html
similarity index 100%
rename from documentation/class-Thelia.Model.Accessory.html
rename to documentation/api/class-Thelia.Model.Accessory.html
diff --git a/documentation/class-Thelia.Model.AccessoryPeer.html b/documentation/api/class-Thelia.Model.AccessoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AccessoryPeer.html
rename to documentation/api/class-Thelia.Model.AccessoryPeer.html
diff --git a/documentation/class-Thelia.Model.AccessoryQuery.html b/documentation/api/class-Thelia.Model.AccessoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AccessoryQuery.html
rename to documentation/api/class-Thelia.Model.AccessoryQuery.html
diff --git a/documentation/class-Thelia.Model.Address.html b/documentation/api/class-Thelia.Model.Address.html
similarity index 100%
rename from documentation/class-Thelia.Model.Address.html
rename to documentation/api/class-Thelia.Model.Address.html
diff --git a/documentation/class-Thelia.Model.AddressPeer.html b/documentation/api/class-Thelia.Model.AddressPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AddressPeer.html
rename to documentation/api/class-Thelia.Model.AddressPeer.html
diff --git a/documentation/class-Thelia.Model.AddressQuery.html b/documentation/api/class-Thelia.Model.AddressQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AddressQuery.html
rename to documentation/api/class-Thelia.Model.AddressQuery.html
diff --git a/documentation/class-Thelia.Model.Admin.html b/documentation/api/class-Thelia.Model.Admin.html
similarity index 100%
rename from documentation/class-Thelia.Model.Admin.html
rename to documentation/api/class-Thelia.Model.Admin.html
diff --git a/documentation/class-Thelia.Model.AdminGroup.html b/documentation/api/class-Thelia.Model.AdminGroup.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminGroup.html
rename to documentation/api/class-Thelia.Model.AdminGroup.html
diff --git a/documentation/class-Thelia.Model.AdminGroupPeer.html b/documentation/api/class-Thelia.Model.AdminGroupPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminGroupPeer.html
rename to documentation/api/class-Thelia.Model.AdminGroupPeer.html
diff --git a/documentation/class-Thelia.Model.AdminGroupQuery.html b/documentation/api/class-Thelia.Model.AdminGroupQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminGroupQuery.html
rename to documentation/api/class-Thelia.Model.AdminGroupQuery.html
diff --git a/documentation/class-Thelia.Model.AdminLog.html b/documentation/api/class-Thelia.Model.AdminLog.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminLog.html
rename to documentation/api/class-Thelia.Model.AdminLog.html
diff --git a/documentation/class-Thelia.Model.AdminLogPeer.html b/documentation/api/class-Thelia.Model.AdminLogPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminLogPeer.html
rename to documentation/api/class-Thelia.Model.AdminLogPeer.html
diff --git a/documentation/class-Thelia.Model.AdminLogQuery.html b/documentation/api/class-Thelia.Model.AdminLogQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminLogQuery.html
rename to documentation/api/class-Thelia.Model.AdminLogQuery.html
diff --git a/documentation/class-Thelia.Model.AdminPeer.html b/documentation/api/class-Thelia.Model.AdminPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminPeer.html
rename to documentation/api/class-Thelia.Model.AdminPeer.html
diff --git a/documentation/class-Thelia.Model.AdminQuery.html b/documentation/api/class-Thelia.Model.AdminQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AdminQuery.html
rename to documentation/api/class-Thelia.Model.AdminQuery.html
diff --git a/documentation/class-Thelia.Model.Area.html b/documentation/api/class-Thelia.Model.Area.html
similarity index 100%
rename from documentation/class-Thelia.Model.Area.html
rename to documentation/api/class-Thelia.Model.Area.html
diff --git a/documentation/class-Thelia.Model.AreaPeer.html b/documentation/api/class-Thelia.Model.AreaPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AreaPeer.html
rename to documentation/api/class-Thelia.Model.AreaPeer.html
diff --git a/documentation/class-Thelia.Model.AreaQuery.html b/documentation/api/class-Thelia.Model.AreaQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AreaQuery.html
rename to documentation/api/class-Thelia.Model.AreaQuery.html
diff --git a/documentation/class-Thelia.Model.Attribute.html b/documentation/api/class-Thelia.Model.Attribute.html
similarity index 100%
rename from documentation/class-Thelia.Model.Attribute.html
rename to documentation/api/class-Thelia.Model.Attribute.html
diff --git a/documentation/class-Thelia.Model.AttributeAv.html b/documentation/api/class-Thelia.Model.AttributeAv.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAv.html
rename to documentation/api/class-Thelia.Model.AttributeAv.html
diff --git a/documentation/class-Thelia.Model.AttributeAvDesc.html b/documentation/api/class-Thelia.Model.AttributeAvDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvDesc.html
rename to documentation/api/class-Thelia.Model.AttributeAvDesc.html
diff --git a/documentation/class-Thelia.Model.AttributeAvDescPeer.html b/documentation/api/class-Thelia.Model.AttributeAvDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvDescPeer.html
rename to documentation/api/class-Thelia.Model.AttributeAvDescPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeAvDescQuery.html b/documentation/api/class-Thelia.Model.AttributeAvDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvDescQuery.html
rename to documentation/api/class-Thelia.Model.AttributeAvDescQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeAvI18n.html b/documentation/api/class-Thelia.Model.AttributeAvI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvI18n.html
rename to documentation/api/class-Thelia.Model.AttributeAvI18n.html
diff --git a/documentation/class-Thelia.Model.AttributeAvI18nPeer.html b/documentation/api/class-Thelia.Model.AttributeAvI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvI18nPeer.html
rename to documentation/api/class-Thelia.Model.AttributeAvI18nPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeAvI18nQuery.html b/documentation/api/class-Thelia.Model.AttributeAvI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvI18nQuery.html
rename to documentation/api/class-Thelia.Model.AttributeAvI18nQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeAvPeer.html b/documentation/api/class-Thelia.Model.AttributeAvPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvPeer.html
rename to documentation/api/class-Thelia.Model.AttributeAvPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeAvQuery.html b/documentation/api/class-Thelia.Model.AttributeAvQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeAvQuery.html
rename to documentation/api/class-Thelia.Model.AttributeAvQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeCategory.html b/documentation/api/class-Thelia.Model.AttributeCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCategory.html
rename to documentation/api/class-Thelia.Model.AttributeCategory.html
diff --git a/documentation/class-Thelia.Model.AttributeCategoryPeer.html b/documentation/api/class-Thelia.Model.AttributeCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCategoryPeer.html
rename to documentation/api/class-Thelia.Model.AttributeCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeCategoryQuery.html b/documentation/api/class-Thelia.Model.AttributeCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCategoryQuery.html
rename to documentation/api/class-Thelia.Model.AttributeCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeCombination.html b/documentation/api/class-Thelia.Model.AttributeCombination.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCombination.html
rename to documentation/api/class-Thelia.Model.AttributeCombination.html
diff --git a/documentation/class-Thelia.Model.AttributeCombinationPeer.html b/documentation/api/class-Thelia.Model.AttributeCombinationPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCombinationPeer.html
rename to documentation/api/class-Thelia.Model.AttributeCombinationPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeCombinationQuery.html b/documentation/api/class-Thelia.Model.AttributeCombinationQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeCombinationQuery.html
rename to documentation/api/class-Thelia.Model.AttributeCombinationQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeDesc.html b/documentation/api/class-Thelia.Model.AttributeDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeDesc.html
rename to documentation/api/class-Thelia.Model.AttributeDesc.html
diff --git a/documentation/class-Thelia.Model.AttributeDescPeer.html b/documentation/api/class-Thelia.Model.AttributeDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeDescPeer.html
rename to documentation/api/class-Thelia.Model.AttributeDescPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeDescQuery.html b/documentation/api/class-Thelia.Model.AttributeDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeDescQuery.html
rename to documentation/api/class-Thelia.Model.AttributeDescQuery.html
diff --git a/documentation/class-Thelia.Model.AttributeI18n.html b/documentation/api/class-Thelia.Model.AttributeI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeI18n.html
rename to documentation/api/class-Thelia.Model.AttributeI18n.html
diff --git a/documentation/class-Thelia.Model.AttributeI18nPeer.html b/documentation/api/class-Thelia.Model.AttributeI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeI18nPeer.html
rename to documentation/api/class-Thelia.Model.AttributeI18nPeer.html
diff --git a/documentation/class-Thelia.Model.AttributeI18nQuery.html b/documentation/api/class-Thelia.Model.AttributeI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeI18nQuery.html
rename to documentation/api/class-Thelia.Model.AttributeI18nQuery.html
diff --git a/documentation/class-Thelia.Model.AttributePeer.html b/documentation/api/class-Thelia.Model.AttributePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributePeer.html
rename to documentation/api/class-Thelia.Model.AttributePeer.html
diff --git a/documentation/class-Thelia.Model.AttributeQuery.html b/documentation/api/class-Thelia.Model.AttributeQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.AttributeQuery.html
rename to documentation/api/class-Thelia.Model.AttributeQuery.html
diff --git a/documentation/class-Thelia.Model.Category.html b/documentation/api/class-Thelia.Model.Category.html
similarity index 100%
rename from documentation/class-Thelia.Model.Category.html
rename to documentation/api/class-Thelia.Model.Category.html
diff --git a/documentation/class-Thelia.Model.CategoryDesc.html b/documentation/api/class-Thelia.Model.CategoryDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryDesc.html
rename to documentation/api/class-Thelia.Model.CategoryDesc.html
diff --git a/documentation/class-Thelia.Model.CategoryDescPeer.html b/documentation/api/class-Thelia.Model.CategoryDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryDescPeer.html
rename to documentation/api/class-Thelia.Model.CategoryDescPeer.html
diff --git a/documentation/class-Thelia.Model.CategoryDescQuery.html b/documentation/api/class-Thelia.Model.CategoryDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryDescQuery.html
rename to documentation/api/class-Thelia.Model.CategoryDescQuery.html
diff --git a/documentation/class-Thelia.Model.CategoryI18n.html b/documentation/api/class-Thelia.Model.CategoryI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryI18n.html
rename to documentation/api/class-Thelia.Model.CategoryI18n.html
diff --git a/documentation/class-Thelia.Model.CategoryI18nPeer.html b/documentation/api/class-Thelia.Model.CategoryI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryI18nPeer.html
rename to documentation/api/class-Thelia.Model.CategoryI18nPeer.html
diff --git a/documentation/class-Thelia.Model.CategoryI18nQuery.html b/documentation/api/class-Thelia.Model.CategoryI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryI18nQuery.html
rename to documentation/api/class-Thelia.Model.CategoryI18nQuery.html
diff --git a/documentation/class-Thelia.Model.CategoryPeer.html b/documentation/api/class-Thelia.Model.CategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryPeer.html
rename to documentation/api/class-Thelia.Model.CategoryPeer.html
diff --git a/documentation/class-Thelia.Model.CategoryQuery.html b/documentation/api/class-Thelia.Model.CategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryQuery.html
rename to documentation/api/class-Thelia.Model.CategoryQuery.html
diff --git a/documentation/class-Thelia.Model.CategoryVersion.html b/documentation/api/class-Thelia.Model.CategoryVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryVersion.html
rename to documentation/api/class-Thelia.Model.CategoryVersion.html
diff --git a/documentation/class-Thelia.Model.CategoryVersionPeer.html b/documentation/api/class-Thelia.Model.CategoryVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryVersionPeer.html
rename to documentation/api/class-Thelia.Model.CategoryVersionPeer.html
diff --git a/documentation/class-Thelia.Model.CategoryVersionQuery.html b/documentation/api/class-Thelia.Model.CategoryVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CategoryVersionQuery.html
rename to documentation/api/class-Thelia.Model.CategoryVersionQuery.html
diff --git a/documentation/class-Thelia.Model.Combination.html b/documentation/api/class-Thelia.Model.Combination.html
similarity index 100%
rename from documentation/class-Thelia.Model.Combination.html
rename to documentation/api/class-Thelia.Model.Combination.html
diff --git a/documentation/class-Thelia.Model.CombinationPeer.html b/documentation/api/class-Thelia.Model.CombinationPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CombinationPeer.html
rename to documentation/api/class-Thelia.Model.CombinationPeer.html
diff --git a/documentation/class-Thelia.Model.CombinationQuery.html b/documentation/api/class-Thelia.Model.CombinationQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CombinationQuery.html
rename to documentation/api/class-Thelia.Model.CombinationQuery.html
diff --git a/documentation/class-Thelia.Model.Config.html b/documentation/api/class-Thelia.Model.Config.html
similarity index 100%
rename from documentation/class-Thelia.Model.Config.html
rename to documentation/api/class-Thelia.Model.Config.html
diff --git a/documentation/class-Thelia.Model.ConfigDesc.html b/documentation/api/class-Thelia.Model.ConfigDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigDesc.html
rename to documentation/api/class-Thelia.Model.ConfigDesc.html
diff --git a/documentation/class-Thelia.Model.ConfigDescPeer.html b/documentation/api/class-Thelia.Model.ConfigDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigDescPeer.html
rename to documentation/api/class-Thelia.Model.ConfigDescPeer.html
diff --git a/documentation/class-Thelia.Model.ConfigDescQuery.html b/documentation/api/class-Thelia.Model.ConfigDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigDescQuery.html
rename to documentation/api/class-Thelia.Model.ConfigDescQuery.html
diff --git a/documentation/class-Thelia.Model.ConfigI18n.html b/documentation/api/class-Thelia.Model.ConfigI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigI18n.html
rename to documentation/api/class-Thelia.Model.ConfigI18n.html
diff --git a/documentation/class-Thelia.Model.ConfigI18nPeer.html b/documentation/api/class-Thelia.Model.ConfigI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigI18nPeer.html
rename to documentation/api/class-Thelia.Model.ConfigI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ConfigI18nQuery.html b/documentation/api/class-Thelia.Model.ConfigI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigI18nQuery.html
rename to documentation/api/class-Thelia.Model.ConfigI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ConfigPeer.html b/documentation/api/class-Thelia.Model.ConfigPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigPeer.html
rename to documentation/api/class-Thelia.Model.ConfigPeer.html
diff --git a/documentation/class-Thelia.Model.ConfigQuery.html b/documentation/api/class-Thelia.Model.ConfigQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ConfigQuery.html
rename to documentation/api/class-Thelia.Model.ConfigQuery.html
diff --git a/documentation/class-Thelia.Model.Content.html b/documentation/api/class-Thelia.Model.Content.html
similarity index 100%
rename from documentation/class-Thelia.Model.Content.html
rename to documentation/api/class-Thelia.Model.Content.html
diff --git a/documentation/class-Thelia.Model.ContentAssoc.html b/documentation/api/class-Thelia.Model.ContentAssoc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentAssoc.html
rename to documentation/api/class-Thelia.Model.ContentAssoc.html
diff --git a/documentation/class-Thelia.Model.ContentAssocPeer.html b/documentation/api/class-Thelia.Model.ContentAssocPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentAssocPeer.html
rename to documentation/api/class-Thelia.Model.ContentAssocPeer.html
diff --git a/documentation/class-Thelia.Model.ContentAssocQuery.html b/documentation/api/class-Thelia.Model.ContentAssocQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentAssocQuery.html
rename to documentation/api/class-Thelia.Model.ContentAssocQuery.html
diff --git a/documentation/class-Thelia.Model.ContentDesc.html b/documentation/api/class-Thelia.Model.ContentDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentDesc.html
rename to documentation/api/class-Thelia.Model.ContentDesc.html
diff --git a/documentation/class-Thelia.Model.ContentDescPeer.html b/documentation/api/class-Thelia.Model.ContentDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentDescPeer.html
rename to documentation/api/class-Thelia.Model.ContentDescPeer.html
diff --git a/documentation/class-Thelia.Model.ContentDescQuery.html b/documentation/api/class-Thelia.Model.ContentDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentDescQuery.html
rename to documentation/api/class-Thelia.Model.ContentDescQuery.html
diff --git a/documentation/class-Thelia.Model.ContentFolder.html b/documentation/api/class-Thelia.Model.ContentFolder.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentFolder.html
rename to documentation/api/class-Thelia.Model.ContentFolder.html
diff --git a/documentation/class-Thelia.Model.ContentFolderPeer.html b/documentation/api/class-Thelia.Model.ContentFolderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentFolderPeer.html
rename to documentation/api/class-Thelia.Model.ContentFolderPeer.html
diff --git a/documentation/class-Thelia.Model.ContentFolderQuery.html b/documentation/api/class-Thelia.Model.ContentFolderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentFolderQuery.html
rename to documentation/api/class-Thelia.Model.ContentFolderQuery.html
diff --git a/documentation/class-Thelia.Model.ContentI18n.html b/documentation/api/class-Thelia.Model.ContentI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentI18n.html
rename to documentation/api/class-Thelia.Model.ContentI18n.html
diff --git a/documentation/class-Thelia.Model.ContentI18nPeer.html b/documentation/api/class-Thelia.Model.ContentI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentI18nPeer.html
rename to documentation/api/class-Thelia.Model.ContentI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ContentI18nQuery.html b/documentation/api/class-Thelia.Model.ContentI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentI18nQuery.html
rename to documentation/api/class-Thelia.Model.ContentI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ContentPeer.html b/documentation/api/class-Thelia.Model.ContentPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentPeer.html
rename to documentation/api/class-Thelia.Model.ContentPeer.html
diff --git a/documentation/class-Thelia.Model.ContentQuery.html b/documentation/api/class-Thelia.Model.ContentQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentQuery.html
rename to documentation/api/class-Thelia.Model.ContentQuery.html
diff --git a/documentation/class-Thelia.Model.ContentVersion.html b/documentation/api/class-Thelia.Model.ContentVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentVersion.html
rename to documentation/api/class-Thelia.Model.ContentVersion.html
diff --git a/documentation/class-Thelia.Model.ContentVersionPeer.html b/documentation/api/class-Thelia.Model.ContentVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentVersionPeer.html
rename to documentation/api/class-Thelia.Model.ContentVersionPeer.html
diff --git a/documentation/class-Thelia.Model.ContentVersionQuery.html b/documentation/api/class-Thelia.Model.ContentVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ContentVersionQuery.html
rename to documentation/api/class-Thelia.Model.ContentVersionQuery.html
diff --git a/documentation/class-Thelia.Model.Country.html b/documentation/api/class-Thelia.Model.Country.html
similarity index 100%
rename from documentation/class-Thelia.Model.Country.html
rename to documentation/api/class-Thelia.Model.Country.html
diff --git a/documentation/class-Thelia.Model.CountryDesc.html b/documentation/api/class-Thelia.Model.CountryDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryDesc.html
rename to documentation/api/class-Thelia.Model.CountryDesc.html
diff --git a/documentation/class-Thelia.Model.CountryDescPeer.html b/documentation/api/class-Thelia.Model.CountryDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryDescPeer.html
rename to documentation/api/class-Thelia.Model.CountryDescPeer.html
diff --git a/documentation/class-Thelia.Model.CountryDescQuery.html b/documentation/api/class-Thelia.Model.CountryDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryDescQuery.html
rename to documentation/api/class-Thelia.Model.CountryDescQuery.html
diff --git a/documentation/class-Thelia.Model.CountryI18n.html b/documentation/api/class-Thelia.Model.CountryI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryI18n.html
rename to documentation/api/class-Thelia.Model.CountryI18n.html
diff --git a/documentation/class-Thelia.Model.CountryI18nPeer.html b/documentation/api/class-Thelia.Model.CountryI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryI18nPeer.html
rename to documentation/api/class-Thelia.Model.CountryI18nPeer.html
diff --git a/documentation/class-Thelia.Model.CountryI18nQuery.html b/documentation/api/class-Thelia.Model.CountryI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryI18nQuery.html
rename to documentation/api/class-Thelia.Model.CountryI18nQuery.html
diff --git a/documentation/class-Thelia.Model.CountryPeer.html b/documentation/api/class-Thelia.Model.CountryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryPeer.html
rename to documentation/api/class-Thelia.Model.CountryPeer.html
diff --git a/documentation/class-Thelia.Model.CountryQuery.html b/documentation/api/class-Thelia.Model.CountryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CountryQuery.html
rename to documentation/api/class-Thelia.Model.CountryQuery.html
diff --git a/documentation/class-Thelia.Model.Coupon.html b/documentation/api/class-Thelia.Model.Coupon.html
similarity index 100%
rename from documentation/class-Thelia.Model.Coupon.html
rename to documentation/api/class-Thelia.Model.Coupon.html
diff --git a/documentation/class-Thelia.Model.CouponOrder.html b/documentation/api/class-Thelia.Model.CouponOrder.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponOrder.html
rename to documentation/api/class-Thelia.Model.CouponOrder.html
diff --git a/documentation/class-Thelia.Model.CouponOrderPeer.html b/documentation/api/class-Thelia.Model.CouponOrderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponOrderPeer.html
rename to documentation/api/class-Thelia.Model.CouponOrderPeer.html
diff --git a/documentation/class-Thelia.Model.CouponOrderQuery.html b/documentation/api/class-Thelia.Model.CouponOrderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponOrderQuery.html
rename to documentation/api/class-Thelia.Model.CouponOrderQuery.html
diff --git a/documentation/class-Thelia.Model.CouponPeer.html b/documentation/api/class-Thelia.Model.CouponPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponPeer.html
rename to documentation/api/class-Thelia.Model.CouponPeer.html
diff --git a/documentation/class-Thelia.Model.CouponQuery.html b/documentation/api/class-Thelia.Model.CouponQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponQuery.html
rename to documentation/api/class-Thelia.Model.CouponQuery.html
diff --git a/documentation/class-Thelia.Model.CouponRule.html b/documentation/api/class-Thelia.Model.CouponRule.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponRule.html
rename to documentation/api/class-Thelia.Model.CouponRule.html
diff --git a/documentation/class-Thelia.Model.CouponRulePeer.html b/documentation/api/class-Thelia.Model.CouponRulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponRulePeer.html
rename to documentation/api/class-Thelia.Model.CouponRulePeer.html
diff --git a/documentation/class-Thelia.Model.CouponRuleQuery.html b/documentation/api/class-Thelia.Model.CouponRuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CouponRuleQuery.html
rename to documentation/api/class-Thelia.Model.CouponRuleQuery.html
diff --git a/documentation/class-Thelia.Model.Currency.html b/documentation/api/class-Thelia.Model.Currency.html
similarity index 100%
rename from documentation/class-Thelia.Model.Currency.html
rename to documentation/api/class-Thelia.Model.Currency.html
diff --git a/documentation/class-Thelia.Model.CurrencyPeer.html b/documentation/api/class-Thelia.Model.CurrencyPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CurrencyPeer.html
rename to documentation/api/class-Thelia.Model.CurrencyPeer.html
diff --git a/documentation/class-Thelia.Model.CurrencyQuery.html b/documentation/api/class-Thelia.Model.CurrencyQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CurrencyQuery.html
rename to documentation/api/class-Thelia.Model.CurrencyQuery.html
diff --git a/documentation/class-Thelia.Model.Customer.html b/documentation/api/class-Thelia.Model.Customer.html
similarity index 100%
rename from documentation/class-Thelia.Model.Customer.html
rename to documentation/api/class-Thelia.Model.Customer.html
diff --git a/documentation/class-Thelia.Model.CustomerPeer.html b/documentation/api/class-Thelia.Model.CustomerPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerPeer.html
rename to documentation/api/class-Thelia.Model.CustomerPeer.html
diff --git a/documentation/class-Thelia.Model.CustomerQuery.html b/documentation/api/class-Thelia.Model.CustomerQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerQuery.html
rename to documentation/api/class-Thelia.Model.CustomerQuery.html
diff --git a/documentation/class-Thelia.Model.CustomerTitle.html b/documentation/api/class-Thelia.Model.CustomerTitle.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitle.html
rename to documentation/api/class-Thelia.Model.CustomerTitle.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleDesc.html b/documentation/api/class-Thelia.Model.CustomerTitleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleDesc.html
rename to documentation/api/class-Thelia.Model.CustomerTitleDesc.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleDescPeer.html b/documentation/api/class-Thelia.Model.CustomerTitleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleDescPeer.html
rename to documentation/api/class-Thelia.Model.CustomerTitleDescPeer.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleDescQuery.html b/documentation/api/class-Thelia.Model.CustomerTitleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleDescQuery.html
rename to documentation/api/class-Thelia.Model.CustomerTitleDescQuery.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleI18n.html b/documentation/api/class-Thelia.Model.CustomerTitleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleI18n.html
rename to documentation/api/class-Thelia.Model.CustomerTitleI18n.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleI18nPeer.html b/documentation/api/class-Thelia.Model.CustomerTitleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleI18nPeer.html
rename to documentation/api/class-Thelia.Model.CustomerTitleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleI18nQuery.html b/documentation/api/class-Thelia.Model.CustomerTitleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleI18nQuery.html
rename to documentation/api/class-Thelia.Model.CustomerTitleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.CustomerTitlePeer.html b/documentation/api/class-Thelia.Model.CustomerTitlePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitlePeer.html
rename to documentation/api/class-Thelia.Model.CustomerTitlePeer.html
diff --git a/documentation/class-Thelia.Model.CustomerTitleQuery.html b/documentation/api/class-Thelia.Model.CustomerTitleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.CustomerTitleQuery.html
rename to documentation/api/class-Thelia.Model.CustomerTitleQuery.html
diff --git a/documentation/class-Thelia.Model.Delivzone.html b/documentation/api/class-Thelia.Model.Delivzone.html
similarity index 100%
rename from documentation/class-Thelia.Model.Delivzone.html
rename to documentation/api/class-Thelia.Model.Delivzone.html
diff --git a/documentation/class-Thelia.Model.DelivzonePeer.html b/documentation/api/class-Thelia.Model.DelivzonePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.DelivzonePeer.html
rename to documentation/api/class-Thelia.Model.DelivzonePeer.html
diff --git a/documentation/class-Thelia.Model.DelivzoneQuery.html b/documentation/api/class-Thelia.Model.DelivzoneQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.DelivzoneQuery.html
rename to documentation/api/class-Thelia.Model.DelivzoneQuery.html
diff --git a/documentation/class-Thelia.Model.Document.html b/documentation/api/class-Thelia.Model.Document.html
similarity index 100%
rename from documentation/class-Thelia.Model.Document.html
rename to documentation/api/class-Thelia.Model.Document.html
diff --git a/documentation/class-Thelia.Model.DocumentDesc.html b/documentation/api/class-Thelia.Model.DocumentDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentDesc.html
rename to documentation/api/class-Thelia.Model.DocumentDesc.html
diff --git a/documentation/class-Thelia.Model.DocumentDescPeer.html b/documentation/api/class-Thelia.Model.DocumentDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentDescPeer.html
rename to documentation/api/class-Thelia.Model.DocumentDescPeer.html
diff --git a/documentation/class-Thelia.Model.DocumentDescQuery.html b/documentation/api/class-Thelia.Model.DocumentDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentDescQuery.html
rename to documentation/api/class-Thelia.Model.DocumentDescQuery.html
diff --git a/documentation/class-Thelia.Model.DocumentI18n.html b/documentation/api/class-Thelia.Model.DocumentI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentI18n.html
rename to documentation/api/class-Thelia.Model.DocumentI18n.html
diff --git a/documentation/class-Thelia.Model.DocumentI18nPeer.html b/documentation/api/class-Thelia.Model.DocumentI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentI18nPeer.html
rename to documentation/api/class-Thelia.Model.DocumentI18nPeer.html
diff --git a/documentation/class-Thelia.Model.DocumentI18nQuery.html b/documentation/api/class-Thelia.Model.DocumentI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentI18nQuery.html
rename to documentation/api/class-Thelia.Model.DocumentI18nQuery.html
diff --git a/documentation/class-Thelia.Model.DocumentPeer.html b/documentation/api/class-Thelia.Model.DocumentPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentPeer.html
rename to documentation/api/class-Thelia.Model.DocumentPeer.html
diff --git a/documentation/class-Thelia.Model.DocumentQuery.html b/documentation/api/class-Thelia.Model.DocumentQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.DocumentQuery.html
rename to documentation/api/class-Thelia.Model.DocumentQuery.html
diff --git a/documentation/class-Thelia.Model.Feature.html b/documentation/api/class-Thelia.Model.Feature.html
similarity index 100%
rename from documentation/class-Thelia.Model.Feature.html
rename to documentation/api/class-Thelia.Model.Feature.html
diff --git a/documentation/class-Thelia.Model.FeatureAv.html b/documentation/api/class-Thelia.Model.FeatureAv.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAv.html
rename to documentation/api/class-Thelia.Model.FeatureAv.html
diff --git a/documentation/class-Thelia.Model.FeatureAvDesc.html b/documentation/api/class-Thelia.Model.FeatureAvDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvDesc.html
rename to documentation/api/class-Thelia.Model.FeatureAvDesc.html
diff --git a/documentation/class-Thelia.Model.FeatureAvDescPeer.html b/documentation/api/class-Thelia.Model.FeatureAvDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvDescPeer.html
rename to documentation/api/class-Thelia.Model.FeatureAvDescPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureAvDescQuery.html b/documentation/api/class-Thelia.Model.FeatureAvDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvDescQuery.html
rename to documentation/api/class-Thelia.Model.FeatureAvDescQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureAvI18n.html b/documentation/api/class-Thelia.Model.FeatureAvI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvI18n.html
rename to documentation/api/class-Thelia.Model.FeatureAvI18n.html
diff --git a/documentation/class-Thelia.Model.FeatureAvI18nPeer.html b/documentation/api/class-Thelia.Model.FeatureAvI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvI18nPeer.html
rename to documentation/api/class-Thelia.Model.FeatureAvI18nPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureAvI18nQuery.html b/documentation/api/class-Thelia.Model.FeatureAvI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvI18nQuery.html
rename to documentation/api/class-Thelia.Model.FeatureAvI18nQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureAvPeer.html b/documentation/api/class-Thelia.Model.FeatureAvPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvPeer.html
rename to documentation/api/class-Thelia.Model.FeatureAvPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureAvQuery.html b/documentation/api/class-Thelia.Model.FeatureAvQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureAvQuery.html
rename to documentation/api/class-Thelia.Model.FeatureAvQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureCategory.html b/documentation/api/class-Thelia.Model.FeatureCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureCategory.html
rename to documentation/api/class-Thelia.Model.FeatureCategory.html
diff --git a/documentation/class-Thelia.Model.FeatureCategoryPeer.html b/documentation/api/class-Thelia.Model.FeatureCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureCategoryPeer.html
rename to documentation/api/class-Thelia.Model.FeatureCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureCategoryQuery.html b/documentation/api/class-Thelia.Model.FeatureCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureCategoryQuery.html
rename to documentation/api/class-Thelia.Model.FeatureCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureDesc.html b/documentation/api/class-Thelia.Model.FeatureDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureDesc.html
rename to documentation/api/class-Thelia.Model.FeatureDesc.html
diff --git a/documentation/class-Thelia.Model.FeatureDescPeer.html b/documentation/api/class-Thelia.Model.FeatureDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureDescPeer.html
rename to documentation/api/class-Thelia.Model.FeatureDescPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureDescQuery.html b/documentation/api/class-Thelia.Model.FeatureDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureDescQuery.html
rename to documentation/api/class-Thelia.Model.FeatureDescQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureI18n.html b/documentation/api/class-Thelia.Model.FeatureI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureI18n.html
rename to documentation/api/class-Thelia.Model.FeatureI18n.html
diff --git a/documentation/class-Thelia.Model.FeatureI18nPeer.html b/documentation/api/class-Thelia.Model.FeatureI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureI18nPeer.html
rename to documentation/api/class-Thelia.Model.FeatureI18nPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureI18nQuery.html b/documentation/api/class-Thelia.Model.FeatureI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureI18nQuery.html
rename to documentation/api/class-Thelia.Model.FeatureI18nQuery.html
diff --git a/documentation/class-Thelia.Model.FeaturePeer.html b/documentation/api/class-Thelia.Model.FeaturePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeaturePeer.html
rename to documentation/api/class-Thelia.Model.FeaturePeer.html
diff --git a/documentation/class-Thelia.Model.FeatureProd.html b/documentation/api/class-Thelia.Model.FeatureProd.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureProd.html
rename to documentation/api/class-Thelia.Model.FeatureProd.html
diff --git a/documentation/class-Thelia.Model.FeatureProdPeer.html b/documentation/api/class-Thelia.Model.FeatureProdPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureProdPeer.html
rename to documentation/api/class-Thelia.Model.FeatureProdPeer.html
diff --git a/documentation/class-Thelia.Model.FeatureProdQuery.html b/documentation/api/class-Thelia.Model.FeatureProdQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureProdQuery.html
rename to documentation/api/class-Thelia.Model.FeatureProdQuery.html
diff --git a/documentation/class-Thelia.Model.FeatureQuery.html b/documentation/api/class-Thelia.Model.FeatureQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FeatureQuery.html
rename to documentation/api/class-Thelia.Model.FeatureQuery.html
diff --git a/documentation/class-Thelia.Model.Folder.html b/documentation/api/class-Thelia.Model.Folder.html
similarity index 100%
rename from documentation/class-Thelia.Model.Folder.html
rename to documentation/api/class-Thelia.Model.Folder.html
diff --git a/documentation/class-Thelia.Model.FolderDesc.html b/documentation/api/class-Thelia.Model.FolderDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderDesc.html
rename to documentation/api/class-Thelia.Model.FolderDesc.html
diff --git a/documentation/class-Thelia.Model.FolderDescPeer.html b/documentation/api/class-Thelia.Model.FolderDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderDescPeer.html
rename to documentation/api/class-Thelia.Model.FolderDescPeer.html
diff --git a/documentation/class-Thelia.Model.FolderDescQuery.html b/documentation/api/class-Thelia.Model.FolderDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderDescQuery.html
rename to documentation/api/class-Thelia.Model.FolderDescQuery.html
diff --git a/documentation/class-Thelia.Model.FolderI18n.html b/documentation/api/class-Thelia.Model.FolderI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderI18n.html
rename to documentation/api/class-Thelia.Model.FolderI18n.html
diff --git a/documentation/class-Thelia.Model.FolderI18nPeer.html b/documentation/api/class-Thelia.Model.FolderI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderI18nPeer.html
rename to documentation/api/class-Thelia.Model.FolderI18nPeer.html
diff --git a/documentation/class-Thelia.Model.FolderI18nQuery.html b/documentation/api/class-Thelia.Model.FolderI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderI18nQuery.html
rename to documentation/api/class-Thelia.Model.FolderI18nQuery.html
diff --git a/documentation/class-Thelia.Model.FolderPeer.html b/documentation/api/class-Thelia.Model.FolderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderPeer.html
rename to documentation/api/class-Thelia.Model.FolderPeer.html
diff --git a/documentation/class-Thelia.Model.FolderQuery.html b/documentation/api/class-Thelia.Model.FolderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderQuery.html
rename to documentation/api/class-Thelia.Model.FolderQuery.html
diff --git a/documentation/class-Thelia.Model.FolderVersion.html b/documentation/api/class-Thelia.Model.FolderVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderVersion.html
rename to documentation/api/class-Thelia.Model.FolderVersion.html
diff --git a/documentation/class-Thelia.Model.FolderVersionPeer.html b/documentation/api/class-Thelia.Model.FolderVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderVersionPeer.html
rename to documentation/api/class-Thelia.Model.FolderVersionPeer.html
diff --git a/documentation/class-Thelia.Model.FolderVersionQuery.html b/documentation/api/class-Thelia.Model.FolderVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.FolderVersionQuery.html
rename to documentation/api/class-Thelia.Model.FolderVersionQuery.html
diff --git a/documentation/class-Thelia.Model.Group.html b/documentation/api/class-Thelia.Model.Group.html
similarity index 100%
rename from documentation/class-Thelia.Model.Group.html
rename to documentation/api/class-Thelia.Model.Group.html
diff --git a/documentation/class-Thelia.Model.GroupDesc.html b/documentation/api/class-Thelia.Model.GroupDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupDesc.html
rename to documentation/api/class-Thelia.Model.GroupDesc.html
diff --git a/documentation/class-Thelia.Model.GroupDescPeer.html b/documentation/api/class-Thelia.Model.GroupDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupDescPeer.html
rename to documentation/api/class-Thelia.Model.GroupDescPeer.html
diff --git a/documentation/class-Thelia.Model.GroupDescQuery.html b/documentation/api/class-Thelia.Model.GroupDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupDescQuery.html
rename to documentation/api/class-Thelia.Model.GroupDescQuery.html
diff --git a/documentation/class-Thelia.Model.GroupI18n.html b/documentation/api/class-Thelia.Model.GroupI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupI18n.html
rename to documentation/api/class-Thelia.Model.GroupI18n.html
diff --git a/documentation/class-Thelia.Model.GroupI18nPeer.html b/documentation/api/class-Thelia.Model.GroupI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupI18nPeer.html
rename to documentation/api/class-Thelia.Model.GroupI18nPeer.html
diff --git a/documentation/class-Thelia.Model.GroupI18nQuery.html b/documentation/api/class-Thelia.Model.GroupI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupI18nQuery.html
rename to documentation/api/class-Thelia.Model.GroupI18nQuery.html
diff --git a/documentation/class-Thelia.Model.GroupModule.html b/documentation/api/class-Thelia.Model.GroupModule.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupModule.html
rename to documentation/api/class-Thelia.Model.GroupModule.html
diff --git a/documentation/class-Thelia.Model.GroupModulePeer.html b/documentation/api/class-Thelia.Model.GroupModulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupModulePeer.html
rename to documentation/api/class-Thelia.Model.GroupModulePeer.html
diff --git a/documentation/class-Thelia.Model.GroupModuleQuery.html b/documentation/api/class-Thelia.Model.GroupModuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupModuleQuery.html
rename to documentation/api/class-Thelia.Model.GroupModuleQuery.html
diff --git a/documentation/class-Thelia.Model.GroupPeer.html b/documentation/api/class-Thelia.Model.GroupPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupPeer.html
rename to documentation/api/class-Thelia.Model.GroupPeer.html
diff --git a/documentation/class-Thelia.Model.GroupQuery.html b/documentation/api/class-Thelia.Model.GroupQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupQuery.html
rename to documentation/api/class-Thelia.Model.GroupQuery.html
diff --git a/documentation/class-Thelia.Model.GroupResource.html b/documentation/api/class-Thelia.Model.GroupResource.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupResource.html
rename to documentation/api/class-Thelia.Model.GroupResource.html
diff --git a/documentation/class-Thelia.Model.GroupResourcePeer.html b/documentation/api/class-Thelia.Model.GroupResourcePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupResourcePeer.html
rename to documentation/api/class-Thelia.Model.GroupResourcePeer.html
diff --git a/documentation/class-Thelia.Model.GroupResourceQuery.html b/documentation/api/class-Thelia.Model.GroupResourceQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.GroupResourceQuery.html
rename to documentation/api/class-Thelia.Model.GroupResourceQuery.html
diff --git a/documentation/class-Thelia.Model.Image.html b/documentation/api/class-Thelia.Model.Image.html
similarity index 100%
rename from documentation/class-Thelia.Model.Image.html
rename to documentation/api/class-Thelia.Model.Image.html
diff --git a/documentation/class-Thelia.Model.ImageDesc.html b/documentation/api/class-Thelia.Model.ImageDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageDesc.html
rename to documentation/api/class-Thelia.Model.ImageDesc.html
diff --git a/documentation/class-Thelia.Model.ImageDescPeer.html b/documentation/api/class-Thelia.Model.ImageDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageDescPeer.html
rename to documentation/api/class-Thelia.Model.ImageDescPeer.html
diff --git a/documentation/class-Thelia.Model.ImageDescQuery.html b/documentation/api/class-Thelia.Model.ImageDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageDescQuery.html
rename to documentation/api/class-Thelia.Model.ImageDescQuery.html
diff --git a/documentation/class-Thelia.Model.ImageI18n.html b/documentation/api/class-Thelia.Model.ImageI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageI18n.html
rename to documentation/api/class-Thelia.Model.ImageI18n.html
diff --git a/documentation/class-Thelia.Model.ImageI18nPeer.html b/documentation/api/class-Thelia.Model.ImageI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageI18nPeer.html
rename to documentation/api/class-Thelia.Model.ImageI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ImageI18nQuery.html b/documentation/api/class-Thelia.Model.ImageI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageI18nQuery.html
rename to documentation/api/class-Thelia.Model.ImageI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ImagePeer.html b/documentation/api/class-Thelia.Model.ImagePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImagePeer.html
rename to documentation/api/class-Thelia.Model.ImagePeer.html
diff --git a/documentation/class-Thelia.Model.ImageQuery.html b/documentation/api/class-Thelia.Model.ImageQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ImageQuery.html
rename to documentation/api/class-Thelia.Model.ImageQuery.html
diff --git a/documentation/class-Thelia.Model.Lang.html b/documentation/api/class-Thelia.Model.Lang.html
similarity index 100%
rename from documentation/class-Thelia.Model.Lang.html
rename to documentation/api/class-Thelia.Model.Lang.html
diff --git a/documentation/class-Thelia.Model.LangPeer.html b/documentation/api/class-Thelia.Model.LangPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.LangPeer.html
rename to documentation/api/class-Thelia.Model.LangPeer.html
diff --git a/documentation/class-Thelia.Model.LangQuery.html b/documentation/api/class-Thelia.Model.LangQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.LangQuery.html
rename to documentation/api/class-Thelia.Model.LangQuery.html
diff --git a/documentation/class-Thelia.Model.Message.html b/documentation/api/class-Thelia.Model.Message.html
similarity index 100%
rename from documentation/class-Thelia.Model.Message.html
rename to documentation/api/class-Thelia.Model.Message.html
diff --git a/documentation/class-Thelia.Model.MessageDesc.html b/documentation/api/class-Thelia.Model.MessageDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageDesc.html
rename to documentation/api/class-Thelia.Model.MessageDesc.html
diff --git a/documentation/class-Thelia.Model.MessageDescPeer.html b/documentation/api/class-Thelia.Model.MessageDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageDescPeer.html
rename to documentation/api/class-Thelia.Model.MessageDescPeer.html
diff --git a/documentation/class-Thelia.Model.MessageDescQuery.html b/documentation/api/class-Thelia.Model.MessageDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageDescQuery.html
rename to documentation/api/class-Thelia.Model.MessageDescQuery.html
diff --git a/documentation/class-Thelia.Model.MessageI18n.html b/documentation/api/class-Thelia.Model.MessageI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageI18n.html
rename to documentation/api/class-Thelia.Model.MessageI18n.html
diff --git a/documentation/class-Thelia.Model.MessageI18nPeer.html b/documentation/api/class-Thelia.Model.MessageI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageI18nPeer.html
rename to documentation/api/class-Thelia.Model.MessageI18nPeer.html
diff --git a/documentation/class-Thelia.Model.MessageI18nQuery.html b/documentation/api/class-Thelia.Model.MessageI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageI18nQuery.html
rename to documentation/api/class-Thelia.Model.MessageI18nQuery.html
diff --git a/documentation/class-Thelia.Model.MessagePeer.html b/documentation/api/class-Thelia.Model.MessagePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessagePeer.html
rename to documentation/api/class-Thelia.Model.MessagePeer.html
diff --git a/documentation/class-Thelia.Model.MessageQuery.html b/documentation/api/class-Thelia.Model.MessageQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageQuery.html
rename to documentation/api/class-Thelia.Model.MessageQuery.html
diff --git a/documentation/class-Thelia.Model.MessageVersion.html b/documentation/api/class-Thelia.Model.MessageVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageVersion.html
rename to documentation/api/class-Thelia.Model.MessageVersion.html
diff --git a/documentation/class-Thelia.Model.MessageVersionPeer.html b/documentation/api/class-Thelia.Model.MessageVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageVersionPeer.html
rename to documentation/api/class-Thelia.Model.MessageVersionPeer.html
diff --git a/documentation/class-Thelia.Model.MessageVersionQuery.html b/documentation/api/class-Thelia.Model.MessageVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.MessageVersionQuery.html
rename to documentation/api/class-Thelia.Model.MessageVersionQuery.html
diff --git a/documentation/class-Thelia.Model.Module.html b/documentation/api/class-Thelia.Model.Module.html
similarity index 100%
rename from documentation/class-Thelia.Model.Module.html
rename to documentation/api/class-Thelia.Model.Module.html
diff --git a/documentation/class-Thelia.Model.ModuleDesc.html b/documentation/api/class-Thelia.Model.ModuleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleDesc.html
rename to documentation/api/class-Thelia.Model.ModuleDesc.html
diff --git a/documentation/class-Thelia.Model.ModuleDescPeer.html b/documentation/api/class-Thelia.Model.ModuleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleDescPeer.html
rename to documentation/api/class-Thelia.Model.ModuleDescPeer.html
diff --git a/documentation/class-Thelia.Model.ModuleDescQuery.html b/documentation/api/class-Thelia.Model.ModuleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleDescQuery.html
rename to documentation/api/class-Thelia.Model.ModuleDescQuery.html
diff --git a/documentation/class-Thelia.Model.ModuleI18n.html b/documentation/api/class-Thelia.Model.ModuleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleI18n.html
rename to documentation/api/class-Thelia.Model.ModuleI18n.html
diff --git a/documentation/class-Thelia.Model.ModuleI18nPeer.html b/documentation/api/class-Thelia.Model.ModuleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleI18nPeer.html
rename to documentation/api/class-Thelia.Model.ModuleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ModuleI18nQuery.html b/documentation/api/class-Thelia.Model.ModuleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleI18nQuery.html
rename to documentation/api/class-Thelia.Model.ModuleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ModulePeer.html b/documentation/api/class-Thelia.Model.ModulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModulePeer.html
rename to documentation/api/class-Thelia.Model.ModulePeer.html
diff --git a/documentation/class-Thelia.Model.ModuleQuery.html b/documentation/api/class-Thelia.Model.ModuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ModuleQuery.html
rename to documentation/api/class-Thelia.Model.ModuleQuery.html
diff --git a/documentation/class-Thelia.Model.Order.html b/documentation/api/class-Thelia.Model.Order.html
similarity index 100%
rename from documentation/class-Thelia.Model.Order.html
rename to documentation/api/class-Thelia.Model.Order.html
diff --git a/documentation/class-Thelia.Model.OrderAddress.html b/documentation/api/class-Thelia.Model.OrderAddress.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderAddress.html
rename to documentation/api/class-Thelia.Model.OrderAddress.html
diff --git a/documentation/class-Thelia.Model.OrderAddressPeer.html b/documentation/api/class-Thelia.Model.OrderAddressPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderAddressPeer.html
rename to documentation/api/class-Thelia.Model.OrderAddressPeer.html
diff --git a/documentation/class-Thelia.Model.OrderAddressQuery.html b/documentation/api/class-Thelia.Model.OrderAddressQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderAddressQuery.html
rename to documentation/api/class-Thelia.Model.OrderAddressQuery.html
diff --git a/documentation/class-Thelia.Model.OrderFeature.html b/documentation/api/class-Thelia.Model.OrderFeature.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderFeature.html
rename to documentation/api/class-Thelia.Model.OrderFeature.html
diff --git a/documentation/class-Thelia.Model.OrderFeaturePeer.html b/documentation/api/class-Thelia.Model.OrderFeaturePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderFeaturePeer.html
rename to documentation/api/class-Thelia.Model.OrderFeaturePeer.html
diff --git a/documentation/class-Thelia.Model.OrderFeatureQuery.html b/documentation/api/class-Thelia.Model.OrderFeatureQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderFeatureQuery.html
rename to documentation/api/class-Thelia.Model.OrderFeatureQuery.html
diff --git a/documentation/class-Thelia.Model.OrderPeer.html b/documentation/api/class-Thelia.Model.OrderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderPeer.html
rename to documentation/api/class-Thelia.Model.OrderPeer.html
diff --git a/documentation/class-Thelia.Model.OrderProduct.html b/documentation/api/class-Thelia.Model.OrderProduct.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderProduct.html
rename to documentation/api/class-Thelia.Model.OrderProduct.html
diff --git a/documentation/class-Thelia.Model.OrderProductPeer.html b/documentation/api/class-Thelia.Model.OrderProductPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderProductPeer.html
rename to documentation/api/class-Thelia.Model.OrderProductPeer.html
diff --git a/documentation/class-Thelia.Model.OrderProductQuery.html b/documentation/api/class-Thelia.Model.OrderProductQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderProductQuery.html
rename to documentation/api/class-Thelia.Model.OrderProductQuery.html
diff --git a/documentation/class-Thelia.Model.OrderQuery.html b/documentation/api/class-Thelia.Model.OrderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderQuery.html
rename to documentation/api/class-Thelia.Model.OrderQuery.html
diff --git a/documentation/class-Thelia.Model.OrderStatus.html b/documentation/api/class-Thelia.Model.OrderStatus.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatus.html
rename to documentation/api/class-Thelia.Model.OrderStatus.html
diff --git a/documentation/class-Thelia.Model.OrderStatusDesc.html b/documentation/api/class-Thelia.Model.OrderStatusDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusDesc.html
rename to documentation/api/class-Thelia.Model.OrderStatusDesc.html
diff --git a/documentation/class-Thelia.Model.OrderStatusDescPeer.html b/documentation/api/class-Thelia.Model.OrderStatusDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusDescPeer.html
rename to documentation/api/class-Thelia.Model.OrderStatusDescPeer.html
diff --git a/documentation/class-Thelia.Model.OrderStatusDescQuery.html b/documentation/api/class-Thelia.Model.OrderStatusDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusDescQuery.html
rename to documentation/api/class-Thelia.Model.OrderStatusDescQuery.html
diff --git a/documentation/class-Thelia.Model.OrderStatusI18n.html b/documentation/api/class-Thelia.Model.OrderStatusI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusI18n.html
rename to documentation/api/class-Thelia.Model.OrderStatusI18n.html
diff --git a/documentation/class-Thelia.Model.OrderStatusI18nPeer.html b/documentation/api/class-Thelia.Model.OrderStatusI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusI18nPeer.html
rename to documentation/api/class-Thelia.Model.OrderStatusI18nPeer.html
diff --git a/documentation/class-Thelia.Model.OrderStatusI18nQuery.html b/documentation/api/class-Thelia.Model.OrderStatusI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusI18nQuery.html
rename to documentation/api/class-Thelia.Model.OrderStatusI18nQuery.html
diff --git a/documentation/class-Thelia.Model.OrderStatusPeer.html b/documentation/api/class-Thelia.Model.OrderStatusPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusPeer.html
rename to documentation/api/class-Thelia.Model.OrderStatusPeer.html
diff --git a/documentation/class-Thelia.Model.OrderStatusQuery.html b/documentation/api/class-Thelia.Model.OrderStatusQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.OrderStatusQuery.html
rename to documentation/api/class-Thelia.Model.OrderStatusQuery.html
diff --git a/documentation/class-Thelia.Model.Product.html b/documentation/api/class-Thelia.Model.Product.html
similarity index 100%
rename from documentation/class-Thelia.Model.Product.html
rename to documentation/api/class-Thelia.Model.Product.html
diff --git a/documentation/class-Thelia.Model.ProductCategory.html b/documentation/api/class-Thelia.Model.ProductCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductCategory.html
rename to documentation/api/class-Thelia.Model.ProductCategory.html
diff --git a/documentation/class-Thelia.Model.ProductCategoryPeer.html b/documentation/api/class-Thelia.Model.ProductCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductCategoryPeer.html
rename to documentation/api/class-Thelia.Model.ProductCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.ProductCategoryQuery.html b/documentation/api/class-Thelia.Model.ProductCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductCategoryQuery.html
rename to documentation/api/class-Thelia.Model.ProductCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.ProductDesc.html b/documentation/api/class-Thelia.Model.ProductDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductDesc.html
rename to documentation/api/class-Thelia.Model.ProductDesc.html
diff --git a/documentation/class-Thelia.Model.ProductDescPeer.html b/documentation/api/class-Thelia.Model.ProductDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductDescPeer.html
rename to documentation/api/class-Thelia.Model.ProductDescPeer.html
diff --git a/documentation/class-Thelia.Model.ProductDescQuery.html b/documentation/api/class-Thelia.Model.ProductDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductDescQuery.html
rename to documentation/api/class-Thelia.Model.ProductDescQuery.html
diff --git a/documentation/class-Thelia.Model.ProductI18n.html b/documentation/api/class-Thelia.Model.ProductI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductI18n.html
rename to documentation/api/class-Thelia.Model.ProductI18n.html
diff --git a/documentation/class-Thelia.Model.ProductI18nPeer.html b/documentation/api/class-Thelia.Model.ProductI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductI18nPeer.html
rename to documentation/api/class-Thelia.Model.ProductI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ProductI18nQuery.html b/documentation/api/class-Thelia.Model.ProductI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductI18nQuery.html
rename to documentation/api/class-Thelia.Model.ProductI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ProductPeer.html b/documentation/api/class-Thelia.Model.ProductPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductPeer.html
rename to documentation/api/class-Thelia.Model.ProductPeer.html
diff --git a/documentation/class-Thelia.Model.ProductQuery.html b/documentation/api/class-Thelia.Model.ProductQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductQuery.html
rename to documentation/api/class-Thelia.Model.ProductQuery.html
diff --git a/documentation/class-Thelia.Model.ProductVersion.html b/documentation/api/class-Thelia.Model.ProductVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductVersion.html
rename to documentation/api/class-Thelia.Model.ProductVersion.html
diff --git a/documentation/class-Thelia.Model.ProductVersionPeer.html b/documentation/api/class-Thelia.Model.ProductVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductVersionPeer.html
rename to documentation/api/class-Thelia.Model.ProductVersionPeer.html
diff --git a/documentation/class-Thelia.Model.ProductVersionQuery.html b/documentation/api/class-Thelia.Model.ProductVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ProductVersionQuery.html
rename to documentation/api/class-Thelia.Model.ProductVersionQuery.html
diff --git a/documentation/class-Thelia.Model.Resource.html b/documentation/api/class-Thelia.Model.Resource.html
similarity index 100%
rename from documentation/class-Thelia.Model.Resource.html
rename to documentation/api/class-Thelia.Model.Resource.html
diff --git a/documentation/class-Thelia.Model.ResourceDesc.html b/documentation/api/class-Thelia.Model.ResourceDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceDesc.html
rename to documentation/api/class-Thelia.Model.ResourceDesc.html
diff --git a/documentation/class-Thelia.Model.ResourceDescPeer.html b/documentation/api/class-Thelia.Model.ResourceDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceDescPeer.html
rename to documentation/api/class-Thelia.Model.ResourceDescPeer.html
diff --git a/documentation/class-Thelia.Model.ResourceDescQuery.html b/documentation/api/class-Thelia.Model.ResourceDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceDescQuery.html
rename to documentation/api/class-Thelia.Model.ResourceDescQuery.html
diff --git a/documentation/class-Thelia.Model.ResourceI18n.html b/documentation/api/class-Thelia.Model.ResourceI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceI18n.html
rename to documentation/api/class-Thelia.Model.ResourceI18n.html
diff --git a/documentation/class-Thelia.Model.ResourceI18nPeer.html b/documentation/api/class-Thelia.Model.ResourceI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceI18nPeer.html
rename to documentation/api/class-Thelia.Model.ResourceI18nPeer.html
diff --git a/documentation/class-Thelia.Model.ResourceI18nQuery.html b/documentation/api/class-Thelia.Model.ResourceI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceI18nQuery.html
rename to documentation/api/class-Thelia.Model.ResourceI18nQuery.html
diff --git a/documentation/class-Thelia.Model.ResourcePeer.html b/documentation/api/class-Thelia.Model.ResourcePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourcePeer.html
rename to documentation/api/class-Thelia.Model.ResourcePeer.html
diff --git a/documentation/class-Thelia.Model.ResourceQuery.html b/documentation/api/class-Thelia.Model.ResourceQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.ResourceQuery.html
rename to documentation/api/class-Thelia.Model.ResourceQuery.html
diff --git a/documentation/class-Thelia.Model.Rewriting.html b/documentation/api/class-Thelia.Model.Rewriting.html
similarity index 100%
rename from documentation/class-Thelia.Model.Rewriting.html
rename to documentation/api/class-Thelia.Model.Rewriting.html
diff --git a/documentation/class-Thelia.Model.RewritingPeer.html b/documentation/api/class-Thelia.Model.RewritingPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.RewritingPeer.html
rename to documentation/api/class-Thelia.Model.RewritingPeer.html
diff --git a/documentation/class-Thelia.Model.RewritingQuery.html b/documentation/api/class-Thelia.Model.RewritingQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.RewritingQuery.html
rename to documentation/api/class-Thelia.Model.RewritingQuery.html
diff --git a/documentation/class-Thelia.Model.Stock.html b/documentation/api/class-Thelia.Model.Stock.html
similarity index 100%
rename from documentation/class-Thelia.Model.Stock.html
rename to documentation/api/class-Thelia.Model.Stock.html
diff --git a/documentation/class-Thelia.Model.StockPeer.html b/documentation/api/class-Thelia.Model.StockPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.StockPeer.html
rename to documentation/api/class-Thelia.Model.StockPeer.html
diff --git a/documentation/class-Thelia.Model.StockQuery.html b/documentation/api/class-Thelia.Model.StockQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.StockQuery.html
rename to documentation/api/class-Thelia.Model.StockQuery.html
diff --git a/documentation/class-Thelia.Model.Tax.html b/documentation/api/class-Thelia.Model.Tax.html
similarity index 100%
rename from documentation/class-Thelia.Model.Tax.html
rename to documentation/api/class-Thelia.Model.Tax.html
diff --git a/documentation/class-Thelia.Model.TaxDesc.html b/documentation/api/class-Thelia.Model.TaxDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxDesc.html
rename to documentation/api/class-Thelia.Model.TaxDesc.html
diff --git a/documentation/class-Thelia.Model.TaxDescPeer.html b/documentation/api/class-Thelia.Model.TaxDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxDescPeer.html
rename to documentation/api/class-Thelia.Model.TaxDescPeer.html
diff --git a/documentation/class-Thelia.Model.TaxDescQuery.html b/documentation/api/class-Thelia.Model.TaxDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxDescQuery.html
rename to documentation/api/class-Thelia.Model.TaxDescQuery.html
diff --git a/documentation/class-Thelia.Model.TaxI18n.html b/documentation/api/class-Thelia.Model.TaxI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxI18n.html
rename to documentation/api/class-Thelia.Model.TaxI18n.html
diff --git a/documentation/class-Thelia.Model.TaxI18nPeer.html b/documentation/api/class-Thelia.Model.TaxI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxI18nPeer.html
rename to documentation/api/class-Thelia.Model.TaxI18nPeer.html
diff --git a/documentation/class-Thelia.Model.TaxI18nQuery.html b/documentation/api/class-Thelia.Model.TaxI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxI18nQuery.html
rename to documentation/api/class-Thelia.Model.TaxI18nQuery.html
diff --git a/documentation/class-Thelia.Model.TaxPeer.html b/documentation/api/class-Thelia.Model.TaxPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxPeer.html
rename to documentation/api/class-Thelia.Model.TaxPeer.html
diff --git a/documentation/class-Thelia.Model.TaxQuery.html b/documentation/api/class-Thelia.Model.TaxQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxQuery.html
rename to documentation/api/class-Thelia.Model.TaxQuery.html
diff --git a/documentation/class-Thelia.Model.TaxRule.html b/documentation/api/class-Thelia.Model.TaxRule.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRule.html
rename to documentation/api/class-Thelia.Model.TaxRule.html
diff --git a/documentation/class-Thelia.Model.TaxRuleCountry.html b/documentation/api/class-Thelia.Model.TaxRuleCountry.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleCountry.html
rename to documentation/api/class-Thelia.Model.TaxRuleCountry.html
diff --git a/documentation/class-Thelia.Model.TaxRuleCountryPeer.html b/documentation/api/class-Thelia.Model.TaxRuleCountryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleCountryPeer.html
rename to documentation/api/class-Thelia.Model.TaxRuleCountryPeer.html
diff --git a/documentation/class-Thelia.Model.TaxRuleCountryQuery.html b/documentation/api/class-Thelia.Model.TaxRuleCountryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleCountryQuery.html
rename to documentation/api/class-Thelia.Model.TaxRuleCountryQuery.html
diff --git a/documentation/class-Thelia.Model.TaxRuleDesc.html b/documentation/api/class-Thelia.Model.TaxRuleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleDesc.html
rename to documentation/api/class-Thelia.Model.TaxRuleDesc.html
diff --git a/documentation/class-Thelia.Model.TaxRuleDescPeer.html b/documentation/api/class-Thelia.Model.TaxRuleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleDescPeer.html
rename to documentation/api/class-Thelia.Model.TaxRuleDescPeer.html
diff --git a/documentation/class-Thelia.Model.TaxRuleDescQuery.html b/documentation/api/class-Thelia.Model.TaxRuleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleDescQuery.html
rename to documentation/api/class-Thelia.Model.TaxRuleDescQuery.html
diff --git a/documentation/class-Thelia.Model.TaxRuleI18n.html b/documentation/api/class-Thelia.Model.TaxRuleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleI18n.html
rename to documentation/api/class-Thelia.Model.TaxRuleI18n.html
diff --git a/documentation/class-Thelia.Model.TaxRuleI18nPeer.html b/documentation/api/class-Thelia.Model.TaxRuleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleI18nPeer.html
rename to documentation/api/class-Thelia.Model.TaxRuleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.TaxRuleI18nQuery.html b/documentation/api/class-Thelia.Model.TaxRuleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleI18nQuery.html
rename to documentation/api/class-Thelia.Model.TaxRuleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.TaxRulePeer.html b/documentation/api/class-Thelia.Model.TaxRulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRulePeer.html
rename to documentation/api/class-Thelia.Model.TaxRulePeer.html
diff --git a/documentation/class-Thelia.Model.TaxRuleQuery.html b/documentation/api/class-Thelia.Model.TaxRuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.TaxRuleQuery.html
rename to documentation/api/class-Thelia.Model.TaxRuleQuery.html
diff --git a/documentation/class-Thelia.Model.map.AccessoryTableMap.html b/documentation/api/class-Thelia.Model.map.AccessoryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AccessoryTableMap.html
rename to documentation/api/class-Thelia.Model.map.AccessoryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AddressTableMap.html b/documentation/api/class-Thelia.Model.map.AddressTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AddressTableMap.html
rename to documentation/api/class-Thelia.Model.map.AddressTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AdminGroupTableMap.html b/documentation/api/class-Thelia.Model.map.AdminGroupTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AdminGroupTableMap.html
rename to documentation/api/class-Thelia.Model.map.AdminGroupTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AdminLogTableMap.html b/documentation/api/class-Thelia.Model.map.AdminLogTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AdminLogTableMap.html
rename to documentation/api/class-Thelia.Model.map.AdminLogTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AdminTableMap.html b/documentation/api/class-Thelia.Model.map.AdminTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AdminTableMap.html
rename to documentation/api/class-Thelia.Model.map.AdminTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AreaTableMap.html b/documentation/api/class-Thelia.Model.map.AreaTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AreaTableMap.html
rename to documentation/api/class-Thelia.Model.map.AreaTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeAvDescTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeAvDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeAvDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeAvDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeAvI18nTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeAvI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeAvI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeAvI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeAvTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeAvTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeAvTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeAvTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeCategoryTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeCategoryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeCategoryTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeCategoryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeCombinationTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeCombinationTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeCombinationTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeCombinationTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeDescTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeI18nTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.AttributeTableMap.html b/documentation/api/class-Thelia.Model.map.AttributeTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.AttributeTableMap.html
rename to documentation/api/class-Thelia.Model.map.AttributeTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CategoryDescTableMap.html b/documentation/api/class-Thelia.Model.map.CategoryDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CategoryDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.CategoryDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CategoryI18nTableMap.html b/documentation/api/class-Thelia.Model.map.CategoryI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CategoryI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.CategoryI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CategoryTableMap.html b/documentation/api/class-Thelia.Model.map.CategoryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CategoryTableMap.html
rename to documentation/api/class-Thelia.Model.map.CategoryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CategoryVersionTableMap.html b/documentation/api/class-Thelia.Model.map.CategoryVersionTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CategoryVersionTableMap.html
rename to documentation/api/class-Thelia.Model.map.CategoryVersionTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CombinationTableMap.html b/documentation/api/class-Thelia.Model.map.CombinationTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CombinationTableMap.html
rename to documentation/api/class-Thelia.Model.map.CombinationTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ConfigDescTableMap.html b/documentation/api/class-Thelia.Model.map.ConfigDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ConfigDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ConfigDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ConfigI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ConfigI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ConfigI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ConfigI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ConfigTableMap.html b/documentation/api/class-Thelia.Model.map.ConfigTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ConfigTableMap.html
rename to documentation/api/class-Thelia.Model.map.ConfigTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentAssocTableMap.html b/documentation/api/class-Thelia.Model.map.ContentAssocTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentAssocTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentAssocTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentDescTableMap.html b/documentation/api/class-Thelia.Model.map.ContentDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentFolderTableMap.html b/documentation/api/class-Thelia.Model.map.ContentFolderTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentFolderTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentFolderTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ContentI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentTableMap.html b/documentation/api/class-Thelia.Model.map.ContentTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ContentVersionTableMap.html b/documentation/api/class-Thelia.Model.map.ContentVersionTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ContentVersionTableMap.html
rename to documentation/api/class-Thelia.Model.map.ContentVersionTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CountryDescTableMap.html b/documentation/api/class-Thelia.Model.map.CountryDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CountryDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.CountryDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CountryI18nTableMap.html b/documentation/api/class-Thelia.Model.map.CountryI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CountryI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.CountryI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CountryTableMap.html b/documentation/api/class-Thelia.Model.map.CountryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CountryTableMap.html
rename to documentation/api/class-Thelia.Model.map.CountryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CouponOrderTableMap.html b/documentation/api/class-Thelia.Model.map.CouponOrderTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CouponOrderTableMap.html
rename to documentation/api/class-Thelia.Model.map.CouponOrderTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CouponRuleTableMap.html b/documentation/api/class-Thelia.Model.map.CouponRuleTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CouponRuleTableMap.html
rename to documentation/api/class-Thelia.Model.map.CouponRuleTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CouponTableMap.html b/documentation/api/class-Thelia.Model.map.CouponTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CouponTableMap.html
rename to documentation/api/class-Thelia.Model.map.CouponTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CurrencyTableMap.html b/documentation/api/class-Thelia.Model.map.CurrencyTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CurrencyTableMap.html
rename to documentation/api/class-Thelia.Model.map.CurrencyTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CustomerTableMap.html b/documentation/api/class-Thelia.Model.map.CustomerTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CustomerTableMap.html
rename to documentation/api/class-Thelia.Model.map.CustomerTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CustomerTitleDescTableMap.html b/documentation/api/class-Thelia.Model.map.CustomerTitleDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CustomerTitleDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.CustomerTitleDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CustomerTitleI18nTableMap.html b/documentation/api/class-Thelia.Model.map.CustomerTitleI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CustomerTitleI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.CustomerTitleI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.CustomerTitleTableMap.html b/documentation/api/class-Thelia.Model.map.CustomerTitleTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.CustomerTitleTableMap.html
rename to documentation/api/class-Thelia.Model.map.CustomerTitleTableMap.html
diff --git a/documentation/class-Thelia.Model.map.DelivzoneTableMap.html b/documentation/api/class-Thelia.Model.map.DelivzoneTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.DelivzoneTableMap.html
rename to documentation/api/class-Thelia.Model.map.DelivzoneTableMap.html
diff --git a/documentation/class-Thelia.Model.map.DocumentDescTableMap.html b/documentation/api/class-Thelia.Model.map.DocumentDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.DocumentDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.DocumentDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.DocumentI18nTableMap.html b/documentation/api/class-Thelia.Model.map.DocumentI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.DocumentI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.DocumentI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.DocumentTableMap.html b/documentation/api/class-Thelia.Model.map.DocumentTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.DocumentTableMap.html
rename to documentation/api/class-Thelia.Model.map.DocumentTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureAvDescTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureAvDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureAvDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureAvDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureAvI18nTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureAvI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureAvI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureAvI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureAvTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureAvTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureAvTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureAvTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureCategoryTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureCategoryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureCategoryTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureCategoryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureDescTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureI18nTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureProdTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureProdTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureProdTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureProdTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FeatureTableMap.html b/documentation/api/class-Thelia.Model.map.FeatureTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FeatureTableMap.html
rename to documentation/api/class-Thelia.Model.map.FeatureTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FolderDescTableMap.html b/documentation/api/class-Thelia.Model.map.FolderDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FolderDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.FolderDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FolderI18nTableMap.html b/documentation/api/class-Thelia.Model.map.FolderI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FolderI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.FolderI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FolderTableMap.html b/documentation/api/class-Thelia.Model.map.FolderTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FolderTableMap.html
rename to documentation/api/class-Thelia.Model.map.FolderTableMap.html
diff --git a/documentation/class-Thelia.Model.map.FolderVersionTableMap.html b/documentation/api/class-Thelia.Model.map.FolderVersionTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.FolderVersionTableMap.html
rename to documentation/api/class-Thelia.Model.map.FolderVersionTableMap.html
diff --git a/documentation/class-Thelia.Model.map.GroupDescTableMap.html b/documentation/api/class-Thelia.Model.map.GroupDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.GroupDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.GroupDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.GroupI18nTableMap.html b/documentation/api/class-Thelia.Model.map.GroupI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.GroupI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.GroupI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.GroupModuleTableMap.html b/documentation/api/class-Thelia.Model.map.GroupModuleTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.GroupModuleTableMap.html
rename to documentation/api/class-Thelia.Model.map.GroupModuleTableMap.html
diff --git a/documentation/class-Thelia.Model.map.GroupResourceTableMap.html b/documentation/api/class-Thelia.Model.map.GroupResourceTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.GroupResourceTableMap.html
rename to documentation/api/class-Thelia.Model.map.GroupResourceTableMap.html
diff --git a/documentation/class-Thelia.Model.map.GroupTableMap.html b/documentation/api/class-Thelia.Model.map.GroupTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.GroupTableMap.html
rename to documentation/api/class-Thelia.Model.map.GroupTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ImageDescTableMap.html b/documentation/api/class-Thelia.Model.map.ImageDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ImageDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ImageDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ImageI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ImageI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ImageI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ImageI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ImageTableMap.html b/documentation/api/class-Thelia.Model.map.ImageTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ImageTableMap.html
rename to documentation/api/class-Thelia.Model.map.ImageTableMap.html
diff --git a/documentation/class-Thelia.Model.map.LangTableMap.html b/documentation/api/class-Thelia.Model.map.LangTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.LangTableMap.html
rename to documentation/api/class-Thelia.Model.map.LangTableMap.html
diff --git a/documentation/class-Thelia.Model.map.MessageDescTableMap.html b/documentation/api/class-Thelia.Model.map.MessageDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.MessageDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.MessageDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.MessageI18nTableMap.html b/documentation/api/class-Thelia.Model.map.MessageI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.MessageI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.MessageI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.MessageTableMap.html b/documentation/api/class-Thelia.Model.map.MessageTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.MessageTableMap.html
rename to documentation/api/class-Thelia.Model.map.MessageTableMap.html
diff --git a/documentation/class-Thelia.Model.map.MessageVersionTableMap.html b/documentation/api/class-Thelia.Model.map.MessageVersionTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.MessageVersionTableMap.html
rename to documentation/api/class-Thelia.Model.map.MessageVersionTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ModuleDescTableMap.html b/documentation/api/class-Thelia.Model.map.ModuleDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ModuleDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ModuleDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ModuleI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ModuleI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ModuleI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ModuleI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ModuleTableMap.html b/documentation/api/class-Thelia.Model.map.ModuleTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ModuleTableMap.html
rename to documentation/api/class-Thelia.Model.map.ModuleTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderAddressTableMap.html b/documentation/api/class-Thelia.Model.map.OrderAddressTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderAddressTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderAddressTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderFeatureTableMap.html b/documentation/api/class-Thelia.Model.map.OrderFeatureTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderFeatureTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderFeatureTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderProductTableMap.html b/documentation/api/class-Thelia.Model.map.OrderProductTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderProductTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderProductTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderStatusDescTableMap.html b/documentation/api/class-Thelia.Model.map.OrderStatusDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderStatusDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderStatusDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderStatusI18nTableMap.html b/documentation/api/class-Thelia.Model.map.OrderStatusI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderStatusI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderStatusI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderStatusTableMap.html b/documentation/api/class-Thelia.Model.map.OrderStatusTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderStatusTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderStatusTableMap.html
diff --git a/documentation/class-Thelia.Model.map.OrderTableMap.html b/documentation/api/class-Thelia.Model.map.OrderTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.OrderTableMap.html
rename to documentation/api/class-Thelia.Model.map.OrderTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ProductCategoryTableMap.html b/documentation/api/class-Thelia.Model.map.ProductCategoryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ProductCategoryTableMap.html
rename to documentation/api/class-Thelia.Model.map.ProductCategoryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ProductDescTableMap.html b/documentation/api/class-Thelia.Model.map.ProductDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ProductDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ProductDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ProductI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ProductI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ProductI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ProductI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ProductTableMap.html b/documentation/api/class-Thelia.Model.map.ProductTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ProductTableMap.html
rename to documentation/api/class-Thelia.Model.map.ProductTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ProductVersionTableMap.html b/documentation/api/class-Thelia.Model.map.ProductVersionTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ProductVersionTableMap.html
rename to documentation/api/class-Thelia.Model.map.ProductVersionTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ResourceDescTableMap.html b/documentation/api/class-Thelia.Model.map.ResourceDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ResourceDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.ResourceDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ResourceI18nTableMap.html b/documentation/api/class-Thelia.Model.map.ResourceI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ResourceI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.ResourceI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.ResourceTableMap.html b/documentation/api/class-Thelia.Model.map.ResourceTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.ResourceTableMap.html
rename to documentation/api/class-Thelia.Model.map.ResourceTableMap.html
diff --git a/documentation/class-Thelia.Model.map.RewritingTableMap.html b/documentation/api/class-Thelia.Model.map.RewritingTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.RewritingTableMap.html
rename to documentation/api/class-Thelia.Model.map.RewritingTableMap.html
diff --git a/documentation/class-Thelia.Model.map.StockTableMap.html b/documentation/api/class-Thelia.Model.map.StockTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.StockTableMap.html
rename to documentation/api/class-Thelia.Model.map.StockTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxDescTableMap.html b/documentation/api/class-Thelia.Model.map.TaxDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxI18nTableMap.html b/documentation/api/class-Thelia.Model.map.TaxI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxRuleCountryTableMap.html b/documentation/api/class-Thelia.Model.map.TaxRuleCountryTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxRuleCountryTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxRuleCountryTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxRuleDescTableMap.html b/documentation/api/class-Thelia.Model.map.TaxRuleDescTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxRuleDescTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxRuleDescTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxRuleI18nTableMap.html b/documentation/api/class-Thelia.Model.map.TaxRuleI18nTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxRuleI18nTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxRuleI18nTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxRuleTableMap.html b/documentation/api/class-Thelia.Model.map.TaxRuleTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxRuleTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxRuleTableMap.html
diff --git a/documentation/class-Thelia.Model.map.TaxTableMap.html b/documentation/api/class-Thelia.Model.map.TaxTableMap.html
similarity index 100%
rename from documentation/class-Thelia.Model.map.TaxTableMap.html
rename to documentation/api/class-Thelia.Model.map.TaxTableMap.html
diff --git a/documentation/class-Thelia.Model.om.BaseAccessory.html b/documentation/api/class-Thelia.Model.om.BaseAccessory.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAccessory.html
rename to documentation/api/class-Thelia.Model.om.BaseAccessory.html
diff --git a/documentation/class-Thelia.Model.om.BaseAccessoryPeer.html b/documentation/api/class-Thelia.Model.om.BaseAccessoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAccessoryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAccessoryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAccessoryQuery.html b/documentation/api/class-Thelia.Model.om.BaseAccessoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAccessoryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAccessoryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAddress.html b/documentation/api/class-Thelia.Model.om.BaseAddress.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAddress.html
rename to documentation/api/class-Thelia.Model.om.BaseAddress.html
diff --git a/documentation/class-Thelia.Model.om.BaseAddressPeer.html b/documentation/api/class-Thelia.Model.om.BaseAddressPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAddressPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAddressPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAddressQuery.html b/documentation/api/class-Thelia.Model.om.BaseAddressQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAddressQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAddressQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdmin.html b/documentation/api/class-Thelia.Model.om.BaseAdmin.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdmin.html
rename to documentation/api/class-Thelia.Model.om.BaseAdmin.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminGroup.html b/documentation/api/class-Thelia.Model.om.BaseAdminGroup.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminGroup.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminGroup.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminGroupPeer.html b/documentation/api/class-Thelia.Model.om.BaseAdminGroupPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminGroupPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminGroupPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminGroupQuery.html b/documentation/api/class-Thelia.Model.om.BaseAdminGroupQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminGroupQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminGroupQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminLog.html b/documentation/api/class-Thelia.Model.om.BaseAdminLog.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminLog.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminLog.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminLogPeer.html b/documentation/api/class-Thelia.Model.om.BaseAdminLogPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminLogPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminLogPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminLogQuery.html b/documentation/api/class-Thelia.Model.om.BaseAdminLogQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminLogQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminLogQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminPeer.html b/documentation/api/class-Thelia.Model.om.BaseAdminPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAdminQuery.html b/documentation/api/class-Thelia.Model.om.BaseAdminQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAdminQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAdminQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseArea.html b/documentation/api/class-Thelia.Model.om.BaseArea.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseArea.html
rename to documentation/api/class-Thelia.Model.om.BaseArea.html
diff --git a/documentation/class-Thelia.Model.om.BaseAreaPeer.html b/documentation/api/class-Thelia.Model.om.BaseAreaPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAreaPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAreaPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAreaQuery.html b/documentation/api/class-Thelia.Model.om.BaseAreaQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAreaQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAreaQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttribute.html b/documentation/api/class-Thelia.Model.om.BaseAttribute.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttribute.html
rename to documentation/api/class-Thelia.Model.om.BaseAttribute.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAv.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAv.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAv.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAv.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvDesc.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvI18n.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeAvQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeAvQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeAvQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeAvQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCategory.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCategory.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCategory.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCategoryPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCategoryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCategoryQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCategoryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCombination.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCombination.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCombination.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCombination.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCombinationPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCombinationPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCombinationPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCombinationPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeCombinationQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeCombinationQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeCombinationQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeCombinationQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeDesc.html b/documentation/api/class-Thelia.Model.om.BaseAttributeDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeI18n.html b/documentation/api/class-Thelia.Model.om.BaseAttributeI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributeI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributePeer.html b/documentation/api/class-Thelia.Model.om.BaseAttributePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseAttributeQuery.html b/documentation/api/class-Thelia.Model.om.BaseAttributeQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseAttributeQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseAttributeQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategory.html b/documentation/api/class-Thelia.Model.om.BaseCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategory.html
rename to documentation/api/class-Thelia.Model.om.BaseCategory.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryDesc.html b/documentation/api/class-Thelia.Model.om.BaseCategoryDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseCategoryDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseCategoryDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryI18n.html b/documentation/api/class-Thelia.Model.om.BaseCategoryI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseCategoryI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseCategoryI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryPeer.html b/documentation/api/class-Thelia.Model.om.BaseCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryQuery.html b/documentation/api/class-Thelia.Model.om.BaseCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryVersion.html b/documentation/api/class-Thelia.Model.om.BaseCategoryVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryVersion.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryVersion.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryVersionPeer.html b/documentation/api/class-Thelia.Model.om.BaseCategoryVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryVersionPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryVersionPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCategoryVersionQuery.html b/documentation/api/class-Thelia.Model.om.BaseCategoryVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCategoryVersionQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCategoryVersionQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCombination.html b/documentation/api/class-Thelia.Model.om.BaseCombination.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCombination.html
rename to documentation/api/class-Thelia.Model.om.BaseCombination.html
diff --git a/documentation/class-Thelia.Model.om.BaseCombinationPeer.html b/documentation/api/class-Thelia.Model.om.BaseCombinationPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCombinationPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCombinationPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCombinationQuery.html b/documentation/api/class-Thelia.Model.om.BaseCombinationQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCombinationQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCombinationQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfig.html b/documentation/api/class-Thelia.Model.om.BaseConfig.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfig.html
rename to documentation/api/class-Thelia.Model.om.BaseConfig.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigDesc.html b/documentation/api/class-Thelia.Model.om.BaseConfigDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseConfigDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseConfigDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigI18n.html b/documentation/api/class-Thelia.Model.om.BaseConfigI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseConfigI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseConfigI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigPeer.html b/documentation/api/class-Thelia.Model.om.BaseConfigPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseConfigQuery.html b/documentation/api/class-Thelia.Model.om.BaseConfigQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseConfigQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseConfigQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContent.html b/documentation/api/class-Thelia.Model.om.BaseContent.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContent.html
rename to documentation/api/class-Thelia.Model.om.BaseContent.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentAssoc.html b/documentation/api/class-Thelia.Model.om.BaseContentAssoc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentAssoc.html
rename to documentation/api/class-Thelia.Model.om.BaseContentAssoc.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentAssocPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentAssocPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentAssocPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentAssocPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentAssocQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentAssocQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentAssocQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentAssocQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentDesc.html b/documentation/api/class-Thelia.Model.om.BaseContentDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseContentDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentFolder.html b/documentation/api/class-Thelia.Model.om.BaseContentFolder.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentFolder.html
rename to documentation/api/class-Thelia.Model.om.BaseContentFolder.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentFolderPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentFolderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentFolderPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentFolderPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentFolderQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentFolderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentFolderQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentFolderQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentI18n.html b/documentation/api/class-Thelia.Model.om.BaseContentI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseContentI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentVersion.html b/documentation/api/class-Thelia.Model.om.BaseContentVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentVersion.html
rename to documentation/api/class-Thelia.Model.om.BaseContentVersion.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentVersionPeer.html b/documentation/api/class-Thelia.Model.om.BaseContentVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentVersionPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseContentVersionPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseContentVersionQuery.html b/documentation/api/class-Thelia.Model.om.BaseContentVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseContentVersionQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseContentVersionQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountry.html b/documentation/api/class-Thelia.Model.om.BaseCountry.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountry.html
rename to documentation/api/class-Thelia.Model.om.BaseCountry.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryDesc.html b/documentation/api/class-Thelia.Model.om.BaseCountryDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseCountryDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseCountryDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryI18n.html b/documentation/api/class-Thelia.Model.om.BaseCountryI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseCountryI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseCountryI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryPeer.html b/documentation/api/class-Thelia.Model.om.BaseCountryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCountryQuery.html b/documentation/api/class-Thelia.Model.om.BaseCountryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCountryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCountryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCoupon.html b/documentation/api/class-Thelia.Model.om.BaseCoupon.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCoupon.html
rename to documentation/api/class-Thelia.Model.om.BaseCoupon.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponOrder.html b/documentation/api/class-Thelia.Model.om.BaseCouponOrder.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponOrder.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponOrder.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponOrderPeer.html b/documentation/api/class-Thelia.Model.om.BaseCouponOrderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponOrderPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponOrderPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponOrderQuery.html b/documentation/api/class-Thelia.Model.om.BaseCouponOrderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponOrderQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponOrderQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponPeer.html b/documentation/api/class-Thelia.Model.om.BaseCouponPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponQuery.html b/documentation/api/class-Thelia.Model.om.BaseCouponQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponRule.html b/documentation/api/class-Thelia.Model.om.BaseCouponRule.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponRule.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponRule.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponRulePeer.html b/documentation/api/class-Thelia.Model.om.BaseCouponRulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponRulePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponRulePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCouponRuleQuery.html b/documentation/api/class-Thelia.Model.om.BaseCouponRuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCouponRuleQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCouponRuleQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCurrency.html b/documentation/api/class-Thelia.Model.om.BaseCurrency.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCurrency.html
rename to documentation/api/class-Thelia.Model.om.BaseCurrency.html
diff --git a/documentation/class-Thelia.Model.om.BaseCurrencyPeer.html b/documentation/api/class-Thelia.Model.om.BaseCurrencyPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCurrencyPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCurrencyPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCurrencyQuery.html b/documentation/api/class-Thelia.Model.om.BaseCurrencyQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCurrencyQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCurrencyQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomer.html b/documentation/api/class-Thelia.Model.om.BaseCustomer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomer.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerPeer.html b/documentation/api/class-Thelia.Model.om.BaseCustomerPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerQuery.html b/documentation/api/class-Thelia.Model.om.BaseCustomerQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitle.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitle.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitle.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitle.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleDesc.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleI18n.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitlePeer.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitlePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitlePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitlePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseCustomerTitleQuery.html b/documentation/api/class-Thelia.Model.om.BaseCustomerTitleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseCustomerTitleQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseCustomerTitleQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseDelivzone.html b/documentation/api/class-Thelia.Model.om.BaseDelivzone.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDelivzone.html
rename to documentation/api/class-Thelia.Model.om.BaseDelivzone.html
diff --git a/documentation/class-Thelia.Model.om.BaseDelivzonePeer.html b/documentation/api/class-Thelia.Model.om.BaseDelivzonePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDelivzonePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseDelivzonePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseDelivzoneQuery.html b/documentation/api/class-Thelia.Model.om.BaseDelivzoneQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDelivzoneQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseDelivzoneQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocument.html b/documentation/api/class-Thelia.Model.om.BaseDocument.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocument.html
rename to documentation/api/class-Thelia.Model.om.BaseDocument.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentDesc.html b/documentation/api/class-Thelia.Model.om.BaseDocumentDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseDocumentDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseDocumentDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentI18n.html b/documentation/api/class-Thelia.Model.om.BaseDocumentI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseDocumentI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseDocumentI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentPeer.html b/documentation/api/class-Thelia.Model.om.BaseDocumentPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseDocumentQuery.html b/documentation/api/class-Thelia.Model.om.BaseDocumentQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseDocumentQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseDocumentQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeature.html b/documentation/api/class-Thelia.Model.om.BaseFeature.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeature.html
rename to documentation/api/class-Thelia.Model.om.BaseFeature.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAv.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAv.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAv.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAv.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvDesc.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvI18n.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureAvQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureAvQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureAvQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureAvQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureCategory.html b/documentation/api/class-Thelia.Model.om.BaseFeatureCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureCategory.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureCategory.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureCategoryPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureCategoryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureCategoryQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureCategoryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureDesc.html b/documentation/api/class-Thelia.Model.om.BaseFeatureDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureI18n.html b/documentation/api/class-Thelia.Model.om.BaseFeatureI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeaturePeer.html b/documentation/api/class-Thelia.Model.om.BaseFeaturePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeaturePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeaturePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureProd.html b/documentation/api/class-Thelia.Model.om.BaseFeatureProd.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureProd.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureProd.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureProdPeer.html b/documentation/api/class-Thelia.Model.om.BaseFeatureProdPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureProdPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureProdPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureProdQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureProdQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureProdQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureProdQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFeatureQuery.html b/documentation/api/class-Thelia.Model.om.BaseFeatureQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFeatureQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFeatureQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolder.html b/documentation/api/class-Thelia.Model.om.BaseFolder.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolder.html
rename to documentation/api/class-Thelia.Model.om.BaseFolder.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderDesc.html b/documentation/api/class-Thelia.Model.om.BaseFolderDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseFolderDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseFolderDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderI18n.html b/documentation/api/class-Thelia.Model.om.BaseFolderI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseFolderI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseFolderI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderPeer.html b/documentation/api/class-Thelia.Model.om.BaseFolderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderQuery.html b/documentation/api/class-Thelia.Model.om.BaseFolderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderVersion.html b/documentation/api/class-Thelia.Model.om.BaseFolderVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderVersion.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderVersion.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderVersionPeer.html b/documentation/api/class-Thelia.Model.om.BaseFolderVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderVersionPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderVersionPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseFolderVersionQuery.html b/documentation/api/class-Thelia.Model.om.BaseFolderVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseFolderVersionQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseFolderVersionQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroup.html b/documentation/api/class-Thelia.Model.om.BaseGroup.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroup.html
rename to documentation/api/class-Thelia.Model.om.BaseGroup.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupDesc.html b/documentation/api/class-Thelia.Model.om.BaseGroupDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseGroupDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseGroupDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupI18n.html b/documentation/api/class-Thelia.Model.om.BaseGroupI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseGroupI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseGroupI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupModule.html b/documentation/api/class-Thelia.Model.om.BaseGroupModule.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupModule.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupModule.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupModulePeer.html b/documentation/api/class-Thelia.Model.om.BaseGroupModulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupModulePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupModulePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupModuleQuery.html b/documentation/api/class-Thelia.Model.om.BaseGroupModuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupModuleQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupModuleQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupPeer.html b/documentation/api/class-Thelia.Model.om.BaseGroupPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupQuery.html b/documentation/api/class-Thelia.Model.om.BaseGroupQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupResource.html b/documentation/api/class-Thelia.Model.om.BaseGroupResource.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupResource.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupResource.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupResourcePeer.html b/documentation/api/class-Thelia.Model.om.BaseGroupResourcePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupResourcePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupResourcePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseGroupResourceQuery.html b/documentation/api/class-Thelia.Model.om.BaseGroupResourceQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseGroupResourceQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseGroupResourceQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseImage.html b/documentation/api/class-Thelia.Model.om.BaseImage.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImage.html
rename to documentation/api/class-Thelia.Model.om.BaseImage.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageDesc.html b/documentation/api/class-Thelia.Model.om.BaseImageDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseImageDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseImageDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseImageDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseImageDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseImageDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageI18n.html b/documentation/api/class-Thelia.Model.om.BaseImageI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseImageI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseImageI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseImageI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseImageI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseImageI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseImagePeer.html b/documentation/api/class-Thelia.Model.om.BaseImagePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImagePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseImagePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseImageQuery.html b/documentation/api/class-Thelia.Model.om.BaseImageQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseImageQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseImageQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseLang.html b/documentation/api/class-Thelia.Model.om.BaseLang.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseLang.html
rename to documentation/api/class-Thelia.Model.om.BaseLang.html
diff --git a/documentation/class-Thelia.Model.om.BaseLangPeer.html b/documentation/api/class-Thelia.Model.om.BaseLangPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseLangPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseLangPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseLangQuery.html b/documentation/api/class-Thelia.Model.om.BaseLangQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseLangQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseLangQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessage.html b/documentation/api/class-Thelia.Model.om.BaseMessage.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessage.html
rename to documentation/api/class-Thelia.Model.om.BaseMessage.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageDesc.html b/documentation/api/class-Thelia.Model.om.BaseMessageDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseMessageDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseMessageDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageI18n.html b/documentation/api/class-Thelia.Model.om.BaseMessageI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseMessageI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseMessageI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessagePeer.html b/documentation/api/class-Thelia.Model.om.BaseMessagePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessagePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseMessagePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageQuery.html b/documentation/api/class-Thelia.Model.om.BaseMessageQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageVersion.html b/documentation/api/class-Thelia.Model.om.BaseMessageVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageVersion.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageVersion.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageVersionPeer.html b/documentation/api/class-Thelia.Model.om.BaseMessageVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageVersionPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageVersionPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseMessageVersionQuery.html b/documentation/api/class-Thelia.Model.om.BaseMessageVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseMessageVersionQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseMessageVersionQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleDesc.html b/documentation/api/class-Thelia.Model.om.BaseModuleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseModuleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseModuleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleI18n.html b/documentation/api/class-Thelia.Model.om.BaseModuleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseModuleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseModuleI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseModuleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModuleI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseModuleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseModulePeer.html b/documentation/api/class-Thelia.Model.om.BaseModulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseModulePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseModulePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrder.html b/documentation/api/class-Thelia.Model.om.BaseOrder.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrder.html
rename to documentation/api/class-Thelia.Model.om.BaseOrder.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderAddress.html b/documentation/api/class-Thelia.Model.om.BaseOrderAddress.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderAddress.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderAddress.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderAddressPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderAddressPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderAddressPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderAddressPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderAddressQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderAddressQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderAddressQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderAddressQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderFeature.html b/documentation/api/class-Thelia.Model.om.BaseOrderFeature.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderFeature.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderFeature.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderFeaturePeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderFeaturePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderFeaturePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderFeaturePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderFeatureQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderFeatureQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderFeatureQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderFeatureQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderProduct.html b/documentation/api/class-Thelia.Model.om.BaseOrderProduct.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderProduct.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderProduct.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderProductPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderProductPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderProductPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderProductPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderProductQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderProductQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderProductQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderProductQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatus.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatus.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatus.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatus.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusDesc.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusI18n.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusPeer.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseOrderStatusQuery.html b/documentation/api/class-Thelia.Model.om.BaseOrderStatusQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseOrderStatusQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseOrderStatusQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseProduct.html b/documentation/api/class-Thelia.Model.om.BaseProduct.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProduct.html
rename to documentation/api/class-Thelia.Model.om.BaseProduct.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductCategory.html b/documentation/api/class-Thelia.Model.om.BaseProductCategory.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductCategory.html
rename to documentation/api/class-Thelia.Model.om.BaseProductCategory.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductCategoryPeer.html b/documentation/api/class-Thelia.Model.om.BaseProductCategoryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductCategoryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseProductCategoryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductCategoryQuery.html b/documentation/api/class-Thelia.Model.om.BaseProductCategoryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductCategoryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseProductCategoryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductDesc.html b/documentation/api/class-Thelia.Model.om.BaseProductDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseProductDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseProductDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseProductDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseProductDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseProductDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductI18n.html b/documentation/api/class-Thelia.Model.om.BaseProductI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseProductI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseProductI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseProductI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseProductI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseProductI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductPeer.html b/documentation/api/class-Thelia.Model.om.BaseProductPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseProductPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductQuery.html b/documentation/api/class-Thelia.Model.om.BaseProductQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseProductQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductVersion.html b/documentation/api/class-Thelia.Model.om.BaseProductVersion.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductVersion.html
rename to documentation/api/class-Thelia.Model.om.BaseProductVersion.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductVersionPeer.html b/documentation/api/class-Thelia.Model.om.BaseProductVersionPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductVersionPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseProductVersionPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseProductVersionQuery.html b/documentation/api/class-Thelia.Model.om.BaseProductVersionQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseProductVersionQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseProductVersionQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseResource.html b/documentation/api/class-Thelia.Model.om.BaseResource.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResource.html
rename to documentation/api/class-Thelia.Model.om.BaseResource.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceDesc.html b/documentation/api/class-Thelia.Model.om.BaseResourceDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseResourceDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseResourceDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceI18n.html b/documentation/api/class-Thelia.Model.om.BaseResourceI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseResourceI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseResourceI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourcePeer.html b/documentation/api/class-Thelia.Model.om.BaseResourcePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourcePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseResourcePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseResourceQuery.html b/documentation/api/class-Thelia.Model.om.BaseResourceQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseResourceQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseResourceQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseRewriting.html b/documentation/api/class-Thelia.Model.om.BaseRewriting.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseRewriting.html
rename to documentation/api/class-Thelia.Model.om.BaseRewriting.html
diff --git a/documentation/class-Thelia.Model.om.BaseRewritingPeer.html b/documentation/api/class-Thelia.Model.om.BaseRewritingPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseRewritingPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseRewritingPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseRewritingQuery.html b/documentation/api/class-Thelia.Model.om.BaseRewritingQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseRewritingQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseRewritingQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseStock.html b/documentation/api/class-Thelia.Model.om.BaseStock.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseStock.html
rename to documentation/api/class-Thelia.Model.om.BaseStock.html
diff --git a/documentation/class-Thelia.Model.om.BaseStockPeer.html b/documentation/api/class-Thelia.Model.om.BaseStockPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseStockPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseStockPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseStockQuery.html b/documentation/api/class-Thelia.Model.om.BaseStockQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseStockQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseStockQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTax.html b/documentation/api/class-Thelia.Model.om.BaseTax.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTax.html
rename to documentation/api/class-Thelia.Model.om.BaseTax.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxDesc.html b/documentation/api/class-Thelia.Model.om.BaseTaxDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxI18n.html b/documentation/api/class-Thelia.Model.om.BaseTaxI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRule.html b/documentation/api/class-Thelia.Model.om.BaseTaxRule.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRule.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRule.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleCountry.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleCountry.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleCountry.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleCountry.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleCountryPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleCountryPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleCountryPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleCountryPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleCountryQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleCountryQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleCountryQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleCountryQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleDesc.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleDesc.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleDesc.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleDesc.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleDescPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleDescPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleDescPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleDescPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleDescQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleDescQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleDescQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleDescQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleI18n.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleI18n.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleI18n.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleI18n.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleI18nPeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleI18nPeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleI18nPeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleI18nPeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleI18nQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleI18nQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleI18nQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleI18nQuery.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRulePeer.html b/documentation/api/class-Thelia.Model.om.BaseTaxRulePeer.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRulePeer.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRulePeer.html
diff --git a/documentation/class-Thelia.Model.om.BaseTaxRuleQuery.html b/documentation/api/class-Thelia.Model.om.BaseTaxRuleQuery.html
similarity index 100%
rename from documentation/class-Thelia.Model.om.BaseTaxRuleQuery.html
rename to documentation/api/class-Thelia.Model.om.BaseTaxRuleQuery.html
diff --git a/documentation/class-Thelia.Routing.Matcher.ActionMatcher.html b/documentation/api/class-Thelia.Routing.Matcher.ActionMatcher.html
similarity index 100%
rename from documentation/class-Thelia.Routing.Matcher.ActionMatcher.html
rename to documentation/api/class-Thelia.Routing.Matcher.ActionMatcher.html
diff --git a/documentation/class-Thelia.Routing.Matcher.DefaultMatcher.html b/documentation/api/class-Thelia.Routing.Matcher.DefaultMatcher.html
similarity index 100%
rename from documentation/class-Thelia.Routing.Matcher.DefaultMatcher.html
rename to documentation/api/class-Thelia.Routing.Matcher.DefaultMatcher.html
diff --git a/documentation/class-Thelia.Routing.TheliaMatcherCollection.html b/documentation/api/class-Thelia.Routing.TheliaMatcherCollection.html
similarity index 100%
rename from documentation/class-Thelia.Routing.TheliaMatcherCollection.html
rename to documentation/api/class-Thelia.Routing.TheliaMatcherCollection.html
diff --git a/documentation/class-Thelia.Tools.DIGenerator.html b/documentation/api/class-Thelia.Tools.DIGenerator.html
similarity index 100%
rename from documentation/class-Thelia.Tools.DIGenerator.html
rename to documentation/api/class-Thelia.Tools.DIGenerator.html
diff --git a/documentation/class-Traversable.html b/documentation/api/class-Traversable.html
similarity index 100%
rename from documentation/class-Traversable.html
rename to documentation/api/class-Traversable.html
diff --git a/documentation/elementlist.js b/documentation/api/elementlist.js
similarity index 100%
rename from documentation/elementlist.js
rename to documentation/api/elementlist.js
diff --git a/documentation/index.html b/documentation/api/index.html
similarity index 100%
rename from documentation/index.html
rename to documentation/api/index.html
diff --git a/documentation/namespace-PHP.html b/documentation/api/namespace-PHP.html
similarity index 100%
rename from documentation/namespace-PHP.html
rename to documentation/api/namespace-PHP.html
diff --git a/documentation/namespace-Thelia.Action.html b/documentation/api/namespace-Thelia.Action.html
similarity index 100%
rename from documentation/namespace-Thelia.Action.html
rename to documentation/api/namespace-Thelia.Action.html
diff --git a/documentation/namespace-Thelia.Controller.html b/documentation/api/namespace-Thelia.Controller.html
similarity index 100%
rename from documentation/namespace-Thelia.Controller.html
rename to documentation/api/namespace-Thelia.Controller.html
diff --git a/documentation/namespace-Thelia.Core.Bundle.html b/documentation/api/namespace-Thelia.Core.Bundle.html
similarity index 100%
rename from documentation/namespace-Thelia.Core.Bundle.html
rename to documentation/api/namespace-Thelia.Core.Bundle.html
diff --git a/documentation/namespace-Thelia.Core.Event.html b/documentation/api/namespace-Thelia.Core.Event.html
similarity index 100%
rename from documentation/namespace-Thelia.Core.Event.html
rename to documentation/api/namespace-Thelia.Core.Event.html
diff --git a/documentation/namespace-Thelia.Core.EventListener.html b/documentation/api/namespace-Thelia.Core.EventListener.html
similarity index 100%
rename from documentation/namespace-Thelia.Core.EventListener.html
rename to documentation/api/namespace-Thelia.Core.EventListener.html
diff --git a/documentation/namespace-Thelia.Core.Template.html b/documentation/api/namespace-Thelia.Core.Template.html
similarity index 100%
rename from documentation/namespace-Thelia.Core.Template.html
rename to documentation/api/namespace-Thelia.Core.Template.html
diff --git a/documentation/namespace-Thelia.Core.html b/documentation/api/namespace-Thelia.Core.html
similarity index 100%
rename from documentation/namespace-Thelia.Core.html
rename to documentation/api/namespace-Thelia.Core.html
diff --git a/documentation/namespace-Thelia.Exception.html b/documentation/api/namespace-Thelia.Exception.html
similarity index 100%
rename from documentation/namespace-Thelia.Exception.html
rename to documentation/api/namespace-Thelia.Exception.html
diff --git a/documentation/namespace-Thelia.Log.Destination.html b/documentation/api/namespace-Thelia.Log.Destination.html
similarity index 100%
rename from documentation/namespace-Thelia.Log.Destination.html
rename to documentation/api/namespace-Thelia.Log.Destination.html
diff --git a/documentation/namespace-Thelia.Log.html b/documentation/api/namespace-Thelia.Log.html
similarity index 100%
rename from documentation/namespace-Thelia.Log.html
rename to documentation/api/namespace-Thelia.Log.html
diff --git a/documentation/namespace-Thelia.Model.html b/documentation/api/namespace-Thelia.Model.html
similarity index 100%
rename from documentation/namespace-Thelia.Model.html
rename to documentation/api/namespace-Thelia.Model.html
diff --git a/documentation/namespace-Thelia.Model.map.html b/documentation/api/namespace-Thelia.Model.map.html
similarity index 100%
rename from documentation/namespace-Thelia.Model.map.html
rename to documentation/api/namespace-Thelia.Model.map.html
diff --git a/documentation/namespace-Thelia.Model.om.html b/documentation/api/namespace-Thelia.Model.om.html
similarity index 100%
rename from documentation/namespace-Thelia.Model.om.html
rename to documentation/api/namespace-Thelia.Model.om.html
diff --git a/documentation/namespace-Thelia.Routing.Matcher.html b/documentation/api/namespace-Thelia.Routing.Matcher.html
similarity index 100%
rename from documentation/namespace-Thelia.Routing.Matcher.html
rename to documentation/api/namespace-Thelia.Routing.Matcher.html
diff --git a/documentation/namespace-Thelia.Routing.html b/documentation/api/namespace-Thelia.Routing.html
similarity index 100%
rename from documentation/namespace-Thelia.Routing.html
rename to documentation/api/namespace-Thelia.Routing.html
diff --git a/documentation/namespace-Thelia.Tools.html b/documentation/api/namespace-Thelia.Tools.html
similarity index 100%
rename from documentation/namespace-Thelia.Tools.html
rename to documentation/api/namespace-Thelia.Tools.html
diff --git a/documentation/namespace-Thelia.html b/documentation/api/namespace-Thelia.html
similarity index 100%
rename from documentation/namespace-Thelia.html
rename to documentation/api/namespace-Thelia.html
diff --git a/documentation/resources/collapsed.png b/documentation/api/resources/collapsed.png
similarity index 100%
rename from documentation/resources/collapsed.png
rename to documentation/api/resources/collapsed.png
diff --git a/documentation/resources/combined.js b/documentation/api/resources/combined.js
similarity index 100%
rename from documentation/resources/combined.js
rename to documentation/api/resources/combined.js
diff --git a/documentation/resources/footer.png b/documentation/api/resources/footer.png
similarity index 100%
rename from documentation/resources/footer.png
rename to documentation/api/resources/footer.png
diff --git a/documentation/resources/inherit.png b/documentation/api/resources/inherit.png
similarity index 100%
rename from documentation/resources/inherit.png
rename to documentation/api/resources/inherit.png
diff --git a/documentation/resources/resize.png b/documentation/api/resources/resize.png
similarity index 100%
rename from documentation/resources/resize.png
rename to documentation/api/resources/resize.png
diff --git a/documentation/resources/sort.png b/documentation/api/resources/sort.png
similarity index 100%
rename from documentation/resources/sort.png
rename to documentation/api/resources/sort.png
diff --git a/documentation/resources/style.css b/documentation/api/resources/style.css
similarity index 100%
rename from documentation/resources/style.css
rename to documentation/api/resources/style.css
diff --git a/documentation/resources/tree-cleaner.png b/documentation/api/resources/tree-cleaner.png
similarity index 100%
rename from documentation/resources/tree-cleaner.png
rename to documentation/api/resources/tree-cleaner.png
diff --git a/documentation/resources/tree-hasnext.png b/documentation/api/resources/tree-hasnext.png
similarity index 100%
rename from documentation/resources/tree-hasnext.png
rename to documentation/api/resources/tree-hasnext.png
diff --git a/documentation/resources/tree-last.png b/documentation/api/resources/tree-last.png
similarity index 100%
rename from documentation/resources/tree-last.png
rename to documentation/api/resources/tree-last.png
diff --git a/documentation/resources/tree-vertical.png b/documentation/api/resources/tree-vertical.png
similarity index 100%
rename from documentation/resources/tree-vertical.png
rename to documentation/api/resources/tree-vertical.png
diff --git a/documentation/source-class-Thelia.Action.BaseAction.html b/documentation/api/source-class-Thelia.Action.BaseAction.html
similarity index 97%
rename from documentation/source-class-Thelia.Action.BaseAction.html
rename to documentation/api/source-class-Thelia.Action.BaseAction.html
index 039b2eba9..99a3d3caa 100644
--- a/documentation/source-class-Thelia.Action.BaseAction.html
+++ b/documentation/api/source-class-Thelia.Action.BaseAction.html
@@ -162,19 +162,20 @@
43: 44: 45:
-46: public function __construct(EventDispatcherInterface $dispatcher) {
-47: $this->dispatcher = $dispatcher;
-48: }
-49:
-50: 51: 52: 53:
-54: public function getDispatcher()
-55: {
-56: return $this->dispatcher;
-57: }
-58: }
+ 46: public function __construct(EventDispatcherInterface $dispatcher)
+47: {
+48: $this->dispatcher = $dispatcher;
+49: }
+50:
+51: 52: 53: 54:
+55: public function getDispatcher()
+56: {
+57: return $this->dispatcher;
+58: }
+59: }
| | | | | | |