You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
7 years ago
|
<?php
|
||
|
namespace Grav\Theme;
|
||
|
|
||
|
use Grav\Common\Grav;
|
||
|
use Grav\Common\Theme;
|
||
|
|
||
|
class Cheese extends Theme
|
||
|
{
|
||
|
public static function getSubscribedEvents()
|
||
|
{
|
||
|
return [
|
||
|
'onThemeInitialized' => ['onThemeInitialized', 0],
|
||
|
'onTwigLoader' => ['onTwigLoader', 0],
|
||
|
'onTwigInitialized' => ['onTwigInitialized', 0],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function onThemeInitialized()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// Add images to twig template paths to allow inclusion of SVG files
|
||
|
public function onTwigLoader()
|
||
|
{
|
||
|
$theme_paths = Grav::instance()['locator']->findResources('theme://images');
|
||
|
foreach(array_reverse($theme_paths) as $images_path) {
|
||
|
$this->grav['twig']->addPath($images_path, 'images');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function onTwigInitialized()
|
||
|
{
|
||
|
$twig = $this->grav['twig'];
|
||
|
|
||
|
$form_class_variables = [
|
||
|
// 'form_outer_classes' => 'form-horizontal',
|
||
|
'form_button_outer_classes' => 'button-wrapper',
|
||
|
'form_button_classes' => 'btn',
|
||
|
'form_errors_classes' => '',
|
||
|
'form_field_outer_classes' => 'form-group',
|
||
|
'form_field_outer_label_classes' => 'form-label-wrapper',
|
||
|
'form_field_label_classes' => 'form-label',
|
||
|
// 'form_field_outer_data_classes' => 'col-9',
|
||
|
'form_field_input_classes' => 'form-input',
|
||
|
'form_field_textarea_classes' => 'form-input',
|
||
|
'form_field_select_classes' => 'form-select',
|
||
|
'form_field_radio_classes' => 'form-radio',
|
||
|
'form_field_checkbox_classes' => 'form-checkbox',
|
||
|
];
|
||
|
|
||
|
$twig->twig_vars = array_merge($twig->twig_vars, $form_class_variables);
|
||
|
}
|
||
|
}
|