Template functions Template Function

Source: Internet
Author: User

 

void smarty_function_name(array $params, object &$smarty)

 

All attributes passed to template functions from the template are contained in$ ParamsAs an associative array. Either access those values directly, e.g.$ Params ['start']Or useExtract ($ Params)To import them into the symbol table.

All attributes passed by the template to the template function are included in the parameter array.$ ParamsYou can use:$ Params ['start']You can also useExtract ($ Params)To import all values to the symbol table.

The output (return value) of the function will be substituted in place of the function tag in the template (Fetch ()Function, for example). Alternatively, the function can simply perform some other task without any output (Assign ()Function ).

The content of the function output (Return Value) replaces the position where the function name appears in the template (for example:Fetch ()Function ). At the same time, the function may only execute some background tasks without any output.

If the function needs to assign some variables to the template or use some other smarty-provided functionality, it can use the supplied$ SmartyObject to do so.

If the function needs to add variables to the template or use some functions provided by smarty, you can use$ SmartyObject implementation.

See also: register_function (), unregister_function ().

Example 16-1. Function plugin with output
Example 16-1: Output plug-in Function

<?php/* * Smarty plugin * ------------------------------------------------------------- * File:     function.eightball.php * Type:     function * Name:     eightball * Purpose:  outputs a random magic answer * ------------------------------------------------------------- */function smarty_function_eightball($params, &$smarty){    $answers = array('Yes',                     'No',                     'No way',                     'Outlook not so good',                     'Ask again soon',                     'Maybe in your reality');    $result = array_rand($answers);    return $answers[$result];}?>

Which can be used in the template:

The method of calling the template is as follows:

Question: Will we ever have time travel?Answer: {eightball}.

Example 16-2. Function plugin Without Output
Example 16-2: No output plug-in Function

<?php/* * Smarty plugin * ------------------------------------------------------------- * File:     function.assign.php * Type:     function * Name:     assign * Purpose:  assign a value to a template variable * ------------------------------------------------------------- */function smarty_function_assign($params, &$smarty){    extract($params);    if (empty($var)) {        $smarty->trigger_error("assign: missing 'var' parameter");        return;    }    if (!in_array('value', array_keys($params))) {        $smarty->trigger_error("assign: missing 'value' parameter");        return;    }    $smarty->assign($var, $value);}?>

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.