Initial commit
This commit is contained in:
59
local/modules/Colissimo/Form/Configuration.php
Normal file
59
local/modules/Colissimo/Form/Configuration.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?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 Colissimo\Form;
|
||||
|
||||
use Colissimo\Colissimo;
|
||||
use Colissimo\Model\Config\Base\ColissimoConfigValue;
|
||||
use Thelia\Core\Translation\Translator;
|
||||
use Thelia\Form\BaseForm;
|
||||
|
||||
/**
|
||||
* Class Configuration
|
||||
* @package Colissimo\Form
|
||||
* @author Thomas Arnaud <tarnaud@openstudio.fr>
|
||||
*/
|
||||
class Configuration extends BaseForm
|
||||
{
|
||||
|
||||
protected function buildForm()
|
||||
{
|
||||
$this->formBuilder
|
||||
->add(
|
||||
"enabled",
|
||||
"checkbox",
|
||||
array(
|
||||
"label" => "Enabled",
|
||||
"label_attr" => [
|
||||
"for" => "enabled",
|
||||
"help" => Translator::getInstance()->trans(
|
||||
'Check if you want to activate Colissimo',
|
||||
[],
|
||||
Colissimo::DOMAIN_NAME
|
||||
)
|
||||
],
|
||||
"required" => false,
|
||||
"constraints" => array(
|
||||
),
|
||||
"value" => Colissimo::getConfigValue(ColissimoConfigValue::ENABLED, 1),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string the name of you form. This name must be unique
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return "colissimo_enable";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user