• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP getTemplate函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中getTemplate函数的典型用法代码示例。如果您正苦于以下问题:PHP getTemplate函数的具体用法?PHP getTemplate怎么用?PHP getTemplate使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了getTemplate函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: OpcionesBusqueda

function OpcionesBusqueda($retorno)
{
    global $action;
    $ot = getTemplate("xulBusquedaAvanzada");
    if (!$ot) {
        error(__FILE__ . __LINE__, "Info: template no encontrado");
        return false;
    }
    $idprov = getSesionDato("FiltraProv");
    $idmarca = getSesionDato("FiltraMarca");
    $idcolor = getSesionDato("FiltraColor");
    $idtalla = getSesionDato("FiltraTalla");
    $idfamilia = getSesionDato("FiltraFamilia");
    $ot->fijar("action", $action);
    $ot->fijar("pagRetorno", $retorno);
    $ot->fijar("comboProveedores", genXulComboProveedores($idprov));
    $ot->fijar("comboMarcas", genXulComboMarcas($idmarca));
    $ot->fijar("comboFamilias", genXulComboMarcas($idfamilia));
    //echo q($idcolor,"color a mostrar en template");
    //echo q(intval($idcolor),"intval color a mostrar en template");
    if (intval($idcolor) >= 0) {
        $ot->fijar("comboColores", genXulComboColores($idcolor));
    } else {
        $ot->fijar("comboColores", genXulComboColores("ninguno"));
    }
    $ot->fijar("comboTallas", genXulComboTallas($idtalla));
    echo $ot->Output();
}
开发者ID:klich3,项目名称:gPOS,代码行数:28,代码来源:xulavanzado.php


示例2: GenEtiqueta

function GenEtiqueta($id, $precio = 0)
{
    global $action;
    $ot = getTemplate("Etiqueta");
    if (!$ot) {
        error(__FILE__ . __LINE__, "Info: template busqueda no encontrado");
        echo "1!";
        return false;
    }
    $oProducto = new producto();
    if (!$oProducto->Load($id)) {
        error(__FILE__ . __LINE__, "Info: producto no encontrado");
        echo "2!";
        return false;
    }
    $bar = $oProducto->getCB();
    $nombre = $oProducto->getDescripcion();
    $marca = $oProducto->getMarcaTexto();
    $nombre = $nombre . ' ' . $marca;
    $cr = "&";
    $cad = "barcode=" . $bar . $cr;
    $cad .= "format=gif" . $cr;
    $cad .= "text={$bar}" . $cr;
    $cad .= "text=" . urlencode($nombre . " - " . $oProducto->get("Referencia")) . $cr;
    $cad .= "width=" . getParametro("AnchoBarras") . $cr;
    $cad .= "height=" . getParametro("AltoBarras") . $cr;
    $urlbarcode = "modulos/barcode/barcode.php?" . $cad;
    $ot->fijar("urlbarcode", $urlbarcode);
    $ot->fijar("precio", FormatMoney($precio));
    $ot->fijar("talla", $oProducto->getTextTalla());
    $ot->fijar("color", $oProducto->getTextColor());
    $ot->fijar("referencia", $oProducto->get("Referencia"));
    $ot->fijar("nombre", $nombre);
    echo $ot->Output();
}
开发者ID:klich3,项目名称:gPOS,代码行数:35,代码来源:almacen.class.php


示例3: ask_yesno

/**
 * Prints Question on screen.
 *
 * @param string The question
 * @param string File which will be called with POST if user clicks yes
 * @param array Values which will be given to $yesfile. Format: array(variable1=>value1, variable2=>value2, variable3=>value3)
 * @param string Name of the target eg Domain or eMail address etc.
 *
 * @author Florian Lippert <[email protected]>
 */
