mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-04 04:24:26 +00:00
Start cleaning up transactions controller.
This commit is contained in:
@@ -74,47 +74,47 @@ App::down(
|
||||
// forms:
|
||||
\Form::macro(
|
||||
'ffText', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffText($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffText($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffSelect', function ($name, array $list = [], $selected = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffSelect($name, $list, $selected, $options);
|
||||
return \FireflyIII\Form\Form::ffSelect($name, $list, $selected, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffInteger', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffInteger($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffInteger($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffAmount', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffAmount($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffAmount($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffBalance', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffBalance($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffBalance($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffDate', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffDate($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffDate($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffTags', function ($name, $value = null, array $options = []) {
|
||||
return \Firefly\Form\Form::ffTags($name, $value, $options);
|
||||
return \FireflyIII\Form\Form::ffTags($name, $value, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffCheckbox', function ($name, $value = 1, $checked = null, $options = []) {
|
||||
return \Firefly\Form\Form::ffCheckbox($name, $value, $checked, $options);
|
||||
return \FireflyIII\Form\Form::ffCheckbox($name, $value, $checked, $options);
|
||||
}
|
||||
);
|
||||
\Form::macro(
|
||||
'ffOptionsList', function ($type, $name) {
|
||||
return \Firefly\Form\Form::ffOptionsList($type, $name);
|
||||
return \FireflyIII\Form\Form::ffOptionsList($type, $name);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user