add Propel generated files
This commit is contained in:
@@ -10,6 +10,8 @@ if (!isset($env)) {
|
||||
* Functions needed for Thelia bootstrap
|
||||
*/
|
||||
define('THELIA_ROOT', __DIR__ .'/../');
|
||||
define('THELIA_CONF_DIR', THELIA_ROOT . '/local/config');
|
||||
define('THELIA_PLUGIN_DIR', THELIA_ROOT . '/local/plugins');
|
||||
$loader = require __DIR__ . '/autoload.php';
|
||||
|
||||
|
||||
|
||||
44
core/lib/Thelia/Core/Bundle/PropelBundle.php
Normal file
44
core/lib/Thelia/Core/Bundle/PropelBundle.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
namespace Thelia\Core\Bundle;
|
||||
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\DependencyInjection\Reference;
|
||||
|
||||
use \Propel;
|
||||
|
||||
class PropelBundle extends Bundle
|
||||
{
|
||||
/**
|
||||
*
|
||||
* Construct the depency injection builder
|
||||
*
|
||||
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
|
||||
*/
|
||||
|
||||
public function build(ContainerBuilder $container)
|
||||
{
|
||||
Propel::init(THELIA_CONF_DIR . "/config_thelia.php");
|
||||
}
|
||||
}
|
||||
@@ -116,6 +116,7 @@ class Thelia extends Kernel
|
||||
$bundles = array(
|
||||
/* TheliaBundle contain all the dependency injection description */
|
||||
new Bundle\TheliaBundle(),
|
||||
new Bundle\PropelBundle()
|
||||
);
|
||||
|
||||
/**
|
||||
|
||||
21
core/lib/Thelia/Model/Accessory.php
Normal file
21
core/lib/Thelia/Model/Accessory.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAccessory;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'accessory' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Accessory extends BaseAccessory
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AccessoryPeer.php
Normal file
21
core/lib/Thelia/Model/AccessoryPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAccessoryPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'accessory' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AccessoryPeer extends BaseAccessoryPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AccessoryQuery.php
Normal file
21
core/lib/Thelia/Model/AccessoryQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAccessoryQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'accessory' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AccessoryQuery extends BaseAccessoryQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Address.php
Normal file
21
core/lib/Thelia/Model/Address.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAddress;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'address' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Address extends BaseAddress
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AddressPeer.php
Normal file
21
core/lib/Thelia/Model/AddressPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAddressPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'address' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AddressPeer extends BaseAddressPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AddressQuery.php
Normal file
21
core/lib/Thelia/Model/AddressQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAddressQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'address' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AddressQuery extends BaseAddressQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Admin.php
Normal file
21
core/lib/Thelia/Model/Admin.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdmin;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'admin' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Admin extends BaseAdmin
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminGroup.php
Normal file
21
core/lib/Thelia/Model/AdminGroup.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminGroup;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'admin_group' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminGroup extends BaseAdminGroup
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminGroupPeer.php
Normal file
21
core/lib/Thelia/Model/AdminGroupPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminGroupPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin_group' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminGroupPeer extends BaseAdminGroupPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminGroupQuery.php
Normal file
21
core/lib/Thelia/Model/AdminGroupQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminGroupQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin_group' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminGroupQuery extends BaseAdminGroupQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminLog.php
Normal file
21
core/lib/Thelia/Model/AdminLog.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminLog;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'admin_log' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminLog extends BaseAdminLog
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminLogPeer.php
Normal file
21
core/lib/Thelia/Model/AdminLogPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminLogPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin_log' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminLogPeer extends BaseAdminLogPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminLogQuery.php
Normal file
21
core/lib/Thelia/Model/AdminLogQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminLogQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin_log' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminLogQuery extends BaseAdminLogQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminPeer.php
Normal file
21
core/lib/Thelia/Model/AdminPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminPeer extends BaseAdminPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AdminQuery.php
Normal file
21
core/lib/Thelia/Model/AdminQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAdminQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'admin' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AdminQuery extends BaseAdminQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Area.php
Normal file
21
core/lib/Thelia/Model/Area.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseArea;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'area' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Area extends BaseArea
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AreaPeer.php
Normal file
21
core/lib/Thelia/Model/AreaPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAreaPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'area' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AreaPeer extends BaseAreaPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AreaQuery.php
Normal file
21
core/lib/Thelia/Model/AreaQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAreaQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'area' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AreaQuery extends BaseAreaQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Attribute.php
Normal file
21
core/lib/Thelia/Model/Attribute.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttribute;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Attribute extends BaseAttribute
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAv.php
Normal file
21
core/lib/Thelia/Model/AttributeAv.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAv;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute_av' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAv extends BaseAttributeAv
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAvDesc.php
Normal file
21
core/lib/Thelia/Model/AttributeAvDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAvDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute_av_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAvDesc extends BaseAttributeAvDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAvDescPeer.php
Normal file
21
core/lib/Thelia/Model/AttributeAvDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAvDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_av_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAvDescPeer extends BaseAttributeAvDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAvDescQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeAvDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAvDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_av_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAvDescQuery extends BaseAttributeAvDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAvPeer.php
Normal file
21
core/lib/Thelia/Model/AttributeAvPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAvPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_av' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAvPeer extends BaseAttributeAvPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeAvQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeAvQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeAvQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_av' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeAvQuery extends BaseAttributeAvQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCategory.php
Normal file
21
core/lib/Thelia/Model/AttributeCategory.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCategory;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute_category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCategory extends BaseAttributeCategory
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCategoryPeer.php
Normal file
21
core/lib/Thelia/Model/AttributeCategoryPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCategoryPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCategoryPeer extends BaseAttributeCategoryPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCategoryQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeCategoryQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCategoryQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCategoryQuery extends BaseAttributeCategoryQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCombination.php
Normal file
21
core/lib/Thelia/Model/AttributeCombination.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCombination;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute_combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCombination extends BaseAttributeCombination
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCombinationPeer.php
Normal file
21
core/lib/Thelia/Model/AttributeCombinationPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCombinationPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCombinationPeer extends BaseAttributeCombinationPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeCombinationQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeCombinationQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeCombinationQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeCombinationQuery extends BaseAttributeCombinationQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeDesc.php
Normal file
21
core/lib/Thelia/Model/AttributeDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'attribute_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeDesc extends BaseAttributeDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeDescPeer.php
Normal file
21
core/lib/Thelia/Model/AttributeDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeDescPeer extends BaseAttributeDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeDescQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeDescQuery extends BaseAttributeDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributePeer.php
Normal file
21
core/lib/Thelia/Model/AttributePeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributePeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributePeer extends BaseAttributePeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/AttributeQuery.php
Normal file
21
core/lib/Thelia/Model/AttributeQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseAttributeQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'attribute' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class AttributeQuery extends BaseAttributeQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Category.php
Normal file
21
core/lib/Thelia/Model/Category.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategory;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Category extends BaseCategory
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CategoryDesc.php
Normal file
21
core/lib/Thelia/Model/CategoryDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategoryDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'category_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CategoryDesc extends BaseCategoryDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CategoryDescPeer.php
Normal file
21
core/lib/Thelia/Model/CategoryDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategoryDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'category_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CategoryDescPeer extends BaseCategoryDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CategoryDescQuery.php
Normal file
21
core/lib/Thelia/Model/CategoryDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategoryDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'category_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CategoryDescQuery extends BaseCategoryDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CategoryPeer.php
Normal file
21
core/lib/Thelia/Model/CategoryPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategoryPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CategoryPeer extends BaseCategoryPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CategoryQuery.php
Normal file
21
core/lib/Thelia/Model/CategoryQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCategoryQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'category' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CategoryQuery extends BaseCategoryQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Combination.php
Normal file
21
core/lib/Thelia/Model/Combination.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCombination;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Combination extends BaseCombination
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CombinationPeer.php
Normal file
21
core/lib/Thelia/Model/CombinationPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCombinationPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CombinationPeer extends BaseCombinationPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CombinationQuery.php
Normal file
21
core/lib/Thelia/Model/CombinationQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCombinationQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'combination' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CombinationQuery extends BaseCombinationQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Config.php
Normal file
21
core/lib/Thelia/Model/Config.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfig;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'config' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Config extends BaseConfig
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ConfigDesc.php
Normal file
21
core/lib/Thelia/Model/ConfigDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfigDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'config_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ConfigDesc extends BaseConfigDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ConfigDescPeer.php
Normal file
21
core/lib/Thelia/Model/ConfigDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfigDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'config_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ConfigDescPeer extends BaseConfigDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ConfigDescQuery.php
Normal file
21
core/lib/Thelia/Model/ConfigDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfigDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'config_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ConfigDescQuery extends BaseConfigDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ConfigPeer.php
Normal file
21
core/lib/Thelia/Model/ConfigPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfigPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'config' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ConfigPeer extends BaseConfigPeer
|
||||
{
|
||||
}
|
||||
27
core/lib/Thelia/Model/ConfigQuery.php
Normal file
27
core/lib/Thelia/Model/ConfigQuery.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseConfigQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'config' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ConfigQuery extends BaseConfigQuery
|
||||
{
|
||||
public static function read($search, $default)
|
||||
{
|
||||
$value = self::create()->findOneByName($search);
|
||||
|
||||
return $value ? $value->getValue() : $default;
|
||||
}
|
||||
}
|
||||
21
core/lib/Thelia/Model/Content.php
Normal file
21
core/lib/Thelia/Model/Content.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContent;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'content' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Content extends BaseContent
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentAssoc.php
Normal file
21
core/lib/Thelia/Model/ContentAssoc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentAssoc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'content_assoc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentAssoc extends BaseContentAssoc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentAssocPeer.php
Normal file
21
core/lib/Thelia/Model/ContentAssocPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentAssocPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_assoc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentAssocPeer extends BaseContentAssocPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentAssocQuery.php
Normal file
21
core/lib/Thelia/Model/ContentAssocQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentAssocQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_assoc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentAssocQuery extends BaseContentAssocQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentDesc.php
Normal file
21
core/lib/Thelia/Model/ContentDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'content_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentDesc extends BaseContentDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentDescPeer.php
Normal file
21
core/lib/Thelia/Model/ContentDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentDescPeer extends BaseContentDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentDescQuery.php
Normal file
21
core/lib/Thelia/Model/ContentDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentDescQuery extends BaseContentDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentFolder.php
Normal file
21
core/lib/Thelia/Model/ContentFolder.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentFolder;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'content_folder' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentFolder extends BaseContentFolder
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentFolderPeer.php
Normal file
21
core/lib/Thelia/Model/ContentFolderPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentFolderPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_folder' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentFolderPeer extends BaseContentFolderPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentFolderQuery.php
Normal file
21
core/lib/Thelia/Model/ContentFolderQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentFolderQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content_folder' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentFolderQuery extends BaseContentFolderQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentPeer.php
Normal file
21
core/lib/Thelia/Model/ContentPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentPeer extends BaseContentPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/ContentQuery.php
Normal file
21
core/lib/Thelia/Model/ContentQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseContentQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'content' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class ContentQuery extends BaseContentQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Country.php
Normal file
21
core/lib/Thelia/Model/Country.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountry;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'country' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Country extends BaseCountry
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CountryDesc.php
Normal file
21
core/lib/Thelia/Model/CountryDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountryDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'country_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CountryDesc extends BaseCountryDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CountryDescPeer.php
Normal file
21
core/lib/Thelia/Model/CountryDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountryDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'country_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CountryDescPeer extends BaseCountryDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CountryDescQuery.php
Normal file
21
core/lib/Thelia/Model/CountryDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountryDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'country_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CountryDescQuery extends BaseCountryDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CountryPeer.php
Normal file
21
core/lib/Thelia/Model/CountryPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountryPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'country' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CountryPeer extends BaseCountryPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CountryQuery.php
Normal file
21
core/lib/Thelia/Model/CountryQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCountryQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'country' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CountryQuery extends BaseCountryQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Coupon.php
Normal file
21
core/lib/Thelia/Model/Coupon.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCoupon;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'coupon' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Coupon extends BaseCoupon
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponOrder.php
Normal file
21
core/lib/Thelia/Model/CouponOrder.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponOrder;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'coupon_order' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponOrder extends BaseCouponOrder
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponOrderPeer.php
Normal file
21
core/lib/Thelia/Model/CouponOrderPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponOrderPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon_order' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponOrderPeer extends BaseCouponOrderPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponOrderQuery.php
Normal file
21
core/lib/Thelia/Model/CouponOrderQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponOrderQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon_order' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponOrderQuery extends BaseCouponOrderQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponPeer.php
Normal file
21
core/lib/Thelia/Model/CouponPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponPeer extends BaseCouponPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponQuery.php
Normal file
21
core/lib/Thelia/Model/CouponQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponQuery extends BaseCouponQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponRule.php
Normal file
21
core/lib/Thelia/Model/CouponRule.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponRule;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'coupon_rule' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponRule extends BaseCouponRule
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponRulePeer.php
Normal file
21
core/lib/Thelia/Model/CouponRulePeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponRulePeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon_rule' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponRulePeer extends BaseCouponRulePeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CouponRuleQuery.php
Normal file
21
core/lib/Thelia/Model/CouponRuleQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCouponRuleQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'coupon_rule' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CouponRuleQuery extends BaseCouponRuleQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Currency.php
Normal file
21
core/lib/Thelia/Model/Currency.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCurrency;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'currency' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Currency extends BaseCurrency
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CurrencyPeer.php
Normal file
21
core/lib/Thelia/Model/CurrencyPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCurrencyPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'currency' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CurrencyPeer extends BaseCurrencyPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CurrencyQuery.php
Normal file
21
core/lib/Thelia/Model/CurrencyQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCurrencyQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'currency' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CurrencyQuery extends BaseCurrencyQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Customer.php
Normal file
21
core/lib/Thelia/Model/Customer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'customer' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Customer extends BaseCustomer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerPeer.php
Normal file
21
core/lib/Thelia/Model/CustomerPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerPeer extends BaseCustomerPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerQuery.php
Normal file
21
core/lib/Thelia/Model/CustomerQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerQuery extends BaseCustomerQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitle.php
Normal file
21
core/lib/Thelia/Model/CustomerTitle.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitle;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'customer_title' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitle extends BaseCustomerTitle
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitleDesc.php
Normal file
21
core/lib/Thelia/Model/CustomerTitleDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitleDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'customer_title_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitleDesc extends BaseCustomerTitleDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitleDescPeer.php
Normal file
21
core/lib/Thelia/Model/CustomerTitleDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitleDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer_title_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitleDescPeer extends BaseCustomerTitleDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitleDescQuery.php
Normal file
21
core/lib/Thelia/Model/CustomerTitleDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitleDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer_title_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitleDescQuery extends BaseCustomerTitleDescQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitlePeer.php
Normal file
21
core/lib/Thelia/Model/CustomerTitlePeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitlePeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer_title' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitlePeer extends BaseCustomerTitlePeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/CustomerTitleQuery.php
Normal file
21
core/lib/Thelia/Model/CustomerTitleQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseCustomerTitleQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'customer_title' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class CustomerTitleQuery extends BaseCustomerTitleQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Delivzone.php
Normal file
21
core/lib/Thelia/Model/Delivzone.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDelivzone;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'delivzone' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Delivzone extends BaseDelivzone
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/DelivzonePeer.php
Normal file
21
core/lib/Thelia/Model/DelivzonePeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDelivzonePeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'delivzone' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class DelivzonePeer extends BaseDelivzonePeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/DelivzoneQuery.php
Normal file
21
core/lib/Thelia/Model/DelivzoneQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDelivzoneQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'delivzone' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class DelivzoneQuery extends BaseDelivzoneQuery
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/Document.php
Normal file
21
core/lib/Thelia/Model/Document.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDocument;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'document' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class Document extends BaseDocument
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/DocumentDesc.php
Normal file
21
core/lib/Thelia/Model/DocumentDesc.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDocumentDesc;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for representing a row from the 'document_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class DocumentDesc extends BaseDocumentDesc
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/DocumentDescPeer.php
Normal file
21
core/lib/Thelia/Model/DocumentDescPeer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDocumentDescPeer;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'document_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class DocumentDescPeer extends BaseDocumentDescPeer
|
||||
{
|
||||
}
|
||||
21
core/lib/Thelia/Model/DocumentDescQuery.php
Normal file
21
core/lib/Thelia/Model/DocumentDescQuery.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Thelia\Model;
|
||||
|
||||
use Thelia\Model\om\BaseDocumentDescQuery;
|
||||
|
||||
|
||||
/**
|
||||
* Skeleton subclass for performing query and update operations on the 'document_desc' table.
|
||||
*
|
||||
*
|
||||
*
|
||||
* You should add additional methods to this class to meet the
|
||||
* application requirements. This class will only be generated as
|
||||
* long as it does not already exist in the output directory.
|
||||
*
|
||||
* @package propel.generator.Thelia.Model
|
||||
*/
|
||||
class DocumentDescQuery extends BaseDocumentDescQuery
|
||||
{
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user