The component helper function will now have a single vars argument for both attributes and params.
This commit is contained in:
parent
c9fd813d0b
commit
626d8b86a1
1 changed files with 4 additions and 9 deletions
|
@ -23,24 +23,19 @@ if ( ! function_exists('component'))
|
|||
*
|
||||
* Example:
|
||||
*
|
||||
* echo component('timezones_dropdown', 'class"form-control"');
|
||||
* echo component('timezones_dropdown', ['attributes' => 'class"form-control"'], TRUE);
|
||||
*
|
||||
* @param string $component Component template file name.
|
||||
* @param string $attributes HTML attributes for the parent component element.
|
||||
* @param array $params Additional parameters for the component.
|
||||
* @param array $vars Additional parameters for the component.
|
||||
* @param bool $return Whether to return the HTML or echo it directly.
|
||||
*
|
||||
* @return string Return the HTML if the $return argument is TRUE or NULL.
|
||||
*/
|
||||
function component(string $component, string $attributes = '', array $params = [], bool $return = FALSE)
|
||||
function component(string $component, array $vars = [], bool $return = FALSE)
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = get_instance();
|
||||
|
||||
$vars = array_merge($params, [
|
||||
'attributes' => $attributes
|
||||
]);
|
||||
|
||||
return $CI->load->view('components/' . $component, $vars, $return);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue