mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
A new form field.
This commit is contained in:
parent
aceb683d07
commit
b212753633
@ -29,6 +29,14 @@ class Form
|
|||||||
return self::ffInput('checkbox', $name, $value, $options);
|
return self::ffInput('checkbox', $name, $value, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $name
|
||||||
|
* @param null $value
|
||||||
|
* @param array $options
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
public static function ffAmount($name, $value = null, array $options = [])
|
public static function ffAmount($name, $value = null, array $options = [])
|
||||||
{
|
{
|
||||||
$options['step'] = 'any';
|
$options['step'] = 'any';
|
||||||
@ -37,6 +45,21 @@ class Form
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $name
|
||||||
|
* @param null $value
|
||||||
|
* @param array $options
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public static function ffBalance($name, $value = null, array $options = [])
|
||||||
|
{
|
||||||
|
$options['step'] = 'any';
|
||||||
|
return self::ffInput('amount', $name, $value, $options);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $name
|
* @param $name
|
||||||
* @param null $value
|
* @param null $value
|
||||||
|
Loading…
Reference in New Issue
Block a user