function ask_yesno($text, $yesfile, $params = array(), $targetname = '')
{
    global $userinfo, $db, $s, $header, $footer, $lng;
    /*
            // For compatibility reasons (if $params contains a string like "field1=value1;field2=value2") this will convert it into a usable array
            if(!is_array($params))
            {
                $params_tmp=explode(';',$params);
                unset($params);
                $params=array();
                while(list(,$param_tmp)=each($params_tmp))
                {
                    $param_tmp=explode('=',$param_tmp);
                    $params[$param_tmp[0]]=$param_tmp[1];
                }
            }
    */
    $hiddenparams = '';
    if (is_array($params)) {
        foreach ($params as $field => $value) {
            $hiddenparams .= '<input type="hidden" name="' . htmlspecialchars($field) . '" value="' . htmlspecialchars($value) . '" />' . "\n";
        }
    }
    if (isset($lng['question'][$text])) {
        $text = $lng['question'][$text];
    }
    $text = strtr($text, array('%s' => $targetname));
    eval('echo "' . getTemplate('misc/question_yesno', '1') . '";');
    exit;
}
开发者ID:markc,项目名称:syscp,代码行数:40,代码来源:function.ask_yesno.php


示例4: displayPage

function displayPage($name, $html_dirs = NULL)
{
    global $CurrentPageName;
    global $CurrentPageDirectory;
    global $ActiveButton;
    // Save name as a global
    $CurrentPageName = $name;
    // Initialize directory as a global
    $CurrentPageDirectory = HOME_DIR;
    // Assume page name is active button
    $ActiveButton = $name;
    // Set default for html directories
    if (!is_array($html_dirs)) {
        $html_dirs = array(HOME_DIR);
    }
    // See if the site is offline
    if (file_exists("OFFLINE")) {
        getTemplate("offlineTemplate.php");
    } elseif (!preg_match("/^[a-z0-9\\-]*\$/i", $name)) {
        getTemplate("notfoundTemplate.php");
    } else {
        $found = false;
        foreach ($html_dirs as $dir) {
            if (file_exists("{$dir}/{$name}.html")) {
                $CurrentPageDirectory = "{$dir}/";
                $found = true;
                getTemplate("pageTemplate.php");
                break;
            }
        }
        if (!$found) {
            getTemplate("notfoundTemplate.php");
        }
    }
}
开发者ID:shrknt35,项目名称:nunit.org,代码行数:35,代码来源:display_page.php


示例5: getFormFieldOutputBool

/**
 * This file is part of the Froxlor project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 * Copyright (c) 2010 the Froxlor Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.froxlor.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]> (2003-2009)
 * @author     Froxlor team <[email protected]> (2010-)
 * @license    GPLv2 http://files.froxlor.org/misc/COPYING.txt
 * @package    Functions
 *
 */
function getFormFieldOutputBool($fieldname, $fielddata)
{
    $label = $fielddata['label'];
    $boolswitch = makeYesNo($fieldname, '1', '0', $fielddata['value']);
    eval("\$returnvalue = \"" . getTemplate("formfields/bool", true) . "\";");
    return $returnvalue;
}
开发者ID:cobrafast,项目名称:Froxlor,代码行数:23,代码来源:function.getFormFieldOutputBool.php


示例6: standard_error

/**
 * Prints one ore more errormessages on screen
 *
 * @param array Errormessages
 * @param string A %s in the errormessage will be replaced by this string.
 * @author Florian Lippert <[email protected]>
 * @author Ron Brand <[email protected]>
 */
function standard_error($errors = '', $replacer = '')
{
    global $db, $userinfo, $s, $header, $footer, $lng;
    $replacer = htmlentities($replacer);
    if (!is_array($errors)) {
        $errors = array($errors);
    }
    $error = '';
    foreach ($errors as $single_error) {
        if (isset($lng['error'][$single_error])) {
            $single_error = $lng['error'][$single_error];
            $single_error = strtr($single_error, array('%s' => $replacer));
        } else {
            $error = 'Unknown Error (' . $single_error . '): ' . $replacer;
            break;
        }
        if (empty($error)) {
            $error = $single_error;
        } else {
            $error .= ' ' . $single_error;
        }
    }
    eval("echo \"" . getTemplate('misc/error', '1') . "\";");
    exit;
}
开发者ID:HobbyNToys,项目名称:SysCP,代码行数:33,代码来源:function.standard_error.php


示例7: displayPage

