update specific custom helper table from options
Parameters
- $context
- prepared context
- $options
- input options
- $tname
- helper table name
Returns
array<string,array|string|integer>
context with generated helper table
Expect
array() when input array(), array()
array('flags' => array('exhlp' => 1), 'helpers' => array('abc' => 1)) when input array('flags' => array('exhlp' => 1)), array('helpers' => array('abc'))
array('error' => array('You provide a custom helper named as \'abc\' in options[\'helpers\'], but the function abc() is not defined!'), 'flags' => array('exhlp' => 0)) when input array('error' => array(), 'flags' => array('exhlp' => 0)), array('helpers' => array('abc'))
array('flags' => array('exhlp' => 1), 'helpers' => array('\LightnCandy\Runtime::raw' => '\LightnCandy\Runtime::raw')) when input array('flags' => array('exhlp' => 1), 'helpers' => array()), array('helpers' => array('\LightnCandy\Runtime::raw'))
array('flags' => array('exhlp' => 1), 'helpers' => array('test' => '\LightnCandy\Runtime::raw')) when input array('flags' => array('exhlp' => 1), 'helpers' => array()), array('helpers' => array('test' => '\LightnCandy\Runtime::raw'))