1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/15289] Use macros to generate form

PHPBB3-15289
This commit is contained in:
Rubén Calvo
2017-08-03 16:36:21 +02:00
parent 7e0845f930
commit 04a34d9f4f
4 changed files with 36 additions and 81 deletions

View File

@@ -1,71 +0,0 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\template\twig\extension;
// I will use this to generate forms in twig until there is something better
class form extends \Twig_Extension
{
/**
* Constructor
*/
public function __construct()
{
}
public function getFunctions()
{
return [
new \Twig_SimpleFunction('input', '\\phpbb\\template\\twig\\extension\\form::generate_input'),
new \Twig_SimpleFunction('adm_block', '\\phpbb\\template\\twig\\extension\\form::generate_block'),
];
}
public static function generate_input($options, $value = '')
{
$input = '<input value="' . $value . '"';
switch ($options['type'])
{
case 'radio':
break;
default:
foreach ($options as $key => $value)
{
if (in_array($key, ['lang']))
continue;
$input .= "$key=\"$value\" ";
}
break;
}
$input .= '>';
return $input;
}
public static function generate_block($name, $description = '', $content)
{
return <<<EOF
<dl>
<dt><label for="">$name</label><br /><span>$description</span></dt>
<dd>
$content
</dd>
</dl>
EOF;
}
}