Skip to content

Commit

Permalink
Changing alignment
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Horrigan <dan@dhorrigan.com>
  • Loading branch information
dhrrgn committed Nov 14, 2011
1 parent d535b70 commit 788bbc9
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions classes/twig/fuel/extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ public function getName()
public function getFunctions()
{
return array(
'url' => new Twig_Function_Method($this, 'url'),
'base_url' => new Twig_Function_Function('Uri::base'),
'uri_segment' => new Twig_Function_Function('Uri::segment'),
'uri_segments' => new Twig_Function_Function('Uri::segments'),
'config' => new Twig_Function_Function('Config::get'),
'url' => new Twig_Function_Method($this, 'url'),
'base_url' => new Twig_Function_Function('Uri::base'),
'uri_segment' => new Twig_Function_Function('Uri::segment'),
'uri_segments' => new Twig_Function_Function('Uri::segments'),
'config' => new Twig_Function_Function('Config::get'),

'form_open' => new Twig_Function_Function('Form::open'),
'form_close' => new Twig_Function_Function('Form::close'),
'form_input' => new Twig_Function_Function('Form::input'),
'form_open' => new Twig_Function_Function('Form::open'),
'form_close' => new Twig_Function_Function('Form::close'),
'form_input' => new Twig_Function_Function('Form::input'),
'form_password' => new Twig_Function_Function('Form::password'),
'form_hidden' => new Twig_Function_Function('Form::hidden'),
'form_radio' => new Twig_Function_Function('Form::radio'),
'form_hidden' => new Twig_Function_Function('Form::hidden'),
'form_radio' => new Twig_Function_Function('Form::radio'),
'form_checkbox' => new Twig_Function_Function('Form::checkbox'),
'form_textarea' => new Twig_Function_Function('Form::textarea'),
'form_file' => new Twig_Function_Function('Form::file'),
'form_button' => new Twig_Function_Function('Form::button'),
'form_reset' => new Twig_Function_Function('Form::reset'),
'form_submit' => new Twig_Function_Function('Form::submit'),
'form_select' => new Twig_Function_Function('Form::select'),
'form_label' => new Twig_Function_Function('Form::label'),
'form_val' => new Twig_Function_Function('Input::param'),
'form_file' => new Twig_Function_Function('Form::file'),
'form_button' => new Twig_Function_Function('Form::button'),
'form_reset' => new Twig_Function_Function('Form::reset'),
'form_submit' => new Twig_Function_Function('Form::submit'),
'form_select' => new Twig_Function_Function('Form::select'),
'form_label' => new Twig_Function_Function('Form::label'),
'form_val' => new Twig_Function_Function('Input::param'),
);
}

Expand Down

0 comments on commit 788bbc9

Please sign in to comment.