delete propel auto generated files
This commit is contained in:
@@ -57,7 +57,9 @@ class Parser implements ParserInterface
|
|||||||
$request = $this->container->get('request');
|
$request = $this->container->get('request');
|
||||||
|
|
||||||
$this->content = $request->get("test");
|
$this->content = $request->get("test");
|
||||||
|
|
||||||
|
var_dump($this->container->get("database"));
|
||||||
|
|
||||||
return $this->content;
|
return $this->content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ namespace Thelia\Core;
|
|||||||
|
|
||||||
use Symfony\Component\HttpKernel\Kernel;
|
use Symfony\Component\HttpKernel\Kernel;
|
||||||
use Symfony\Component\Config\Loader\LoaderInterface;
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
||||||
use Thelia\Core\TheliaBundle;
|
use Thelia\Core\Bundle\TheliaBundle;
|
||||||
|
use Thelia\Core\Bundle\NotORMBundle;
|
||||||
|
use Thelia\Core\Bundle\ModelBundle;
|
||||||
|
|
||||||
class Thelia extends Kernel
|
class Thelia extends Kernel
|
||||||
{
|
{
|
||||||
@@ -28,7 +30,7 @@ class Thelia extends Kernel
|
|||||||
protected function initializeContainer()
|
protected function initializeContainer()
|
||||||
{
|
{
|
||||||
$this->container = $this->buildContainer();
|
$this->container = $this->buildContainer();
|
||||||
$this->container->set('kernel', $this);
|
//$this->container->set('kernel', $this);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,6 +77,7 @@ class Thelia extends Kernel
|
|||||||
protected function buildContainer()
|
protected function buildContainer()
|
||||||
{
|
{
|
||||||
$container = $this->getContainerBuilder();
|
$container = $this->getContainerBuilder();
|
||||||
|
$container->set('kernel', $this);
|
||||||
|
|
||||||
foreach ($this->bundles as $bundle) {
|
foreach ($this->bundles as $bundle) {
|
||||||
$bundle->build($container);
|
$bundle->build($container);
|
||||||
@@ -95,7 +98,9 @@ class Thelia extends Kernel
|
|||||||
{
|
{
|
||||||
$bundles = array(
|
$bundles = array(
|
||||||
/* TheliaBundle contain all the dependency injection description */
|
/* TheliaBundle contain all the dependency injection description */
|
||||||
new TheliaBundle()
|
new TheliaBundle(),
|
||||||
|
new NotORMBundle(),
|
||||||
|
new ModelBundle()
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,95 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Thelia\Core;
|
|
||||||
|
|
||||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
||||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
||||||
use Symfony\Component\DependencyInjection\Reference;
|
|
||||||
use Symfony\Component\DependencyInjection\Scope;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* First Bundle use in Thelia
|
|
||||||
* It initialize dependency injection container.
|
|
||||||
*
|
|
||||||
* @TODO load configuration from thelia plugin
|
|
||||||
* @TODO register database configuration.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @author Manuel Raynaud <mraynaud@openstudio.fr>
|
|
||||||
*/
|
|
||||||
|
|
||||||
class TheliaBundle extends Bundle
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* Construct the depency injection builder
|
|
||||||
*
|
|
||||||
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
|
|
||||||
*/
|
|
||||||
|
|
||||||
public function build(ContainerBuilder $container)
|
|
||||||
{
|
|
||||||
$container->addScope( new Scope('request'));
|
|
||||||
|
|
||||||
$container->register('request', 'Symfony\Component\HttpFoundation\Request')
|
|
||||||
->setSynthetic(true);
|
|
||||||
|
|
||||||
$container->register('controller.default','Thelia\Controller\DefaultController');
|
|
||||||
$container->register('matcher.default','Thelia\Routing\Matcher\DefaultMatcher')
|
|
||||||
->addArgument(new Reference('controller.default'));
|
|
||||||
|
|
||||||
$container->register('matcher','Thelia\Routing\Matcher\theliaMatcherCollection')
|
|
||||||
->addMethodCall('add', array(new Reference('matcher.default'), -255))
|
|
||||||
//->addMethodCall('add','a matcher class (instance or class name)
|
|
||||||
|
|
||||||
;
|
|
||||||
|
|
||||||
$container->register('resolver', 'Symfony\Component\HttpKernel\Controller\ControllerResolver');
|
|
||||||
|
|
||||||
$container->register('parser','Thelia\Core\Template\Parser')
|
|
||||||
->addArgument(new Reference('service_container'))
|
|
||||||
;
|
|
||||||
/**
|
|
||||||
* RouterListener implements EventSubscriberInterface and listen for kernel.request event
|
|
||||||
*/
|
|
||||||
$container->register('listener.router', 'Symfony\Component\HttpKernel\EventListener\RouterListener')
|
|
||||||
->setArguments(array(new Reference('matcher')))
|
|
||||||
;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @TODO add an other listener on kernel.request for checking some params Like check if User is log in, set the language and other.
|
|
||||||
*
|
|
||||||
* $container->register()
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* $container->register('listener.request', 'Thelia\Core\EventListener\RequestListener')
|
|
||||||
* ->addArgument(new Reference('');
|
|
||||||
* ;
|
|
||||||
*/
|
|
||||||
|
|
||||||
$container->register('thelia.listener.view','Thelia\Core\EventListener\ViewListener')
|
|
||||||
->addArgument(new Reference('parser'))
|
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$container->register('dispatcher','Symfony\Component\EventDispatcher\EventDispatcher')
|
|
||||||
->addArgument(new Reference('service_container'))
|
|
||||||
->addMethodCall('addSubscriber', array(new Reference('listener.router')))
|
|
||||||
->addMethodCall('addSubscriber', array(new Reference('thelia.listener.view')))
|
|
||||||
;
|
|
||||||
|
|
||||||
$container->register('http_kernel','Thelia\Core\TheliaHttpKernel')
|
|
||||||
->addArgument(new Reference('dispatcher'))
|
|
||||||
->addArgument(new Reference('service_container'))
|
|
||||||
->addArgument(new Reference('resolver'))
|
|
||||||
;
|
|
||||||
|
|
||||||
// DEFINE DEFAULT PARAMETER LIKE
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @TODO learn about container compilation
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAccessory;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Accessory extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAddress;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Address extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAdmin;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Admin extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAdminGroup;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AdminGroup extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAdminLog;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AdminLog extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseArea;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Area extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttribute;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Attribute extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttributeAv;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AttributeAv extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttributeAvDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AttributeAvDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttributeCategory;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AttributeCategory extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttributeCombination;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AttributeCombination extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseAttributeDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class AttributeDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCategory;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Category extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCategoryDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CategoryDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCombination;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Combination extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseConfig;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Config extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseConfigDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class ConfigDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseContent;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Content extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseContentAssoc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class ContentAssoc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseContentDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class ContentDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseContentFolder;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class ContentFolder extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCountry;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Country extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCountryDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CountryDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCoupon;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Coupon extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCouponOrder;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CouponOrder extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCouponRule;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CouponRule extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCurrency;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Currency extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCustomer;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Customer extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCustomerTitle;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CustomerTitle extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseCustomerTitleDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class CustomerTitleDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseDelivzone;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Delivzone extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseDocument;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class Document extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,8 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\om\BaseDocumentDesc;
|
use Thelia\Model\Base;
|
||||||
|
|
||||||
|
class DocumentDesc extends Base
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<?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