Classes

File builder/form/field/FormFieldActionLinkList.class.php

File builder/form/field/FormFieldActionLinkList.class.php

 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 
<?php
/**
 * This class manage action links.
 *
 * @package     Builder
 * @subpackage  Form\field
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Loic ROUCHON <horn@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2015 12 14
 * @since       PHPBoost 3.0 - 2010 04 13
 * @contributor Julien BRISWALTER <j1.seth@phpboost.com>
*/

class FormFieldActionLinkList extends AbstractFormField
{
    /**
     * @var FormFieldActionLinkElement[]
     */
    private $actions;

    /**
     * @param string $id
     * @param FormFieldActionLinkElement[] $actions
     */
    public function __construct($id, array $actions)
    {
        $this->actions = $actions;
        parent::__construct($id, '', '');
    }

    /**
     * @return string The html code for the free field.
     */
    public function display()
    {
        $template = $this->get_template_to_use();

        foreach ($this->actions as $action) {
            $template->assign_block_vars('action', array(
                'C_PICTURE' => $action->has_css_class() || $action->has_img(),
                'C_IMG' => $action->has_img(),
                'TITLE' => $action->get_title(),
                'CSS_CLASS' => $action->get_css_class(),
                'U_LINK' => $action->get_url()->rel(),
                'U_IMG' => $action->has_img() ? $action->get_img()->rel() : '',
            ));
        }

        return $template;
    }

    protected function get_default_template()
    {
        return new FileTemplate('framework/builder/form/FormFieldActionLinkList.tpl');
    }
}
?>