function displayPage($name, $html_dirs = NULL)
{
    global $CurrentPageName;
    global $CurrentPageDirectory;
    // Save name and release in globals
    $CurrentPageName = $name;
    // Initialize directory and type in globals
    $CurrentPageDirectory = HOME_DIR;
    if (!is_array($html_dirs)) {
        $html_dirs = array(HOME_DIR);
    }
    // See if the site is offline
    if (isSiteOffline()) {
        getTemplate("offlineTemplate.php");
        return;
    }
    // Make sure the page name is valid, then
    // see whether the page exists and if so, where
    // it is and what type it is...
    if (preg_match("/^[a-z0-9\\-]*\$/i", $name)) {
        foreach ($html_dirs as $dir) {
            if (file_exists("{$dir}/{$name}.html")) {
                $CurrentPageDirectory = "{$dir}/";
                getTemplate("pageTemplate.php");
                return;
            }
        }
    }
    // If we come here, display page not found
    getTemplate("notfoundTemplate.php");
}
开发者ID:shrknt35,项目名称:nunit.org,代码行数:31,代码来源:display_page.php


示例8: addNewUser

function addNewUser()
{
    // globals
    global $DB;
    global $MySelf;
    global $MB_EMAIL;
    // Sanitize the input.
    $USERNAME = $MySelf->getUsername;
    $NEW_USER = strtolower(sanitize($_POST[username]));
    // supplied new username.
    if (!ctypeAlnum($NEW_USER)) {
        makeNotice("Only characters a-z, A-Z and 0-9 are allowed as username.", "error", "Invalid Username");
    }
    /* Password busines */
    if ($_POST[pass1] != $_POST[pass2]) {
        makeNotice("The passwords did not match!", "warning", "Passwords invalid", "index.php?action=newuser", "[retry]");
    }
    $PASSWORD = encryptPassword("{$_POST['pass1']}");
    $PASSWORD_ENC = $PASSWORD;
    /* lets see if the users (that is logged in) has sufficient
     * rights to create even the most basic miner. Level 3+ is
     * needed.
     */
    if (!$MySelf->canAddUser()) {
        makeNotice("You are not authorized to do that!", "error", "Forbidden");
    }
    // Lets prevent adding multiple users with the same name.
    if (userExists($NEW_USER) >= 1) {
        makeNotice("User already exists!", "error", "Duplicate User", "index.php?action=newuser", "[Cancel]");
    }
    // So we have an email address?
    if (empty($_POST[email])) {
        // We dont!
        makeNotice("You need to supply an email address!", "error", "Account not created");
    } else {
        // We do. Clean it.
        $NEW_EMAIL = sanitize($_POST[email]);
    }
    // Inser the new user into the database!
    $DB->query("insert into users (username, password, email, addedby, confirmed) " . "values (?, ?, ?, ?, ?)", array("{$NEW_USER}", "{$PASSWORD_ENC}", "{$NEW_EMAIL}", $MySelf->getUsername(), "1"));
    // Were we successfull?
    if ($DB->affectedRows() == 0) {
        makeNotice("Could not create user!", "error");
    } else {
        // Write the user an email.
        global $SITENAME;
        $mail = getTemplate("newuser", "email");
        $mail = str_replace('{{USERNAME}}', "{$NEW_USER}", $mail);
        $mail = str_replace('{{PASSWORD}}', "{$PASSWORD}", $mail);
        $mail = str_replace('{{SITE}}', "http://" . $_SERVER['HTTP_HOST'] . "/", $mail);
        $mail = str_replace('{{CORP}}', "{$SITENAME}", $mail);
        $mail = str_replace('{{CREATOR}}', "{$USERNAME}", $mail);
        $to = $NEW_EMAIL;
        $DOMAIN = $_SERVER['HTTP_HOST'];
        $subject = "Welcome to MiningBuddy";
        $headers = "From:" . $MB_EMAIL;
        mail($to, $subject, $mail, $headers);
        makeNotice("User added and confirmation email sent.", "notice", "Account created", "index.php?action=editusers");
    }
}
开发者ID:nuxi,项目名称:MiningBuddy,代码行数:60,代码来源:addNewUser.php


