Code presentation refactoring + adding doc

This commit is contained in:
Marc Ducobu 2015-03-18 12:33:35 +01:00
parent 92c12963a8
commit 52aa147ed7

View File

@ -1,30 +1,46 @@
<?php <?php
/*
* Chill is a software for social workers
*
* Copyright (C) 2014-2015, Champs Libres Cooperative SCRLFS,
* <http://www.champs-libres.coop>, <info@champs-libres.coop>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Chill\CustomFieldsBundle\Templating\Twig; namespace Chill\CustomFieldsBundle\Templating\Twig;
use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
use Chill\CustomFieldsBundle\Service\CustomFieldsHelper;
use Symfony\Component\DependencyInjection\Container; use Symfony\Component\DependencyInjection\Container;
use Chill\CustomFieldsBundle\Entity\CustomField; use Chill\CustomFieldsBundle\Entity\CustomField;
/** /**
* * Add the following Twig Extension :
* Add three functions to Twig: * * chill_custom_field_widget : to render the value of the custom field,
* * chill_custom_field_widget : render the value of the custom field, * * chill_custom_field_label : to render the label of the custom field,
* * chill_custom_field_label : render the label of the custom field,
* *
* @author Julien Fastré <julien.fastre@champs-libres.coop> * @author Julien Fastré <julien.fastre@champs-libres.coop>
*
*/ */
class CustomFieldRenderingTwig extends \Twig_Extension implements ContainerAwareInterface class CustomFieldRenderingTwig extends \Twig_Extension implements ContainerAwareInterface
{ {
/** /** @var Container $container The container */
*
* @var Container
*/
private $container; private $container;
/** @var array $defaultParams The default parameters */
private $defaultParams = array( private $defaultParams = array(
'label_layout' => 'ChillCustomFieldsBundle:CustomField:render_label.html.twig' 'label_layout' => 'ChillCustomFieldsBundle:CustomField:render_label.html.twig'
); );
@ -64,22 +80,21 @@ class CustomFieldRenderingTwig extends \Twig_Extension implements ContainerAware
]; ];
} }
/* (non-PHPdoc)
/* (non-PHPdoc) * @see Twig_ExtensionInterface::getName()
* @see Twig_ExtensionInterface::getName() */
*/ public function getName()
public function getName() {
{ return 'chill_custom_fields_rendering';
return 'chill_custom_fields_rendering'; }
}
/** /**
* Twig Extension that is used to render the label of a custom field.
* *
* @param CustomField|object|string $customFieldOrClass either a customField OR a customizable_entity OR the FQDN of the entity * @param CustomField|object|string $customFieldOrClass Either a customField OR a customizable_entity OR the FQDN of the entity
* @param string $slug only necessary if the first argument is NOT a CustomField instance * @param string $slug The slug ONLY necessary if the first argument is NOT a CustomField instance
* @param array $params the parameters for rendering. Currently, 'label_layout' allow to choose a different label. Default is 'ChillCustomFieldsBundle:CustomField:render_label.html.twig' * @param array $params The parameters for rendering. Currently, 'label_layout' allow to choose a different label. Default is 'ChillCustomFieldsBundle:CustomField:render_label.html.twig'
* @return string * @return string HTML representation of the custom field label.
*/ */
public function renderLabel($customFieldOrClass, $slug = null, array $params = array()) public function renderLabel($customFieldOrClass, $slug = null, array $params = array())
{ {
@ -94,17 +109,19 @@ class CustomFieldRenderingTwig extends \Twig_Extension implements ContainerAware
} }
/** /**
* Twig extension that is used to render the value of a custom field.
* *
* @param array $fields the array raw, as stored in the db * The presentation of the value is influenced by the document type.
* @param CustomField|object|string $customFieldOrClass either a customField OR a customizable_entity OR the FQDN of the entity *
* @param string $slug only necessary if the first argument is NOT a CustomField instance * @param array $fields The array raw, as stored in the db
* @return string HTML representation of the custom field, as described in the CustomFieldInterface. Is HTML safe * @param CustomField|object|string $customFieldOrClass Either a customField OR a customizable_entity OR the FQDN of the entity
* @param string $documentType The type of the document (csv, html)
* @param string $slug The slug of the custom field ONLY necessary if the first argument is NOT a CustomField instance
* @return string HTML representation of the custom field value, as described in the CustomFieldInterface. Is HTML safe
*/ */
public function renderWidget(array $fields, $customFieldOrClass, $documentType='html', $slug = null) public function renderWidget(array $fields, $customFieldOrClass, $documentType='html', $slug = null)
{ {
return $this->container->get('chill.custom_field.helper') return $this->container->get('chill.custom_field.helper')
->renderCustomField($fields, $customFieldOrClass, $documentType, $slug); ->renderCustomField($fields, $customFieldOrClass, $documentType, $slug);
} }
} }