change license header

This commit is contained in:
Manuel Raynaud
2014-04-18 00:02:24 +02:00
parent 0714546837
commit 5e65bf0b8a
701 changed files with 3511 additions and 10921 deletions

View File

@@ -1,24 +1,13 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* email : dev@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/>. */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Exception;

View File

@@ -1,25 +1,15 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* email : dev@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/>. */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Exception;
class ModelException extends \RuntimeException

View File

@@ -17,25 +17,29 @@ use Thelia\Model\Base\OrderStatusQuery as BaseOrderStatusQuery;
class OrderStatusQuery extends BaseOrderStatusQuery
{
public static function getNotPaidStatus() {
public static function getNotPaidStatus()
{
return OrderStatusQuery::create()->findOneByCode(OrderStatus::CODE_NOT_PAID);
}
public static function getPaidStatus() {
public static function getPaidStatus()
{
return OrderStatusQuery::create()->findOneByCode(OrderStatus::CODE_PAID);
}
public static function getProcessingStatus() {
public static function getProcessingStatus()
{
return OrderStatusQuery::create()->findOneByCode(OrderStatus::CODE_PROCESSING);
}
public static function getSentStatus() {
public static function getSentStatus()
{
return OrderStatusQuery::create()->findOneByCode(OrderStatus::CODE_SENT);
}
public static function getCancelledStatus() {
public static function getCancelledStatus()
{
return OrderStatusQuery::create()->findOneByCode(OrderStatus::CODE_CANCELED);
}
} // OrderStatusQuery

View File

@@ -1,5 +1,14 @@
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Tools;
use Propel\Runtime\ActiveQuery\Criteria;

View File

@@ -1,24 +1,13 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* email : dev@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/>. */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Tools;

View File

@@ -1,24 +1,13 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* email : dev@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/>. */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Tools;

View File

@@ -1,24 +1,13 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* email : dev@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/>. */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace Thelia\Model\Tools;