示例9: getInput

 protected function getInput()
 {
     global $expose;
     $options = array();
     $html = array();
     $class = $this->element['class'];
     //get template id
     $id = JRequest::getInt('id');
     $pretext = $this->element['pretext'] != NULL ? '<span class="pre-text hasTip" title="::' . JText::_($this->element['pre-desc'] ? $this->element['pre-desc'] : $this->description) . '">' . JText::_($this->element['pretext']) . '</span>' : '';
     $posttext = $this->element['posttext'] != NULL ? '<span class="post-text">' . JText::_($this->element['posttext']) . '</span>' : '';
     $wrapstart = '<div class="field-wrap clearfix ' . $class . '">';
     $wrapend = '</div>';
     $path = JPATH_ROOT . '/templates/' . getTemplate($id) . '/templateDetails.xml';
     if (file_exists($path)) {
         $xml = simplexml_load_file($path);
         if (isset($xml->positions[0])) {
             foreach ($xml->positions[0] as $position) {
                 $value = (string) $position['value'];
                 $label = (string) $position;
                 if (!$value) {
                     $value = $label;
                 }
                 $options[] = JHtml::_('select.option', $value, $value);
             }
         }
     }
     $html[] = JHtml::_('select.genericlist', $options, $this->name, '', 'value', 'text', $this->value, $this->id);
     return $wrapstart . $pretext . implode($html) . $posttext . $wrapend;
 }
开发者ID:pguilford,项目名称:vcomcc,代码行数:29,代码来源:positions.php


示例10: passwordRequest

 /**
  * Generate a password reset token and email a link to the user.
  *
  * @return string Standard JSON envelope
  */
 public function passwordRequest()
 {
     if (!isset($_POST['email'])) {
         return $this->error('No email address provided.', false);
     }
     $email = $_POST['email'];
     if ($email == $this->config->user->email) {
         $token = md5(rand(10000, 100000));
         $tokenUrl = sprintf('%s://%s/manage/password/reset/%s', $this->utility->getProtocol(false), $_SERVER['HTTP_HOST'], $token);
         $this->user->setAttribute('passwordToken', $token);
         $templateObj = getTemplate();
         $template = sprintf('%s/email/password-reset.php', $this->config->paths->templates);
         $body = $this->template->get($template, array('tokenUrl' => $tokenUrl));
         $emailer = new Emailer();
         $emailer->setRecipients(array($this->config->user->email));
         $emailer->setSubject('Trovebox password reset request');
         $emailer->setBody($body);
         $result = $emailer->send();
         if ($result > 0) {
             return $this->success('An email was sent to reset the password.', true);
         } else {
             $this->logger->info('Unable to send email. Confirm that your email settings are correct and the email addresses are valid.');
             return $this->error('We were unable to send a password reset email.', false);
         }
     }
     return $this->error('The email address provided does not match the registered email for this site.', false);
 }
开发者ID:gg1977,项目名称:frontend,代码行数:32,代码来源:ApiUserController.php


示例11: getFormFieldOutputText

/**
 * This file is part of the Froxlor project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 * Copyright (c) 2010 the Froxlor Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.froxlor.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]> (2003-2009)
 * @author     Froxlor team <[email protected]> (2010-)
 * @license    GPLv2 http://files.froxlor.org/misc/COPYING.txt
 * @package    Functions
 *
 */
function getFormFieldOutputText($fieldname, $fielddata)
{
    $label = $fielddata['label'];
    $value = htmlentities($fielddata['value']);
    eval("\$returnvalue = \"" . getTemplate("formfields/text", true) . "\";");
    return $returnvalue;
}
开发者ID:fritz-net,项目名称:Froxlor,代码行数:23,代码来源:function.getFormFieldOutputText.php


示例12: getFormFieldOutputString

/**
 * This file is part of the SysCP project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.syscp.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]>
 * @license    GPLv2 http://files.syscp.org/misc/COPYING.txt
 *
 * @version    $Id$
 */
function getFormFieldOutputString($fieldname, $fielddata)
{
    $label = $fielddata['label'];
    $value = htmlentities($fielddata['value']);
    eval('$returnvalue = "' . getTemplate('formfields/string', true) . '";');
    return $returnvalue;
}
开发者ID:markc,项目名称:syscp,代码行数:21,代码来源:function.getFormFieldOutputString.php


示例13: getFormFieldOutputBool

/**
 * This file is part of the SysCP project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.syscp.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]>
 * @license    GPLv2 http://files.syscp.org/misc/COPYING.txt
 *
 * @version    $Id$
 */
function getFormFieldOutputBool($fieldname, $fielddata)
{
    $label = $fielddata['label'];
    $boolswitch = makeYesNo($fieldname, '1', '0', $fielddata['value']);
    eval('$returnvalue = "' . getTemplate('formfields/bool', true) . '";');
    return $returnvalue;
}
开发者ID:markc,项目名称:syscp,代码行数:21,代码来源:function.getFormFieldOutputBool.php


示例14: standard_error

/**
 * Prints one ore more errormessages on screen
 *
 * @param array Errormessages
 * @param string A %s in the errormessage will be replaced by this string.
 * @author Florian Lippert <[email protected]>
 * @author Ron Brand <[email protected]>
 */
function standard_error($errors = '', $replacer = '')
{
    global $userinfo, $s, $header, $footer, $lng, $theme;
    $_SESSION['requestData'] = $_POST;
    $replacer = htmlentities($replacer);
    if (!is_array($errors)) {
        $errors = array($errors);
    }
    $link = '';
    if (isset($_SERVER['HTTP_REFERER']) && strpos($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST']) !== false) {
        $link = '<a href="' . htmlentities($_SERVER['HTTP_REFERER']) . '">' . $lng['panel']['back'] . '</a>';
    }
    $error = '';
    foreach ($errors as $single_error) {
        if (isset($lng['error'][$single_error])) {
            $single_error = $lng['error'][$single_error];
            $single_error = strtr($single_error, array('%s' => $replacer));
        } else {
            $error = 'Unknown Error (' . $single_error . '): ' . $replacer;
            break;
        }
        if (empty($error)) {
            $error = $single_error;
        } else {
            $error .= ' ' . $single_error;
        }
    }
    eval("echo \"" . getTemplate('misc/error', '1') . "\";");
    exit;
}
开发者ID:fritz-net,项目名称:Froxlor,代码行数:38,代码来源:function.standard_error.php


示例15: getFormFieldOutputString

/**
 * This file is part of the Froxlor project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 * Copyright (c) 2010 the Froxlor Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.froxlor.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]> (2003-2009)
 * @author     Froxlor team <[email protected]> (2010-)
 * @license    GPLv2 http://files.froxlor.org/misc/COPYING.txt
 * @package    Functions
 *
 */
function getFormFieldOutputString($fieldname, $fielddata, $do_show = true)
{
    $label = $fielddata['label'];
    $value = htmlentities($fielddata['value']);
    eval("\$returnvalue = \"" . getTemplate("formfields/string", true) . "\";");
    return $returnvalue;
}
开发者ID:hypernics,项目名称:Froxlor,代码行数:23,代码来源:function.getFormFieldOutputString.php


示例16: display

 public static function display()
 {
     $params = array();
     $params['body'] = 'dashboard.php';
     $params['title'] = 'Dashboard page';
     $params['message'] = 'Details to show the user about their projects';
     getTemplate()->display('baseplate.php', $params);
 }
开发者ID:Jpsstack,项目名称:epiphany,代码行数:8,代码来源:dashboard.class.php


示例17: getTemplateReContraTocho

function getTemplateReContraTocho($pagina, $cajita)
{
    $html = getTemplate($pagina);
    foreach ($cajita as $remplazar => $mensaje) {
        $html = str_replace($remplazar, $mensaje, $html);
    }
    return $html;
}
开发者ID:FabricioRojas,项目名称:php,代码行数:8,代码来源:medotos.php


示例18: getInput

 protected function getInput()
 {
     global $expose;
     $html = array();
     $options = array();
     //get template id
     $id = JRequest::getInt('id');
     // Initialize some field attributes.
     $filter = '\\.png$|\\.gif$|\\.jpg$|\\.bmp$|\\.jpeg$';
     $exclude = (string) $this->element['exclude'];
     $stripExt = (string) $this->element['stripext'];
     $hideNone = (string) $this->element['hide_none'];
     //$hideDefault	= (string) $this->element['hide_default'];
     $class = $this->element['class'];
     $attr = $this->element['size'] ? ' size="' . (int) $this->element['size'] . '"' : '';
     $pretext = $this->element['pretext'] != NULL ? '<span class="pre-text hasTip" title="::' . JText::_($this->element['pre-desc'] ? $this->element['pre-desc'] : $this->description) . '">' . JText::_($this->element['pretext']) . '</span>' : '';
     $posttext = $this->element['posttext'] != NULL ? '<span class="post-text">' . JText::_($this->element['posttext']) . '</span>' : '';
     $wrapstart = '<div class="field-wrap patterns clearfix ' . $class . '">';
     $wrapend = '</div>';
     // Get the path in which to search for file options.
     $directory = (string) $this->element['directory'];
     $path = JPATH_ROOT . '/templates/' . getTemplate($id) . '/images/' . $directory;
     // Prepend some default options based on field attributes.
     if (!$hideNone) {
         $options[] = JHtml::_('select.option', '-1', JText::alt('JOPTION_DO_NOT_USE', preg_replace('/[^a-zA-Z0-9_\\-]/', '_', $this->fieldname)));
     }
     //		if (!$hideDefault) {
     //			$options[] = JHtml::_('select.option', '', JText::alt('JOPTION_USE_DEFAULT', preg_replace('/[^a-zA-Z0-9_\-]/', '_', $this->fieldname)));
     //		}
     // Get a list of files in the search path with the given filter.
     $files = JFolder::files($path, $filter);
     // Build the options list from the list of files.
     if (is_array($files)) {
         foreach ($files as $file) {
             // Check to see if the file is in the exclude mask.
             if ($exclude) {
                 if (preg_match(chr(1) . $exclude . chr(1), $file)) {
                     continue;
                 }
             }
             // If the extension is to be stripped, do it.
             if ($stripExt) {
                 $file = JFile::stripExt($file);
             }
             $options[] = JHtml::_('select.option', $file, $file);
         }
     }
     // Create a read-only list (no name) with a hidden input to store the value.
     if ((string) $this->element['readonly'] == 'true') {
         $html[] = JHtml::_('select.genericlist', $options, '', trim($attr), 'value', 'text', $this->value, $this->id);
         $html[] = '<input type="hidden" name="' . $this->name . '" value="' . $this->value . '"/>';
     } else {
         $html[] = JHtml::_('select.genericlist', $options, $this->name, trim($attr), 'value', 'text', $this->value, $this->id);
     }
     return $wrapstart . $pretext . implode($html) . $posttext . $wrapend;
 }
开发者ID:pguilford,项目名称:vcomcc,代码行数:56,代码来源:imagelist.php


示例19: templateNewTicket

function templateNewTicket($id, $user)
{
    $b = bilheteGet($id);
    if ($b['acontecimento'] == 'E') {
        $e = eventosGet($b['id_entidade']);
    } else {
        $e = provaGet($b['id_entidade']);
    }
    return getTemplate("newticket", array("NAME" => $user['nome'], "USER" => $user['email'], "TIPO" => $b['tipo'] == 'C' ? 'compra' : 'reserva', "ACONTECIMENTO" => $b['acontecimento'] == 'E' ? 'Evento' : 'Prova', "EVENTO" => $e['designacao'], "LOCAL" => $e['local_nome'], "PRECO" => $b['preco'], "QUANTIDADE" => $b['quantidade'], "TOTAL" => $b['preco'] * $b['quantidade'], "ID" => $id, "CHECKSUM_ACCEPT" => md5("ACCEPT" . $id), "CHECKSUM_REJECT" => md5("REJECT" . $id)));
}
开发者ID:ricain59,项目名称:fortaff,代码行数:10,代码来源:template.php


示例20: getFormFieldOutputHidden

/**
 * This file is part of the SysCP project.
 * Copyright (c) 2003-2009 the SysCP Team (see authors).
 *
 * For the full copyright and license information, please view the COPYING
 * file that was distributed with this source code. You can also view the
 * COPYING file online at http://files.syscp.org/misc/COPYING.txt
 *
 * @copyright  (c) the authors
 * @author     Florian Lippert <[email protected]>
 * @license    GPLv2 http://files.syscp.org/misc/COPYING.txt
 *
 * @version    $Id$
 */
function getFormFieldOutputHidden($fieldname, $fielddata)
{
    $returnvalue = '<input type="hidden" name="' . $fieldname . '" value="' . htmlentities($fielddata['value']) . '" />';
    if (isset($fielddata['label']) && $fielddata['label'] != '') {
        $label = $fielddata['label'];
        $value = htmlentities($fielddata['value']);
        eval('$returnvalue .= "' . getTemplate('formfields/hidden', true) . '";');
    }
    return $returnvalue;
}
开发者ID:markc,项目名称:syscp,代码行数:24,代码来源:function.getFormFieldOutputHidden.php



注:本文中的getTemplate函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP getTemplateIcon函数代码示例发布时间:2022-05-15
下一篇:
PHP getTempFolder函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap