code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
<?php /** * Description of TableManager * * @author Magno */ class TableStringManager { private $fileString; private $tablesMeta; function __construct($fileString) { $this->fileString = $fileString; $this->tablesMeta = null; } public function getTables(){ $stringTemp = $this->fileString; $tablesString = array(); $index = 0; while ($index < strlen($this->fileString)) { $indIni = stripos($stringTemp, "create"); $indFim = stripos($stringTemp, ";"); if($indIni === FALSE || $indFim === FALSE) break; $tablesString[] = substr($stringTemp, $indIni, $indFim-$indIni); $stringTemp = substr($stringTemp, $indFim+1); $index = $indFim+2; } return $tablesString; } public function generateTableMeta($tableString){ $tbMeta = new TableMeta($this->getTableName($tableString)); $attString = $this->getAttributesString($tableString); $atStManager = new AttributeStringManager($attString); $tbMeta->setAttributes($atStManager->generateAllAttributeMeta()); return $tbMeta; } public function generateAllTableMeta(){ $tablesString = $this->getTables(); $tablesMeta = array(); for ($x = 0; $x < count($tablesString); $x++) { $tbMeta = $this->generateTableMeta($tablesString[$x]); $tablesMeta[$tbMeta->getName()] = $tbMeta; } for ($i = 0; $i < count($tablesString); $i++) { $tbMeta = $this->generateTableMeta($tablesString[$i]); $fkManager = new FKReferenceStringManager($this->getAttributesString($tablesString[$i]), $tablesMeta[$tbMeta->getName()], $tablesMeta); $tablesMeta[$tbMeta->getName()]->setFKReferences($fkManager->generateAllFKMeta()); } $this->tablesMeta = $tablesMeta; return $tablesMeta; } public function getTableName($tableString){ $stringTemp = $tableString; if( stripos($stringTemp, "if") === FALSE ){ $indIni = stripos($stringTemp, "table")+strlen("table"); }else{ $indIni = stripos($stringTemp, "exists")+strlen("exists"); } $stringTemp = substr($stringTemp, $indIni); $indName = Util::searchPosWordInBlankSpace($stringTemp); if($indName < 0) return ""; $stringTemp = substr($stringTemp, $indName); if(stripos($stringTemp, ".")){ $stringTemp = substr($stringTemp, stripos($stringTemp, ".")+1); } $indFinal = stripos($stringTemp, "("); $stringTemp = substr($stringTemp, 0, $indFinal); return str_replace(" ", "", $stringTemp); } public function getAttributesString ($tableString){ $stringTemp = $tableString; $stringReverse = strrev($stringTemp); $indIni = stripos($stringTemp, "(") + 1; $indFim = strlen($stringTemp) - stripos($stringReverse, ")") - 1; return ltrim(substr($stringTemp, $indIni, $indFim-$indIni)); } public static function findByName($tables, $name){ for ($i = 0; $i < count($tables); $i++) { $attName = strtolower(trim($tables[$i]->getName())); $name = strtolower(trim($name)); if(strcmp($attName, $name) == 0) return $tables[$i]; } return null; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/manager/TableStringManager.class.php
PHP
asf20
3,566
<?php #if (!function_exists('__autoload')) { function loadClass($class) { if (strpos($class,'Generator')) { require_once("generator/".$class.".class.php"); }else if (strpos($class,'Manager')) { require_once("manager/".$class.".class.php"); }else if (strpos($class,'ction')) { require_once("action/".$class.".class.php"); }else if (strpos($class,'Meta')) { require_once("meta/".$class.".class.php"); } } #} spl_autoload_register('loadClass'); ?>
0a1b2c3d4e5
trunk/BloumGenerator/autoload.php
PHP
asf20
577
<?php header('Content-type: text/html; charset=utf-8'); include_once 'autoload.php'; include_once 'include/php/Constantes.class.php'; include_once 'include/php/Util.class.php'; $action = new SystemAction(); $action->run(); ?>
0a1b2c3d4e5
trunk/BloumGenerator/bloumMvc.php
PHP
asf20
238
<?php /** * jsmin.php - PHP implementation of Douglas Crockford's JSMin. * * This is pretty much a direct port of jsmin.c to PHP with just a few * PHP-specific performance tweaks. Also, whereas jsmin.c reads from stdin and * outputs to stdout, this library accepts a string as input and returns another * string as output. * * PHP 5 or higher is required. * * Permission is hereby granted to use this version of the library under the * same terms as jsmin.c, which has the following license: * * -- * Copyright (c) 2002 Douglas Crockford (www.crockford.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * The Software shall be used for Good, not Evil. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * -- * * @package JSMin * @author Ryan Grove <ryan@wonko.com> * @copyright 2002 Douglas Crockford <douglas@crockford.com> (jsmin.c) * @copyright 2008 Ryan Grove <ryan@wonko.com> (PHP port) * @license http://opensource.org/licenses/mit-license.php MIT License * @version 1.1.1 (2008-03-02) * @link http://code.google.com/p/jsmin-php/ */ class JSMin { const ORD_LF = 10; const ORD_SPACE = 32; protected $a = ''; protected $b = ''; protected $input = ''; protected $inputIndex = 0; protected $inputLength = 0; protected $lookAhead = null; protected $output = ''; // -- Public Static Methods -------------------------------------------------- public static function minify($js) { $jsmin = new JSMin($js); return $jsmin->min(); } // -- Public Instance Methods ------------------------------------------------ public function __construct($input) { $this->input = str_replace("\r\n", "\n", $input); $this->inputLength = strlen($this->input); } // -- Protected Instance Methods --------------------------------------------- protected function action($d) { switch($d) { case 1: $this->output .= $this->a; case 2: $this->a = $this->b; if ($this->a === "'" || $this->a === '"') { for (;;) { $this->output .= $this->a; $this->a = $this->get(); if ($this->a === $this->b) { break; } if (ord($this->a) <= self::ORD_LF) { throw new JSMinException('Unterminated string literal.'); } if ($this->a === '\\') { $this->output .= $this->a; $this->a = $this->get(); } } } case 3: $this->b = $this->next(); if ($this->b === '/' && ( $this->a === '(' || $this->a === ',' || $this->a === '=' || $this->a === ':' || $this->a === '[' || $this->a === '!' || $this->a === '&' || $this->a === '|' || $this->a === '?')) { $this->output .= $this->a . $this->b; for (;;) { $this->a = $this->get(); if ($this->a === '/') { break; } elseif ($this->a === '\\') { $this->output .= $this->a; $this->a = $this->get(); } elseif (ord($this->a) <= self::ORD_LF) { throw new JSMinException('Unterminated regular expression '. 'literal.'); } $this->output .= $this->a; } $this->b = $this->next(); } } } protected function get() { $c = $this->lookAhead; $this->lookAhead = null; if ($c === null) { if ($this->inputIndex < $this->inputLength) { $c = substr($this->input, $this->inputIndex, 1); $this->inputIndex += 1; } else { $c = null; } } if ($c === "\r") { return "\n"; } if ($c === null || $c === "\n" || ord($c) >= self::ORD_SPACE) { return $c; } return ' '; } protected function isAlphaNum($c) { return ord($c) > 126 || $c === '\\' || preg_match('/^[\w\$]$/', $c) === 1; } protected function min() { $this->a = "\n"; $this->action(3); while ($this->a !== null) { switch ($this->a) { case ' ': if ($this->isAlphaNum($this->b)) { $this->action(1); } else { $this->action(2); } break; case "\n": switch ($this->b) { case '{': case '[': case '(': case '+': case '-': $this->action(1); break; case ' ': $this->action(3); break; default: if ($this->isAlphaNum($this->b)) { $this->action(1); } else { $this->action(2); } } break; default: switch ($this->b) { case ' ': if ($this->isAlphaNum($this->a)) { $this->action(1); break; } $this->action(3); break; case "\n": switch ($this->a) { case '}': case ']': case ')': case '+': case '-': case '"': case "'": $this->action(1); break; default: if ($this->isAlphaNum($this->a)) { $this->action(1); } else { $this->action(3); } } break; default: $this->action(1); break; } } } return $this->output; } protected function next() { $c = $this->get(); if ($c === '/') { switch($this->peek()) { case '/': for (;;) { $c = $this->get(); if (ord($c) <= self::ORD_LF) { return $c; } } case '*': $this->get(); for (;;) { switch($this->get()) { case '*': if ($this->peek() === '/') { $this->get(); return ' '; } break; case null: throw new JSMinException('Unterminated comment.'); } } default: return $c; } } return $c; } protected function peek() { $this->lookAhead = $this->get(); return $this->lookAhead; } } // -- Exceptions --------------------------------------------------------------- class JSMinException extends Exception {} ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/js/jsmin.php
PHP
asf20
6,944
// Create new HTML5 elements =================================================== // ----------------------------------------------------------------------------- // This script should load before any others. We want the new elements to be // parsed before pretty much anything happens. // Plus, IE does not behave otherwise. The cost of being progressive... // ----------------------------------------------------------------------------- // Credits : http://sickdesigner.com/index.php/2010/html-css/html5-starter-pack-a-sick-freebie/ document.createElement("article"); document.createElement("aside"); document.createElement("audio"); document.createElement("canvas"); document.createElement("command"); document.createElement("datalist"); document.createElement("details"); document.createElement("embed"); document.createElement("figcaption"); document.createElement("figure"); document.createElement("footer"); document.createElement("header"); document.createElement("hgroup"); document.createElement("keygen"); document.createElement("mark"); document.createElement("meter"); document.createElement("nav"); document.createElement("output"); document.createElement("progress"); document.createElement("rp"); document.createElement("rt"); document.createElement("ruby"); document.createElement("section"); document.createElement("source"); document.createElement("summary"); document.createElement("time"); document.createElement("video");
0a1b2c3d4e5
trunk/BloumGenerator/include/js/html5.js
JavaScript
asf20
1,478
/** * Template JS for standard pages */ (function($) { /** * List of functions required to enable template effects/hacks * @var array */ var templateSetup = new Array(); /** * Add a new template function * @param function func the function to be called on a jQuery object * @param boolean prioritary set to true to call the function before all others (optional) * @return void */ $.fn.addTemplateSetup = function(func, prioritary) { if (prioritary) { templateSetup.unshift(func); } else { templateSetup.push(func); } }; /** * Call every template function over a jQuery object (for instance : $('body').applyTemplateSetup()) * @return void */ $.fn.applyTemplateSetup = function() { var max = templateSetup.length; for (var i = 0; i < max; ++i) { templateSetup[i].apply(this); } return this; }; // Common (mobile and standard) template setup $.fn.addTemplateSetup(function() { // Collapsible fieldsets this.find('fieldset legend > a, .fieldset .legend > a').click(function(event) { $(this).toggleFieldsetOpen(); event.preventDefault(); }); this.find('fieldset.collapse, .fieldset.collapse').toggleFieldsetOpen().removeClass('collapse'); // Equalize tab content-blocks heights this.find('.tabs.same-height, .side-tabs.same-height, .mini-tabs.same-height, .controls-tabs.same-height').equalizeTabContentHeight(); // Update tabs this.find('.js-tabs').updateTabs(); // Input switches this.find('input[type=radio].switch, input[type=checkbox].switch').hide().after('<span class="switch-replace"></span>').next().click(function() { $(this).prev().click(); }).prev('.with-tip').next().addClass('with-tip').each(function() { $(this).attr('title', $(this).prev().attr('title')); }); this.find('input[type=radio].mini-switch, input[type=checkbox].mini-switch').hide().after('<span class="mini-switch-replace"></span>').next().click(function() { $(this).prev().click(); }).prev('.with-tip').next().addClass('with-tip').each(function() { $(this).attr('title', $(this).prev().attr('title')); }); // Tabs links behaviour this.find('.js-tabs a[href^="#"]').click(function(event) { event.preventDefault(); // If hashtag enabled if ($.fn.updateTabs.enabledHash) { // Retrieve hash parts var element = $(this); var hash = $.trim(window.location.hash || ''); if (hash.length > 1) { // Remove hash from other tabs of the group var hashParts = hash.substring(1).split('&'); var dummyIndex; while ((dummyIndex = $.inArray('', hashParts)) > -1) { hashParts.splice(dummyIndex, 1); } while ((dummyIndex = $.inArray('none', hashParts)) > -1) { hashParts.splice(dummyIndex, 1); } element.parent().parent().find('a[href^="#"]').each(function(i) { var index = $.inArray($(this).attr('href').substring(1), hashParts); if (index > -1) { hashParts.splice(index, 1); } }); } else { var hashParts = []; } // Add current tab to hash (not if default) var defaultTab = getDefaultTabIndex(element.parent().parent()); if (element.parent().index() != defaultTab) { hashParts.push(element.attr('href').substring(1)); } // If only one tab, add a empty id to prevent document from jumping to selected content if (hashParts.length == 1) { hashParts.unshift(''); } // Put hash, will trigger refresh window.location.hash = (hashParts.length > 0) ? '#'+hashParts.join('&') : '#none'; } else { var li = $(this).closest('li'); li.addClass('current').siblings().removeClass('current'); li.parent().updateTabs(); } }); }); // Document initial setup $(document).ready(function() { // Template setup $(document.body).applyTemplateSetup(); // Listener $(window).bind('hashchange', function() { $(document.body).find('.js-tabs').updateTabs(); }); }); /** * Get tab group default tab */ function getDefaultTabIndex(tabGroup) { var defaultTab = tabGroup.data('defaultTab'); if (defaultTab === null || defaultTab === '' || defaultTab === undefined) { var firstTab = tabGroup.children('.current:first'); defaultTab = (firstTab.length > 0) ? firstTab.index() : 0; tabGroup.data('defaultTab', defaultTab); } return defaultTab; }; /** * Update tabs */ $.fn.updateTabs = function() { // If hashtags enabled if ($.fn.updateTabs.enabledHash) { var hash = $.trim(window.location.hash || ''); var hashParts = (hash.length > 1) ? hash.substring(1).split('&') : []; } else { var hash = ''; var hashParts = []; } // Check all tabs var hasHash = (hashParts.length > 0); this.each(function(i) { // Check if already inited var tabGroup = $(this); var defaultTab = getDefaultTabIndex(tabGroup); // Look for current tab var current = false; if ($.fn.updateTabs.enabledHash) { if (hasHash) { var links = tabGroup.find('a[href^="#"]'); links.each(function(i) { var linkHash = $(this).attr('href').substring(1); if (linkHash.length > 0) { var index = $.inArray(linkHash, hashParts); if (index > -1) { current = $(this).parent(); return false; } } }); } } else { current = tabGroup.children('.current:first'); } // If none found : get the default tab if (!current) { current = tabGroup.children(':eq('+defaultTab+')'); } if (current.length > 0) { // Display current tab content block hash = $.trim(current.children('a').attr('href').substring(1)); if (hash.length > 0) { // Highlight current current.addClass('current'); var tabContainer = $('#'+hash), tabHidden = tabContainer.is(':hidden'); // Show if hidden if (tabHidden) { tabContainer.show(); } // Hide others current.siblings().removeClass('current').children('a').each(function(i) { var hash = $.trim($(this).attr('href').substring(1)); if (hash.length > 0) { var tabContainer = $('#'+hash); // Hide if visible if (tabContainer.is(':visible')) { tabContainer.trigger('tabhide').hide(); } // Or init if first round else if (!tabContainer.data('tabInited')) { tabContainer.trigger('tabhide'); tabContainer.data('tabInited', true); } } }); // Callback if (tabHidden) { tabContainer.trigger('tabshow'); } // Or init if first round else if (!tabContainer.data('tabInited')) { tabContainer.trigger('tabshow'); tabContainer.data('tabInited', true); } } } }); return this; }; /** * Indicate whereas JS tabs hashtag is enabled * @var boolean */ $.fn.updateTabs.enabledHash = true; /** * Reset tab content blocks heights */ $.fn.resetTabContentHeight = function() { this.find('a[href^="#"]').each(function(i) { var hash = $.trim($(this).attr('href').substring(1)); if (hash.length > 0) { $('#'+hash).css('height', ''); } }); return this; } /** * Equalize tab content blocks heights */ $.fn.equalizeTabContentHeight = function() { var i; var g; var maxHeight; var tabContainers; var block; var blockHeight; var marginAdjustTop; var marginAdjustBot; var first; var last; var firstMargin; var lastMargin; // Process in reverse order to equalize sub-tabs first for (i = this.length-1; i >= 0; --i) { // Look for max height maxHeight = -1; tabContainers = []; this.eq(i).find('a[href^="#"]').each(function(i) { var hash = $.trim($(this).attr('href').substring(1)); if (hash.length > 0) { block = $('#'+hash); if (block.length > 0) { blockHeight = block.outerHeight()+parseInt(block.css('margin-bottom')); // First element top-margin affects real height marginAdjustTop = 0; first = block.children(':first'); if (first.length > 0) { firstMargin = parseInt(first.css('margin-top')); if (!isNaN(firstMargin) && firstMargin < 0) { marginAdjustTop = firstMargin; } } // Same for last element bottom-margin marginAdjustBot = 0; last = block.children(':last'); if (last.length > 0) { lastMargin = parseInt(last.css('margin-bottom')); if (!isNaN(lastMargin) && lastMargin < 0) { marginAdjustBot = lastMargin; } } if (blockHeight+marginAdjustTop+marginAdjustBot > maxHeight) { maxHeight = blockHeight+marginAdjustTop+marginAdjustBot; } tabContainers.push([block, marginAdjustTop]); } } }); // Setup height for (g = 0; g < tabContainers.length; ++g) { tabContainers[g][0].height(maxHeight-parseInt(tabContainers[g][0].css('padding-top'))-parseInt(tabContainers[g][0].css('padding-bottom'))-parseInt(tabContainers[g][0].css('margin-bottom'))-tabContainers[g][1]); // Only the first tab remains visible if (g > 0) { tabContainers[g][0].hide(); } } } return this; }; /** * Display the selected tab (apply on tab content-blocks, not tabs, ie: $('#my-tab').showTab(); ) */ $.fn.showTab = function() { this.each(function(i) { $('a[href="#'+this.id+'"]').trigger('click'); }); return this; }; /** * Add a listener fired when a tab is shown * @param function callback any function to call when the listener is fired. * @param boolean runOnce if true, the callback will be run one time only. Default: false - optional */ $.fn.onTabShow = function(callback, runOnce) { if (runOnce) { var runOnceFunc = function() { callback.apply(this, arguments); $(this).unbind('tabshow', runOnceFunc); } this.bind('tabshow', runOnceFunc); } else { this.bind('tabshow', callback); } return this; }; /** * Add a listener fired when a tab is hidden * @param function callback any function to call when the listener is fired. * @param boolean runOnce if true, the callback will be run one time only. Default: false - optional */ $.fn.onTabHide = function(callback, runOnce) { if (runOnce) { var runOnceFunc = function() { callback.apply(this, arguments); $(this).unbind('tabhide', runOnceFunc); } this.bind('tabhide', runOnceFunc); } else { this.bind('tabhide', callback); } return this; }; /** * Insert a message into a block * @param string|array message a message, or an array of messages to inserted * @param object options optional object with following values: * - type: one of the available message classes : 'info' (default), 'warning', 'error', 'success', 'loading' * - position: either 'top' (default) or 'bottom' * - animate: true to show the message with an animation (default), else false * - noMargin: true to apply the no-margin class to the message (default), else false */ $.fn.blockMessage = function(message, options) { var settings = $.extend({}, $.fn.blockMessage.defaults, options); this.each(function(i) { // Locate content block var block = $(this); if (!block.hasClass('block-content')) { block = block.find('.block-content:first'); if (block.length == 0) { block = $(this).closest('.block-content'); if (block.length == 0) { return; } } } // Compose message var messageClass = (settings.type == 'info') ? 'message' : 'message '+settings.type; if (settings.noMargin) { messageClass += ' no-margin'; } var finalMessage = (typeof message == 'object') ? '<ul class="'+messageClass+'"><li>'+message.join('</li><li>')+'</li></ul>' : '<p class="'+messageClass+'">'+message+'</p>'; // Insert message if (settings.position == 'top') { var children = block.find('h1, .h1, .block-controls, .block-header, .wizard-steps'); if (children.length > 0) { var lastHeader = children.last(); var next = lastHeader.next('.message'); while (next.length > 0) { lastHeader = next; next = lastHeader.next('.message'); } var messageElement = lastHeader.after(finalMessage).next(); } else { var messageElement = block.prepend(finalMessage).children(':first'); } } else { var children = block.find('.block-footer:last-child'); if (children.length > 0) { var messageElement = children.before(finalMessage).prev(); } else { var messageElement = block.append(finalMessage).children(':last'); } } if (settings.animate) { messageElement.expand(); } }); return this; }; // Default config for the blockMessage function $.fn.blockMessage.defaults = { type: 'info', position: 'top', animate: true, noMargin: true }; /** * Remove all messages from the block * @param object options optional object with following values: * - only: string or array of strings of message classes which will be removed * - except: string or array of strings of message classes which will not be removed (ignored if 'only' is provided) * - animate: true to remove the message with an animation (default), else false */ $.fn.removeBlockMessages = function(options) { var settings = $.extend({}, $.fn.removeBlockMessages.defaults, options); this.each(function(i) { // Locate content block var block = $(this); if (!block.hasClass('block-content')) { block = block.find('.block-content:first'); if (block.length == 0) { block = $(this).closest('.block-content'); if (block.length == 0) { return; } } } var messages = block.find('.message'); if (settings.only) { if (typeof settings.only == 'string') { settings.only = [settings.only]; } messages = messages.filter('.'+settings.only.join(', .')); } else if (settings.except) { if (typeof settings.except == 'string') { settings.except = [settings.except]; } messages = messages.not('.'+settings.except.join(', .')); } if (settings.animate) { messages.foldAndRemove(); } else { messages.remove(); } }); return this; }; // Default config for the blockMessage function $.fn.removeBlockMessages.defaults = { only: false, // string or array of strings of message classes which will be removed except: false, // except: string or array of strings of message classes which will not be removed (ignored if only is provided) animate: true // animate: true to remove the message with an animation (default), else false }; /** * Fold an element * @param string|int duration a string (fast, normal or slow) or a number of millisecond. Default: 'normal'. - optional * @param function callback any function to call at the end of the effect. Default: none. - optional */ $.fn.fold = function(duration, callback) { this.each(function(i) { var element = $(this); var marginTop = parseInt(element.css('margin-top')); var marginBottom = parseInt(element.css('margin-bottom')); var anim = { 'height': 0, 'paddingTop': 0, 'paddingBottom': 0 }; // IE8 and lower do not understand border-xx-width // http://forum.jquery.com/topic/ie-invalid-argument if (!$.browser.msie || $.browser.version > 8) { // Border width is not set to 0 because it does not allow fluid movement anim.borderTopWidth = '1px'; anim.borderBottomWidth = '1px'; } // Detection of elements sticking to their predecessor var prev = element.prev(); if (prev.length === 0 && parseInt(element.css('margin-bottom'))+marginTop !== 0) { anim.marginTop = Math.min(0, marginTop); anim.marginBottom = Math.min(0, marginBottom); } // Effect element.stop(true).css({ 'overflow': 'hidden' }).animate(anim, { 'duration': duration, 'complete': function() { // Reset properties $(this).css({ 'display': 'none', 'overflow': '', 'height': '', 'paddingTop': '', 'paddingBottom': '', 'borderTopWidth': '', 'borderBottomWidth': '', 'marginTop': '', 'marginBottom': '' }); // Callback function if (callback) { callback.apply(this); } } }); }); return this; }; /* * Expand an element * @param string|int duration a string (fast, normal or slow) or a number of millisecond. Default: 'normal'. - optional * @param function callback any function to call at the end of the effect. Default: none. - optional */ $.fn.expand = function(duration, callback) { this.each(function(i) { // Init var element = $(this); element.css('display', 'block'); // Reset and get values element.stop(true).css({ 'overflow': '', 'height': '', 'paddingTop': '', 'paddingBottom': '', 'borderTopWidth': '', 'borderBottomWidth': '', 'marginTop': '', 'marginBottom': '' }); var height = element.height(); var paddingTop = parseInt(element.css('padding-top')); var paddingBottom = parseInt(element.css('padding-bottom')); var marginTop = parseInt(element.css('margin-top')); var marginBottom = parseInt(element.css('margin-bottom')); // Initial and target values var css = { 'overflow': 'hidden', 'height': 0, 'paddingTop': 0, 'paddingBottom': 0 }; var anim = { 'height': height, 'paddingTop': paddingTop, 'paddingBottom': paddingBottom }; // IE8 and lower do not understand border-xx-width // http://forum.jquery.com/topic/ie-invalid-argument if (!$.browser.msie || $.browser.version > 8) { var borderTopWidth = parseInt(element.css('border-top-width')); var borderBottomWidth = parseInt(element.css('border-bottom-width')); // Border width is not set to 0 because it does not allow fluid movement css.borderTopWidth = '1px'; css.borderBottomWidth = '1px'; anim.borderTopWidth = borderTopWidth; anim.borderBottomWidth = borderBottomWidth; } // Detection of elements sticking to their predecessor var prev = element.prev(); if (prev.length === 0 && parseInt(element.css('margin-bottom'))+marginTop !== 0) { css.marginTop = Math.min(0, marginTop); css.marginBottom = Math.min(0, marginBottom); anim.marginTop = marginTop; anim.marginBottom = marginBottom; } // Effect element.stop(true).css(css).animate(anim, { 'duration': duration, 'complete': function() { // Reset properties $(this).css({ 'display': '', 'overflow': '', 'height': '', 'paddingTop': '', 'paddingBottom': '', 'borderTopWidth': '', 'borderBottomWidth': '', 'marginTop': '', 'marginBottom': '' }); // Callback function if (callback) { callback.apply(this); } // Required for IE7 - don't ask me why... if ($.browser.msie && $.browser.version < 8) { $(this).css('zoom', 1); } } }); }); return this; }; /** * Remove an element with folding effect * @param string|int duration a string (fast, normal or slow) or a number of millisecond. Default: 'normal'. - optional * @param function callback any function to call at the end of the effect. Default: none. - optional */ $.fn.foldAndRemove = function(duration, callback) { $(this).fold(duration, function() { // Callback function if (callback) { callback.apply(this); } $(this).remove(); }); return this; } /** * Remove an element with fading then folding effect * @param string|int duration a string (fast, normal or slow) or a number of millisecond. Default: 'normal'. - optional * @param function callback any function to call at the end of the effect. Default: none. - optional */ $.fn.fadeAndRemove = function(duration, callback) { this.animate({'opacity': 0}, { 'duration': duration, 'complete': function() { // No folding required if the element has position: absolute (not in the elements flow) if ($(this).css('position') == 'absolute') { // Callback function if (callback) { callback.apply(this); } $(this).remove(); } else { $(this).slideUp(duration, function() { // Callback function if (callback) { callback.apply(this); } $(this).remove(); }); } } }); return this; }; /** * Open/close fieldsets */ $.fn.toggleFieldsetOpen = function() { this.each(function() { /* * Tip: if you want to add animation or do anything that should not occur at startup closing, * check if the element has the class 'collapse': * if (!$(this).hasClass('collapse')) { // Anything that sould no occur at startup } */ // Change $(this).closest('fieldset, .fieldset').toggleClass('collapsed'); }); return this; }; /** * Add a semi-transparent layer in front of an element */ $.fn.addEffectLayer = function(options) { var settings = $.extend({}, $.fn.addEffectLayer.defaults, options); this.each(function(i) { var element = $(this); // Add layer var refElement = getNodeRefElement(this); var layer = $('<div class="loading-mask"><span>'+settings.message+'</span></div>').insertAfter(refElement); // Position var elementOffset = element.position(); layer.css({ top: elementOffset.top+'px', left: elementOffset.left+'px' }).width(element.outerWidth()).height(element.outerHeight()); // Effect var span = layer.children('span'); var marginTop = parseInt(span.css('margin-top')); span.css({'opacity':0, 'marginTop':(marginTop-40)+'px'}); layer.css({'opacity':0}).animate({'opacity':1}, { 'complete': function() { span.animate({'opacity': 1, 'marginTop': marginTop+'px'}); } }); }); return this; }; /** * Retrieve the reference element after which the layer will be inserted * @param HTMLelement node the node on which the effect is applied * @return HTMLelement the reference node */ function getNodeRefElement(node) { var element = $(node); // Special case if (node.nodeName.toLowerCase() == 'document' || node.nodeName.toLowerCase() == 'body') { var refElement = $(document.body).children(':last').get(0); } else { // Look for the reference element, the one after which the layer will be inserted var refElement = node; var offsetParent = element.offsetParent().get(0); // List of elements in which we can add a div var absPos = ['absolute', 'relative']; while (refElement && refElement !== offsetParent && !$.inArray($(refElement.parentNode).css('position'), absPos)) { refElement = refElement.parentNode; } } return refElement; } // Default params for the loading effect layer $.fn.addEffectLayer.defaults = { message: 'Please wait...' }; /** * jQuery load() method wrapper : add a visual effect on the load() target * Parameters are the same as load() */ $.fn.loadWithEffect = function() { // Add effect layer this.addEffectLayer({ message: $.fn.loadWithEffect.defaults.message }); // Rewrite callback function var target = this; var callback = false; var args = $.makeArray(arguments); var index = args.length; if (args[2] && typeof args[2] == 'function') { callback = args[2]; index = 2; } else if (args[1] && typeof args[1] == 'function') { callback = args[1]; index = 1; } // Custom callback args[index] = function(responseText, textStatus, XMLHttpRequest) { // Get the effect layer var refElement = getNodeRefElement(this); var layer = $(refElement).next('.loading-mask'); var span = layer.children('span'); // If success if (textStatus == 'success' || textStatus == 'notmodified') { // Initial callback if (callback) { callback.apply(this, arguments); } // Remove effect layer layer.stop(true); span.stop(true); var currentMarginTop = parseInt(span.css('margin-top')); var marginTop = parseInt(span.css('margin-top', '').css('margin-top')); span.css({'marginTop':currentMarginTop+'px'}).animate({'opacity':0, 'marginTop':(marginTop-40)+'px'}, { 'complete': function() { layer.fadeAndRemove(); } }); } else { span.addClass('error').html($.fn.loadWithEffect.defaults.errorMessage+'<br><a href="#">'+$.fn.loadWithEffect.defaults.retry+'</a> / <a href="#">'+$.fn.loadWithEffect.defaults.cancel+'</a>'); span.children('a:first').click(function(event) { event.preventDefault(); // Relaunch request $.fn.load.apply(target, args); // Reset span.removeClass('error').html($.fn.loadWithEffect.defaults.message).css('margin-left', ''); }); span.children('a:last').click(function(event) { event.preventDefault(); // Remove effect layer layer.stop(true); span.stop(true); var currentMarginTop = parseInt(span.css('margin-top')); var marginTop = parseInt(span.css('margin-top', '').css('margin-top')); span.css({'marginTop':currentMarginTop+'px'}).animate({'opacity':0, 'marginTop':(marginTop-40)+'px'}, { 'complete': function() { layer.fadeAndRemove(); } }); }); // Centering span.css('margin-left', -Math.round(span.outerWidth()/2)); } }; // Redirect to jQuery load $.fn.load.apply(target, args); return this; }; // Default texts for the loading effect layer $.fn.loadWithEffect.defaults = { message: 'Loading...', errorMessage: 'Error while loading', retry: 'Retry', cancel: 'Cancel' }; /** * Enable any button with workaround for IE lack of :disabled selector */ $.fn.enableBt = function() { $(this).attr('disabled', false); if ($.browser.msie && $.browser.version < 9) { $(this).removeClass('disabled'); } } /** * Disable any button with workaround for IE lack of :disabled selector */ $.fn.disableBt = function() { $(this).attr('disabled', true); if ($.browser.msie && $.browser.version < 9) { $(this).addClass('disabled'); } } })(jQuery);
0a1b2c3d4e5
trunk/BloumGenerator/include/js/common.js
JavaScript
asf20
27,733
/** * Template JS for standard pages */ (function($) { // Standard template setup $.fn.addTemplateSetup(function() { // Mini menu this.find('.mini-menu').css({opacity:0}).parent().hover(function() { $(this).children('.mini-menu').stop(true).animate({opacity:1}); }, function() { $(this).children('.mini-menu').css('display', 'block').stop(true).animate({opacity:0}, {'complete': function() { $(this).css('display', ''); }}); }); // CSS Menu improvement this.find('.menu, .menu li:has(ul)').hover(function() { $(this).openDropDownMenu(); }, function() { // Remove in case of future window resizing $(this).children('ul').removeClass('reverted'); }); // Scroll top button $('a[href="#top"]').click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop:0}); }); }); // Close buttons $('.close-bt').live('click', function() { $(this).parent().fadeAndRemove(); }); // Document initial setup $(document).ready(function() { // Notifications blocks var notifications = $('<ul id="notifications"></ul>').appendTo(document.body); var notificationsTop = parseInt(notifications.css('top')); // If it is a standard page if (!$(document.body).hasClass('special-page')) { // Main nav - click style $('nav > ul > li').click(function(event) { // If not already active and has sub-menu if (!$(this).hasClass('current') && $(this).find('ul li').length > 0) { $(this).addClass('current').siblings().removeClass('current'); $('nav > ul > li').refreshTip(); event.preventDefault(); } }).tip({ stickIfCurrent: true, offset: -3 }); // Main nav - hover style /*$('nav > ul > li').hover(function() { $(this).addClass('current').siblings().removeClass('current'); $('nav > ul > li').refreshTip(); }, function() {}).tip({ stickIfCurrent: true, offset: -3 });*/ // Advanced search field if ($.fn.advancedSearchField) { $('#s').advancedSearchField(); } // Status bar buttons : drop-downs fade In/Out function convertDropLists() { $(this).find('.result-block .small-files-list').accessibleList({moreAfter:false}); // Run only once $(this).unbind('mouseenter', convertDropLists); } $('#status-infos li:has(.result-block)').hover(function() { $(this).find('.result-block').stop(true).css('display', 'none').fadeIn('normal', function() { $(this).css('opacity', ''); }); }, function() { $(this).find('.result-block').stop(true).css('display', 'block').fadeOut('normal', function() { $(this).css('opacity', ''); }); }).bind('mouseenter', convertDropLists); // Fixed control bar var controlBar = $('#control-bar'); if (controlBar.length > 0) { var cbPlaceHolder = controlBar.after('<div id="cb-place-holder" style="height:'+controlBar.outerHeight()+'px"></div>').next(); // Effect controlBar.hover(function() { if ($(this).hasClass('fixed')) { $(this).stop(true).fadeTo('fast', 1); } }, function() { if ($(this).hasClass('fixed')) { $(this).stop(true).fadeTo('slow', 0.5); } }); // Listener $(window).scroll(function() { // Check top position var controlBarPos = controlBar.hasClass('fixed') ? cbPlaceHolder.offset().top : controlBar.offset().top; if ($(window).scrollTop() > controlBarPos) { if (!controlBar.hasClass('fixed')) { cbPlaceHolder.height(controlBar.outerHeight()).show(); controlBar.addClass('fixed').stop(true).fadeTo('slow', 0.5); // Notifications $('#notifications').animate({'top': controlBar.outerHeight()+notificationsTop}); } } else { if (controlBar.hasClass('fixed')) { cbPlaceHolder.hide(); controlBar.removeClass('fixed').stop(true).fadeTo('fast', 1, function() { // Required for IE $(this).css('filter', ''); }); // Notifications $('#notifications').animate({'top': notificationsTop}); } } }).trigger('scroll'); } } }); /** * Internal function to open drop-down menus, required for context menu */ $.fn.openDropDownMenu = function() { var ul = this.children('ul'); // Position check if (ul.offset().left+ul.outerWidth()-$(window).scrollLeft() > $(window).width()) { ul.addClass('reverted'); } // Effect - IE < 9 uses filter for opacity, cutting out sub-menus if (!$.browser.msie || $.browser.version > 8) { ul.stop(true).css({opacity:0}).animate({opacity:1}); } }; })(jQuery); /** * Display a notification. If the page is not yet ready, delay the notification until it is ready. * @var string message a text or html message to display * @var object options an object with any options for the message - optional * - closeButton: true to add a close button to the message (default: true) * - autoClose: true to close message after (closeDelay) ms (default: true) * - closeDelay: delay before message close (default: 8000) */ var notify = function(message, options) { var block = jQuery('#notifications'); // If ready if (block.length > 0) { var settings = jQuery.extend({}, notify.defaults, options); // Append message var closeButton = settings.closeButton ? '<span class="close-bt"></span>' : ''; var element = jQuery('#notifications').append('<li>'+message+closeButton+'</li>').children(':last-child'); // Effect element.expand(); // If closing if (settings.autoClose) { // Timer var timeoutId = setTimeout(function() { element.fadeAndRemove(); }, settings.closeDelay); // Prevent closing when hover element.hover(function() { clearTimeout(timeoutId); }, function() { timeoutId = setTimeout(function() { element.fadeAndRemove(); }, settings.closeDelay); }); } } else { // Not ready, delay action setTimeout(function() { notify(message, options); }, 40); } }; // Defaults values for the notify method notify.defaults = { closeButton: true, // Add a close button to the message autoClose: true, // Message will close after (closeDelay) ms closeDelay: 8000 // Delay before message closes };
0a1b2c3d4e5
trunk/BloumGenerator/include/js/standard.js
JavaScript
asf20
6,607
<?php /** * Simple script to combine and compress JS files, to reduce the number of file request the server has to handle. * For more options/flexibility, see Minify : http://code.google.com/p/minify/ */ // If no file requested if (!isset($_GET['files']) or strlen($_GET['files']) == 0) { header('Status: 404 Not Found'); exit(); } // Cache folder $cachePath = 'cache/'; if (!file_exists($cachePath)) { mkdir($cachePath); } // Tell the browser what kind of data to expect header('Content-type: text/javascript'); // Enable compression /*if (extension_loaded('zlib')) { ini_set('zlib.output_compression', 'On'); }*/ /** * Add file extension if needed * @var string $file the file name */ function addExtension($file) { if (substr($file, -3) !== '.js') { $file .= '.js'; } return $file; } // Calculate an unique ID of requested files & their change time $files = array_map('addExtension', explode(',', $_GET['files'])); $md5 = ''; foreach ($files as $file) { $filemtime = @filemtime($file); $md5 .= date('YmdHis', $filemtime ? $filemtime : NULL).$file; } $md5 = md5($md5); // If cache exists of this files/time ID if (file_exists($cachePath.$md5)) { readfile($cachePath.$md5); } else { // Lib require('jsmin.php'); // Load files error_reporting(0); $content = ''; foreach ($files as $file) { $content .= file_get_contents($file); } $content = JSMin::minify($content); // Delete cache files older than an hour $oldDate = time()-3600; $cachedFiles = scandir($cachePath); foreach ($cachedFiles as $file) { $filemtime = @filemtime($cachePath.$file); if (strlen($file) == 32 and ($filemtime === false or $filemtime < $oldDate)) { unlink($cachePath.$file); } } // Write cache file file_put_contents($cachePath.$md5, $content); // Output echo $content; }
0a1b2c3d4e5
trunk/BloumGenerator/include/js/mini.php
PHP
asf20
1,899
function abrirModalSimples(conteudo, titulo){ return $.modal({ content: conteudo, title: titulo, maxWidth: 500, maxHeight: 500, buttons: { 'Fechar': function(win) {win.closeModal();} } }); } function abrirModalConfirmacao(url){ return $.modal({ content: 'Deseja Realmente Realizar Essa Operação?', title: 'Confirmação', maxWidth: 500, maxHeight: 500, buttons: { 'Sim': function() {window.location.href = url}, 'Não': function(win) {win.closeModal();} } }); } function abrirModalCarregando(conteudo){ return $.modal({ content: '<img src="include/images/ajax-loader.gif"/> '+conteudo, title: 'Carregando', maxWidth: 500, maxHeight: 500, closeButton : false }); } function loadClass(type,table,view){ var janelaModal = $.modal({ title: 'Visualização', content: '<img src="include/images/ajax-loader.gif"/> Carregando...', maxWidth: 800, minWidth: 700, maxHeight: 500, minHeight: 450, buttons: { 'Fechar': function(win) { win.closeModal(); } } }); $.post('GeneratorAction.loadClass', { type:type, table:table, view:view }, function(response, status, xhr){ var content = '<div id="loadClass" style="font-size:13px">'; if (status == "error") { var msg = "Erro: "; content += msg + xhr.status + " " + xhr.statusText; }else{ content += response; } content += '</div>'; janelaModal.setModalContent(content,true); } ); }
0a1b2c3d4e5
trunk/BloumGenerator/include/js/funcoes.js
JavaScript
asf20
1,913
/** * Modal window extension */ (function($) { /** * Opens a new modal window * @param object options an object with any of the following options * @return object the jQuery object of the new window */ $.modal = function(options) { var settings = $.extend({}, $.modal.defaults, options), root = getModalDiv(), // Vars for resizeFunc and moveFunc winX = 0, winY = 0, contentWidth = 0, contentHeight = 0, mouseX = 0, mouseY = 0, resized; // Get contents var content = ''; var contentObj; if (settings.content) { if (typeof(settings.content) == 'string') { content = settings.content; } else { contentObj = settings.content.clone(true).show(); } } else { // No content content = ''; } // Title var titleClass = settings.title ? '' : ' no-title'; var title = settings.title ? '<h1>'+settings.title+'</h1>' : ''; // Content size var sizeParts = new Array(); sizeParts.push('min-width:'+settings.minWidth+'px;'); sizeParts.push('min-height:'+settings.minHeight+'px;'); if (settings.width) { sizeParts.push('width:'+settings.width+'px; '); } if (settings.height) { sizeParts.push('height:'+settings.height+'px; '); } if (settings.maxWidth) { sizeParts.push('max-width:'+settings.maxWidth+'px; '); } if (settings.maxHeight) { sizeParts.push('max-height:'+settings.maxHeight+'px; '); } var contentStyle = (sizeParts.length > 0) ? ' style="'+sizeParts.join(' ')+'"' : ''; // Borders var borderOpen = settings.border ? '"><div class="block-content'+titleClass : titleClass; var borderClose = settings.border ? '></div' : ''; // Scrolling var scrollClass = settings.scrolling ? ' modal-scroll' : ''; // Insert window var win = $('<div class="modal-window block-border'+borderOpen+'">'+title+'<div class="modal-content'+scrollClass+'"'+contentStyle+'>'+content+'</div></div'+borderClose+'>').appendTo(root); var contentDiv = win.find('.modal-content'); if (contentObj) { contentObj.appendTo(contentDiv); } // If resizable if (settings.resizable && settings.border) { // Custom function (to use correct var scope) var resizeFunc = function(event) { // Mouse offset var offsetX = event.pageX-mouseX, offsetY = event.pageY-mouseY, // New size newWidth = Math.max(settings.minWidth, contentWidth+(resized.width*offsetX)), newHeight = Math.max(settings.minHeight, contentHeight+(resized.height*offsetY)), // Position correction correctX = 0, correctY = 0; // If max sizes are defined if (settings.maxWidth && newWidth > settings.maxWidth) { correctX = newWidth-settings.maxWidth; newWidth = settings.maxWidth; } if (settings.maxHeight && newHeight > settings.maxHeight) { correctY = newHeight-settings.maxHeight; newHeight = settings.maxHeight; } contentDiv.css({ width: newWidth+'px', height: newHeight+'px' }); win.css({ left: (winX+(resized.left*(offsetX+correctX)))+'px', top: (winY+(resized.top*(offsetY+correctY)))+'px' }); }; // Create resize handlers $('<div class="modal-resize-tl"></div>').appendTo(win).data('modal-resize', { top: 1, left: 1, height: -1, width: -1 }).add( $('<div class="modal-resize-t"></div>').appendTo(win).data('modal-resize', { top: 1, left: 0, height: -1, width: 0 }) ).add( $('<div class="modal-resize-tr"></div>').appendTo(win).data('modal-resize', { top: 1, left: 0, height: -1, width: 1 }) ).add( $('<div class="modal-resize-r"></div>').appendTo(win).data('modal-resize', { top: 0, left: 0, height: 0, width: 1 }) ).add( $('<div class="modal-resize-br"></div>').appendTo(win).data('modal-resize', { top: 0, left: 0, height: 1, width: 1 }) ).add( $('<div class="modal-resize-b"></div>').appendTo(win).data('modal-resize', { top: 0, left: 0, height: 1, width: 0 }) ).add( $('<div class="modal-resize-bl"></div>').appendTo(win).data('modal-resize', { top: 0, left: 1, height: 1, width: -1 }) ).add( $('<div class="modal-resize-l"></div>').appendTo(win).data('modal-resize', { top: 0, left: 1, height: 0, width: -1 }) ).mousedown(function(event) { // Detect positions contentWidth = contentDiv.width(); contentHeight = contentDiv.height(); var position = win.position(); winX = position.left; winY = position.top; mouseX = event.pageX; mouseY = event.pageY; resized = $(this).data('modal-resize'); // Prevent text selection document.onselectstart = function () { return false; }; $(document).bind('mousemove', resizeFunc); }) root.mouseup(function() { $(document).unbind('mousemove', resizeFunc); // Restore text selection document.onselectstart = null; }); } // Put in front win.mousedown(function() { $(this).putModalOnFront(); }); // If movable if (settings.draggable && title) { // Custom functions (to use correct var scope) var moveFunc = function(event) { // Window and document sizes var width = win.outerWidth(), height = win.outerHeight(); // New position win.css({ left: Math.max(0, Math.min(winX+(event.pageX-mouseX), $(root).width()-width))+'px', top: Math.max(0, Math.min(winY+(event.pageY-mouseY), $(root).height()-height))+'px' }); }; // Listeners win.find('h1:first').mousedown(function(event) { // Detect positions var position = win.position(); winX = position.left; winY = position.top; mouseX = event.pageX; mouseY = event.pageY; // Prevent text selection document.onselectstart = function () { return false; }; $(document).bind('mousemove', moveFunc); }) root.mouseup(function() { $(document).unbind('mousemove', moveFunc); // Restore text selection document.onselectstart = null; }); } // Close button if (settings.closeButton) { $('<ul class="action-tabs right"><li><a href="#" title="Fechar"><img src="include/images/icons/fugue/cross-circle.png" width="16" height="16"></a></li></ul>') .prependTo(win) .find('a').click(function(event) { event.preventDefault(); $(this).closest('.modal-window').closeModal(); }); } // Bottom buttons var buttonsFooter = false; $.each(settings.buttons, function(key, value) { // Button zone if (!buttonsFooter) { buttonsFooter = $('<div class="block-footer align-'+settings.buttonsAlign+'"></div>').insertAfter(contentDiv); } else { // Spacing buttonsFooter.append('&nbsp;'); } $('<button type="button">'+key+'</button>').appendTo(buttonsFooter).click(function(event) { value.call(this, $(this).closest('.modal-window'), event); }); }); // Close function if (settings.onClose) { win.bind('closeModal', settings.onClose); } // Apply template setup win.applyTemplateSetup(); // Effect if (!root.is(':visible')) { win.hide(); root.fadeIn('normal', function() { win.show().centerModal(); }); } else { win.centerModal(); } // Store as current $.modal.current = win; $.modal.all = root.children('.modal-window'); // Callback if (settings.onOpen) { settings.onOpen.call(win.get(0)); } // If content url if (settings.url) { win.loadModalContent(settings.url, settings); } return win; }; /** * Shortcut to the current window * @var jQuery|boolean */ $.modal.current = false; /** * jQuery selection of all opened modal windows * @var jQuery */ $.modal.all = $(); /** * Wraps the selected elements content in a new modal window * @param object options same as $.modal() * @return jQuery the new windows */ $.fn.modal = function(options) { var modals = $(); this.each(function() { modals.add($.modal($.extend({}, $.modal.defaults, {content: $(this).clone(true).show()}))); }); return modals; }; /** * Use this method to retrieve the content div in the modal window */ $.fn.getModalContentBlock = function() { return this.find('.modal-content'); } /** * Use this method to retrieve the modal window from any element within it */ $.fn.getModalWindow = function() { return this.closest('.modal-window'); } /** * Set window content * @param string|jQuery content the content to put: HTML or a jQuery object * @param boolean resize use true to resize window to fit content (height only) */ $.fn.setModalContent = function(content, resize) { this.each(function() { var contentBlock = $(this).getModalContentBlock(); // Set content if (typeof(content) == 'string') { contentBlock.html(content); } else { content.clone(true).show().appendTo(contentBlock); } contentBlock.applyTemplateSetup(); // Resizing if (resize) { contentBlock.setModalContentSize(true, false); } }); return this; } /** * Set window content-block size * @param int|boolean width the width to set, true to keep current or false for fluid width * @param int|boolean height the height to set, true to keep current or false for fluid height */ $.fn.setModalContentSize = function(width, height) { this.each(function() { var contentBlock = $(this).getModalContentBlock(); // Resizing if (width !== true) { contentBlock.css('width', width ? width+'px' : ''); } if (height !== true) { contentBlock.css('height', height ? height+'px' : ''); } }); return this; } /** * Load AJAX content * @param string url the content url * @param object options an object with any of the following options: * - string loadingMessage any message to display while loading (may contain HTML), or leave empty to keep current content * - string|object data a map or string that is sent to the server with the request (same as jQuery.load()) * - function complete a callback function that is executed when the request completes. (same as jQuery.load()) * - boolean resize use true to resize window on loading message and when content is loaded. To define separately, use options below: * - boolean resizeOnMessage use true to resize window on loading message * - boolean resizeOnLoad use true to resize window when content is loaded */ $.fn.loadModalContent = function(url, options) { var settings = $.extend({ loadingMessage: '', data: {}, complete: function(responseText, textStatus, XMLHttpRequest) {}, resize: true, resizeOnMessage: false, resizeOnLoad: false }, options) this.each(function() { var win = $(this), contentBlock = win.getModalContentBlock(); // If loading message if (settings.loadingMessage) { win.setModalContent('<div class="modal-loading">'+settings.loadingMessage+'</div>', (settings.resize || settings.resizeOnMessage)); } contentBlock.load(url, settings.data, function(responseText, textStatus, XMLHttpRequest) { // Template functions contentBlock.applyTemplateSetup(); if (settings.resize || settings.resizeOnLoad) { contentBlock.setModalContentSize(true, false); } // Callback settings.complete.call(this, responseText, textStatus, XMLHttpRequest); }); }); return this; } /** * Set modal title * @param string newTitle the new title (may contain HTML), or an empty string to remove the title */ $.fn.setModalTitle = function(newTitle) { this.each(function() { var win = $(this), title = $(this).find('h1'), contentBlock = win.hasClass('block-content') ? win : win.children('.block-content:first'); if (newTitle.length > 0) { if (title.length == 0) { contentBlock.removeClass('no-title'); title = $('<h1>'+newTitle+'</h1>').prependTo(contentBlock); } title.html(newTitle); } else if (title.length > 0) { title.remove(); contentBlock.addClass('no-title'); } }); return this; } /** * Center the window * @param boolean animate true to animate the window movement */ $.fn.centerModal = function(animate) { var root = getModalDiv(), rootW = root.width()/2, rootH = root.height()/2; this.each(function() { var win = $(this), winW = Math.round(win.outerWidth()/2), winH = Math.round(win.outerHeight()/2); win[animate ? 'animate' : 'css']({ left: (rootW-winW)+'px', top: (rootH-winH)+'px' }); }); return this; }; /** * Put modal on front */ $.fn.putModalOnFront = function() { if ($.modal.all.length > 1) { var root = getModalDiv(); this.each(function() { if ($(this).next('.modal-window').length > 0) { $(this).detach().appendTo(root); } }); } return this; }; /** * Closes the window */ $.fn.closeModal = function() { this.each(function() { var event = $.Event('closeModal'), win = $(this); // Events on close win.trigger(event); if (!event.isDefaultPrevented()) { win.remove(); // Modal root element var root = getModalDiv(); $.modal.all = root.children('.modal-window'); if ($.modal.all.length == 0) { $.modal.current = false; root.fadeOut('normal'); } else { // Refresh current $.modal.current = $.modal.all.last(); } } }); return this; }; /** * New modal window options */ $.modal.defaults = { /** * Content of the window: HTML or jQuery object * @var string|jQuery */ content: false, /** * Url for loading content * @var string|boolean */ url: false, /** * Title of the window, or false for none * @var string|boolean */ title: false, /** * Add glass-like border to the window (required to enable resizing) * @var boolean */ border: true, /** * Enable window moving (only work if title is defined) * @var boolean */ draggable: true, /** * Enable window resizing (only work if border is true) * @var boolean */ resizable: true, /** * If true, enable content vertical scrollbar if content is higher than 'height' (or 'maxHeight' if 'height' is undefined) * @var boolean */ scrolling: true, /** * Wether or not to display the close window button * @var boolean */ closeButton: true, /** * Map of bottom buttons, with text as key and function on click as value * Ex: {'Close' : function(win) { win.closeModal(); } } * @var object */ buttons: {}, /** * Alignement of buttons ('left', 'center' or 'right') * @var string */ buttonsAlign: 'right', /** * Function called when opening window * @var function */ onOpen: false, /** * Function called when closing window. It may return false or call event.preventDefault() to prevent closing * @var function */ onClose: false, /** * Minimum content height * @var int */ minHeight: 40, /** * Minimum content width * @var int */ minWidth: 200, /** * Maximum content width, or false for no limit * @var int|boolean */ maxHeight: false, /** * Maximum content height, or false for no limit * @var int|boolean */ maxWidth: false, /** * Initial content height, or false for fluid size * @var int|boolean */ height: false, /** * Initial content width, or false for fluid size * @var int|boolean */ width: 450, /** * If AJAX load only - loading message, or false for none (can be HTML) * @var string|boolean */ loadingMessage: 'Loading...', /** * If AJAX load only - data a map or string that is sent to the server with the request (same as jQuery.load()) * @var string|object */ data: {}, /** * If AJAX load only - a callback function that is executed when the request completes. (same as jQuery.load()) * @var function */ complete: function(responseText, textStatus, XMLHttpRequest) {}, /** * If AJAX load only - true to resize window on loading message and when content is loaded. To define separately, use options below. * @var boolean */ resize: true, /** * If AJAX load only - use true to resize window on loading message * @var boolean */ resizeOnMessage: false, /** * If AJAX load only - use true to resize window when content is loaded * @var boolean */ resizeOnLoad: false }; /** * Return the modal windows root div */ function getModalDiv() { var modal = $('#modal'); if (modal.length == 0) { $(document.body).append('<div id="modal"></div>'); modal = $('#modal').hide(); } return modal; }; })(jQuery);
0a1b2c3d4e5
trunk/BloumGenerator/include/js/jquery.modal.js
JavaScript
asf20
17,761
/*! * jQuery Form Plugin * version: 2.73 (03-MAY-2011) * @requires jQuery v1.3.2 or later * * Examples and documentation at: http://malsup.com/jquery/form/ * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ ;(function($) { /* Usage Note: ----------- Do not use both ajaxSubmit and ajaxForm on the same form. These functions are intended to be exclusive. Use ajaxSubmit if you want to bind your own submit handler to the form. For example, $(document).ready(function() { $('#myForm').bind('submit', function(e) { e.preventDefault(); // <-- important $(this).ajaxSubmit({ target: '#output' }); }); }); Use ajaxForm when you want the plugin to manage all the event binding for you. For example, $(document).ready(function() { $('#myForm').ajaxForm({ target: '#output' }); }); When using ajaxForm, the ajaxSubmit function will be invoked for you at the appropriate time. */ /** * ajaxSubmit() provides a mechanism for immediately submitting * an HTML form using AJAX. */ $.fn.ajaxSubmit = function(options) { // fast fail if nothing selected (http://dev.jquery.com/ticket/2752) if (!this.length) { log('ajaxSubmit: skipping submit process - no element selected'); return this; } if (typeof options == 'function') { options = { success: options }; } var action = this.attr('action'); var url = (typeof action === 'string') ? $.trim(action) : ''; if (url) { // clean url (don't include hash vaue) url = (url.match(/^([^#]+)/)||[])[1]; } url = url || window.location.href || ''; options = $.extend(true, { url: url, success: $.ajaxSettings.success, type: this[0].getAttribute('method') || 'GET', // IE7 massage (see issue 57) iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank' }, options); // hook for manipulating the form data before it is extracted; // convenient for use with rich editors like tinyMCE or FCKEditor var veto = {}; this.trigger('form-pre-serialize', [this, options, veto]); if (veto.veto) { log('ajaxSubmit: submit vetoed via form-pre-serialize trigger'); return this; } // provide opportunity to alter form data before it is serialized if (options.beforeSerialize && options.beforeSerialize(this, options) === false) { log('ajaxSubmit: submit aborted via beforeSerialize callback'); return this; } var n,v,a = this.formToArray(options.semantic); if (options.data) { options.extraData = options.data; for (n in options.data) { if(options.data[n] instanceof Array) { for (var k in options.data[n]) { a.push( { name: n, value: options.data[n][k] } ); } } else { v = options.data[n]; v = $.isFunction(v) ? v() : v; // if value is fn, invoke it a.push( { name: n, value: v } ); } } } // give pre-submit callback an opportunity to abort the submit if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) { log('ajaxSubmit: submit aborted via beforeSubmit callback'); return this; } // fire vetoable 'validate' event this.trigger('form-submit-validate', [a, this, options, veto]); if (veto.veto) { log('ajaxSubmit: submit vetoed via form-submit-validate trigger'); return this; } var q = $.param(a); if (options.type.toUpperCase() == 'GET') { options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q; options.data = null; // data is null for 'get' } else { options.data = q; // data is the query string for 'post' } var $form = this, callbacks = []; if (options.resetForm) { callbacks.push(function() { $form.resetForm(); }); } if (options.clearForm) { callbacks.push(function() { $form.clearForm(); }); } // perform a load on the target only if dataType is not provided if (!options.dataType && options.target) { var oldSuccess = options.success || function(){}; callbacks.push(function(data) { var fn = options.replaceTarget ? 'replaceWith' : 'html'; $(options.target)[fn](data).each(oldSuccess, arguments); }); } else if (options.success) { callbacks.push(options.success); } options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg var context = options.context || options; // jQuery 1.4+ supports scope context for (var i=0, max=callbacks.length; i < max; i++) { callbacks[i].apply(context, [data, status, xhr || $form, $form]); } }; // are there files to upload? var fileInputs = $('input:file', this).length > 0; var mp = 'multipart/form-data'; var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp); // options.iframe allows user to force iframe mode // 06-NOV-09: now defaulting to iframe mode if file input is detected if (options.iframe !== false && (fileInputs || options.iframe || multipart)) { // hack to fix Safari hang (thanks to Tim Molendijk for this) // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d if (options.closeKeepAlive) { $.get(options.closeKeepAlive, fileUpload); } else { fileUpload(); } } else { $.ajax(options); } // fire 'notify' event this.trigger('form-submit-notify', [this, options]); return this; // private function for handling file uploads (hat tip to YAHOO!) function fileUpload() { var form = $form[0]; if ($(':input[name=submit],:input[id=submit]', form).length) { // if there is an input with a name or id of 'submit' then we won't be // able to invoke the submit fn on the form (at least not x-browser) alert('Error: Form elements must not have name or id of "submit".'); return; } var s = $.extend(true, {}, $.ajaxSettings, options); s.context = s.context || s; var id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id; var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ s.iframeSrc +'" />'); var io = $io[0]; $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' }); var xhr = { // mock object aborted: 0, responseText: null, responseXML: null, status: 0, statusText: 'n/a', getAllResponseHeaders: function() {}, getResponseHeader: function() {}, setRequestHeader: function() {}, abort: function(status) { var e = (status === 'timeout' ? 'timeout' : 'aborted'); log('aborting upload... ' + e); this.aborted = 1; $io.attr('src', s.iframeSrc); // abort op in progress xhr.error = e; s.error && s.error.call(s.context, xhr, e, e); g && $.event.trigger("ajaxError", [xhr, s, e]); s.complete && s.complete.call(s.context, xhr, e); } }; var g = s.global; // trigger ajax global events so that activity/block indicators work like normal if (g && ! $.active++) { $.event.trigger("ajaxStart"); } if (g) { $.event.trigger("ajaxSend", [xhr, s]); } if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) { if (s.global) { $.active--; } return; } if (xhr.aborted) { return; } var timedOut = 0, timeoutHandle; // add submitting element to data if we know it var sub = form.clk; if (sub) { var n = sub.name; if (n && !sub.disabled) { s.extraData = s.extraData || {}; s.extraData[n] = sub.value; if (sub.type == "image") { s.extraData[n+'.x'] = form.clk_x; s.extraData[n+'.y'] = form.clk_y; } } } // take a breath so that pending repaints get some cpu time before the upload starts function doSubmit() { // make sure form attrs are set var t = $form.attr('target'), a = $form.attr('action'); // update form attrs in IE friendly way form.setAttribute('target',id); if (form.getAttribute('method') != 'POST') { form.setAttribute('method', 'POST'); } if (form.getAttribute('action') != s.url) { form.setAttribute('action', s.url); } // ie borks in some cases when setting encoding if (! s.skipEncodingOverride) { $form.attr({ encoding: 'multipart/form-data', enctype: 'multipart/form-data' }); } // support timout if (s.timeout) { timeoutHandle = setTimeout(function() { timedOut = true; cb(true); }, s.timeout); } // add "extra" data to form if provided in options var extraInputs = []; try { if (s.extraData) { for (var n in s.extraData) { extraInputs.push( $('<input type="hidden" name="'+n+'" value="'+s.extraData[n]+'" />') .appendTo(form)[0]); } } // add iframe to doc and submit the form $io.appendTo('body'); io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false); form.submit(); } finally { // reset attrs and remove "extra" input elements form.setAttribute('action',a); if(t) { form.setAttribute('target', t); } else { $form.removeAttr('target'); } $(extraInputs).remove(); } } if (s.forceSync) { doSubmit(); } else { setTimeout(doSubmit, 10); // this lets dom updates render } var data, doc, domCheckCount = 50, callbackProcessed; function cb(e) { if (xhr.aborted || callbackProcessed) { return; } if (e === true && xhr) { xhr.abort('timeout'); return; } var doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document; if (!doc || doc.location.href == s.iframeSrc) { // response not received yet if (!timedOut) return; } io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false); var ok = true; try { if (timedOut) { throw 'timeout'; } var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc); log('isXml='+isXml); if (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) { if (--domCheckCount) { // in some browsers (Opera) the iframe DOM is not always traversable when // the onload callback fires, so we loop a bit to accommodate log('requeing onLoad callback, DOM not available'); setTimeout(cb, 250); return; } // let this fall through because server response could be an empty document //log('Could not access iframe DOM after mutiple tries.'); //throw 'DOMException: not available'; } //log('response detected'); xhr.responseText = doc.body ? doc.body.innerHTML : doc.documentElement ? doc.documentElement.innerHTML : null; xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc; if (isXml) s.dataType = 'xml'; xhr.getResponseHeader = function(header){ var headers = {'content-type': s.dataType}; return headers[header]; }; var scr = /(json|script|text)/.test(s.dataType); if (scr || s.textarea) { // see if user embedded response in textarea var ta = doc.getElementsByTagName('textarea')[0]; if (ta) { xhr.responseText = ta.value; } else if (scr) { // account for browsers injecting pre around json response var pre = doc.getElementsByTagName('pre')[0]; var b = doc.getElementsByTagName('body')[0]; if (pre) { xhr.responseText = pre.textContent; } else if (b) { xhr.responseText = b.innerHTML; } } } else if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) { xhr.responseXML = toXml(xhr.responseText); } data = httpData(xhr, s.dataType, s); } catch(e){ log('error caught:',e); ok = false; xhr.error = e; s.error && s.error.call(s.context, xhr, 'error', e); g && $.event.trigger("ajaxError", [xhr, s, e]); } if (xhr.aborted) { log('upload aborted'); ok = false; } // ordering of these callbacks/triggers is odd, but that's how $.ajax does it if (ok) { s.success && s.success.call(s.context, data, 'success', xhr); g && $.event.trigger("ajaxSuccess", [xhr, s]); } g && $.event.trigger("ajaxComplete", [xhr, s]); if (g && ! --$.active) { $.event.trigger("ajaxStop"); } s.complete && s.complete.call(s.context, xhr, ok ? 'success' : 'error'); callbackProcessed = true; if (s.timeout) clearTimeout(timeoutHandle); // clean up setTimeout(function() { $io.removeData('form-plugin-onload'); $io.remove(); xhr.responseXML = null; }, 100); } var toXml = $.parseXML || function(s, doc) { // use parseXML if available (jQuery 1.5+) if (window.ActiveXObject) { doc = new ActiveXObject('Microsoft.XMLDOM'); doc.async = 'false'; doc.loadXML(s); } else { doc = (new DOMParser()).parseFromString(s, 'text/xml'); } return (doc && doc.documentElement && doc.documentElement.nodeName != 'parsererror') ? doc : null; }; var parseJSON = $.parseJSON || function(s) { return window['eval']('(' + s + ')'); }; var httpData = function( xhr, type, s ) { // mostly lifted from jq1.4.4 var ct = xhr.getResponseHeader('content-type') || '', xml = type === 'xml' || !type && ct.indexOf('xml') >= 0, data = xml ? xhr.responseXML : xhr.responseText; if (xml && data.documentElement.nodeName === 'parsererror') { $.error && $.error('parsererror'); } if (s && s.dataFilter) { data = s.dataFilter(data, type); } if (typeof data === 'string') { if (type === 'json' || !type && ct.indexOf('json') >= 0) { data = parseJSON(data); } else if (type === "script" || !type && ct.indexOf("javascript") >= 0) { $.globalEval(data); } } return data; }; } }; /** * ajaxForm() provides a mechanism for fully automating form submission. * * The advantages of using this method instead of ajaxSubmit() are: * * 1: This method will include coordinates for <input type="image" /> elements (if the element * is used to submit the form). * 2. This method will include the submit element's name/value data (for the element that was * used to submit the form). * 3. This method binds the submit() method to the form for you. * * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely * passes the options argument along after properly binding events for submit elements and * the form itself. */ $.fn.ajaxForm = function(options) { // in jQuery 1.3+ we can fix mistakes with the ready state if (this.length === 0) { var o = { s: this.selector, c: this.context }; if (!$.isReady && o.s) { log('DOM not ready, queuing ajaxForm'); $(function() { $(o.s,o.c).ajaxForm(options); }); return this; } // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready() log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)')); return this; } return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) { if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed e.preventDefault(); $(this).ajaxSubmit(options); } }).bind('click.form-plugin', function(e) { var target = e.target; var $el = $(target); if (!($el.is(":submit,input:image"))) { // is this a child element of the submit el? (ex: a span within a button) var t = $el.closest(':submit'); if (t.length == 0) { return; } target = t[0]; } var form = this; form.clk = target; if (target.type == 'image') { if (e.offsetX != undefined) { form.clk_x = e.offsetX; form.clk_y = e.offsetY; } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin var offset = $el.offset(); form.clk_x = e.pageX - offset.left; form.clk_y = e.pageY - offset.top; } else { form.clk_x = e.pageX - target.offsetLeft; form.clk_y = e.pageY - target.offsetTop; } } // clear form vars setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100); }); }; // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm $.fn.ajaxFormUnbind = function() { return this.unbind('submit.form-plugin click.form-plugin'); }; /** * formToArray() gathers form element data into an array of objects that can * be passed to any of the following ajax functions: $.get, $.post, or load. * Each object in the array has both a 'name' and 'value' property. An example of * an array for a simple login form might be: * * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ] * * It is this array that is passed to pre-submit callback functions provided to the * ajaxSubmit() and ajaxForm() methods. */ $.fn.formToArray = function(semantic) { var a = []; if (this.length === 0) { return a; } var form = this[0]; var els = semantic ? form.getElementsByTagName('*') : form.elements; if (!els) { return a; } var i,j,n,v,el,max,jmax; for(i=0, max=els.length; i < max; i++) { el = els[i]; n = el.name; if (!n) { continue; } if (semantic && form.clk && el.type == "image") { // handle image inputs on the fly when semantic == true if(!el.disabled && form.clk == el) { a.push({name: n, value: $(el).val()}); a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); } continue; } v = $.fieldValue(el, true); if (v && v.constructor == Array) { for(j=0, jmax=v.length; j < jmax; j++) { a.push({name: n, value: v[j]}); } } else if (v !== null && typeof v != 'undefined') { a.push({name: n, value: v}); } } if (!semantic && form.clk) { // input type=='image' are not found in elements array! handle it here var $input = $(form.clk), input = $input[0]; n = input.name; if (n && !input.disabled && input.type == 'image') { a.push({name: n, value: $input.val()}); a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); } } return a; }; /** * Serializes form data into a 'submittable' string. This method will return a string * in the format: name1=value1&amp;name2=value2 */ $.fn.formSerialize = function(semantic) { //hand off to jQuery.param for proper encoding return $.param(this.formToArray(semantic)); }; /** * Serializes all field elements in the jQuery object into a query string. * This method will return a string in the format: name1=value1&amp;name2=value2 */ $.fn.fieldSerialize = function(successful) { var a = []; this.each(function() { var n = this.name; if (!n) { return; } var v = $.fieldValue(this, successful); if (v && v.constructor == Array) { for (var i=0,max=v.length; i < max; i++) { a.push({name: n, value: v[i]}); } } else if (v !== null && typeof v != 'undefined') { a.push({name: this.name, value: v}); } }); //hand off to jQuery.param for proper encoding return $.param(a); }; /** * Returns the value(s) of the element in the matched set. For example, consider the following form: * * <form><fieldset> * <input name="A" type="text" /> * <input name="A" type="text" /> * <input name="B" type="checkbox" value="B1" /> * <input name="B" type="checkbox" value="B2"/> * <input name="C" type="radio" value="C1" /> * <input name="C" type="radio" value="C2" /> * </fieldset></form> * * var v = $(':text').fieldValue(); * // if no values are entered into the text inputs * v == ['',''] * // if values entered into the text inputs are 'foo' and 'bar' * v == ['foo','bar'] * * var v = $(':checkbox').fieldValue(); * // if neither checkbox is checked * v === undefined * // if both checkboxes are checked * v == ['B1', 'B2'] * * var v = $(':radio').fieldValue(); * // if neither radio is checked * v === undefined * // if first radio is checked * v == ['C1'] * * The successful argument controls whether or not the field element must be 'successful' * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls). * The default value of the successful argument is true. If this value is false the value(s) * for each element is returned. * * Note: This method *always* returns an array. If no valid value can be determined the * array will be empty, otherwise it will contain one or more values. */ $.fn.fieldValue = function(successful) { for (var val=[], i=0, max=this.length; i < max; i++) { var el = this[i]; var v = $.fieldValue(el, successful); if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) { continue; } v.constructor == Array ? $.merge(val, v) : val.push(v); } return val; }; /** * Returns the value of the field element. */ $.fieldValue = function(el, successful) { var n = el.name, t = el.type, tag = el.tagName.toLowerCase(); if (successful === undefined) { successful = true; } if (successful && (!n || el.disabled || t == 'reset' || t == 'button' || (t == 'checkbox' || t == 'radio') && !el.checked || (t == 'submit' || t == 'image') && el.form && el.form.clk != el || tag == 'select' && el.selectedIndex == -1)) { return null; } if (tag == 'select') { var index = el.selectedIndex; if (index < 0) { return null; } var a = [], ops = el.options; var one = (t == 'select-one'); var max = (one ? index+1 : ops.length); for(var i=(one ? index : 0); i < max; i++) { var op = ops[i]; if (op.selected) { var v = op.value; if (!v) { // extra pain for IE... v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value; } if (one) { return v; } a.push(v); } } return a; } return $(el).val(); }; /** * Clears the form data. Takes the following actions on the form's input fields: * - input text fields will have their 'value' property set to the empty string * - select elements will have their 'selectedIndex' property set to -1 * - checkbox and radio inputs will have their 'checked' property set to false * - inputs of type submit, button, reset, and hidden will *not* be effected * - button elements will *not* be effected */ $.fn.clearForm = function() { return this.each(function() { $('input,select,textarea', this).clearFields(); }); }; /** * Clears the selected form elements. */ $.fn.clearFields = $.fn.clearInputs = function() { return this.each(function() { var t = this.type, tag = this.tagName.toLowerCase(); if (t == 'text' || t == 'password' || tag == 'textarea') { this.value = ''; } else if (t == 'checkbox' || t == 'radio') { this.checked = false; } else if (tag == 'select') { this.selectedIndex = -1; } }); }; /** * Resets the form data. Causes all form elements to be reset to their original value. */ $.fn.resetForm = function() { return this.each(function() { // guard against an input with the name of 'reset' // note that IE reports the reset function as an 'object' if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) { this.reset(); } }); }; /** * Enables or disables any matching elements. */ $.fn.enable = function(b) { if (b === undefined) { b = true; } return this.each(function() { this.disabled = !b; }); }; /** * Checks/unchecks any matching checkboxes or radio buttons and * selects/deselects and matching option elements. */ $.fn.selected = function(select) { if (select === undefined) { select = true; } return this.each(function() { var t = this.type; if (t == 'checkbox' || t == 'radio') { this.checked = select; } else if (this.tagName.toLowerCase() == 'option') { var $sel = $(this).parent('select'); if (select && $sel[0] && $sel[0].type == 'select-one') { // deselect all other options $sel.find('option').selected(false); } this.selected = select; } }); }; // helper fn for console logging // set $.fn.ajaxSubmit.debug to true to enable debug logging function log() { if ($.fn.ajaxSubmit.debug) { var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,''); if (window.console && window.console.log) { window.console.log(msg); } else if (window.opera && window.opera.postError) { window.opera.postError(msg); } } }; })(jQuery);
0a1b2c3d4e5
trunk/BloumGenerator/include/js/jquery.form.js
JavaScript
asf20
24,105
/** * Older browsers detection */ (function($) { // Change these values to fit your needs if ( ($.browser.msie && parseFloat($.browser.version) < 7) || // IE 6 and lower ($.browser.mozilla && parseFloat($.browser.version) < 1.9) || // Firefox 2 and lower ($.browser.opera && parseFloat($.browser.version) < 9) || // Opera 8 and lower ($.browser.webkit && parseInt($.browser.version) < 400) // Older Chrome and Safari ) { // If no cookie has been set if (getCookie('forceAccess') !== 'yes') { // If coming back from the old browsers page if (window.location.search.indexOf('forceAccess=yes') > -1) { // Mark for future tests setCookie('forceAccess', 'yes'); } else { document.location.href = 'old-browsers.html?redirect='+escape(document.location.href); } } } /** * Get cookie params * @return object an object with every params in the cookie */ function getCookieParams() { var parts = document.cookie.split(/; */g); var params = {}; for (var i = 0; i < parts.length; ++i) { var part = parts[i]; if (part) { var equal = part.indexOf('='); if (equal > -1) { var param = part.substr(0, equal); var value = unescape(part.substring(equal+1)); params[param] = value; } } } return params; } /** * Get a cookie value * @param string name the cookie name * @return string the value, or null if not defined */ function getCookie(name) { var params = getCookieParams(); return params[name] || null; } /** * Write a cookie value * @param string name the cookie name * @param string value the value * @param int days number of days for cookie life * @return void */ function setCookie(name, value, days) { var params = getCookieParams(); params[name] = value; if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); params.expires = date.toGMTString(); } var cookie = []; for (var thevar in params) { cookie.push(thevar+'='+escape(params[thevar])); } document.cookie = cookie.join('; '); } })(jQuery);
0a1b2c3d4e5
trunk/BloumGenerator/include/js/old-browsers.js
JavaScript
asf20
2,231
/** * Lists generic controls */ (function($) { // List styles setup $.fn.addTemplateSetup(function() { // Closed elements this.find('.close').toggleBranchOpen().removeClass('close'); // :first-of-type is buggy with jQuery under IE this.find('dl.accordion dt:first-child + dd').siblings('dd').hide(); // Tasks dialog if (!$.browser.msie || $.browser.version > 8) // IE is buggy on this animation { this.find('.task-dialog').parent().hover(function() { $(this).find('.task-dialog > li.auto-hide').expand(); }, function() { $(this).find('.task-dialog > li.auto-hide').fold(); }); } // Arbo elements controls this.find('.arbo .toggle, .collapsible-list li:has(ul) > :first-child, .collapsible-list li:has(ul) > :first-child + span').click(function(event) { // Toggle style $(this).toggleBranchOpen(); // Prevent link action if (this.nodeName.toLowerCase() == 'a') { event.preventDefault(); } }); // Accordions effect this.find('dl.accordion dt').click(function() { $(this).next('dd').slideDown().siblings('dd').slideUp().prev('dt'); // Effect need for rounded corners $(this).addClass('opened').siblings('dt').removeClass('opened'); }); }, true); /** * Open/close branch */ $.fn.toggleBranchOpen = function() { this.each(function() { /* * Tip: if you want to add animation or do anything that should not occur at startup closing, * check if the element has the class 'close': * if (!$(this).hasClass('close')) { // Anything that sould no occur at startup } */ // Change $(this).closest('li').toggleClass('closed'); }); return this; }; })(jQuery);
0a1b2c3d4e5
trunk/BloumGenerator/include/js/list.js
JavaScript
asf20
1,789
<?php /** * Smarty plugin * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty lower modifier plugin * * Type: modifier<br> * Name: lower<br> * Purpose: convert string to lowercase * * @link http://smarty.php.net/manual/en/language.modifier.lower.php lower (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_lower($params, $compiler) { if (function_exists('mb_strtolower')) { return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strtolower(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET) : strtolower(' . $params[0] . '))' ; } else { return 'strtolower(' . $params[0] . ')'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.lower.php
PHP
asf20
870
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty capitalize modifier plugin * * Type: modifier<br> * Name: capitalize<br> * Purpose: capitalize words in the string * * @link * @author Monte Ohrt <monte at ohrt dot com> * @param string $ * @return string */ function smarty_modifier_capitalize($string, $uc_digits = false) { // uppercase with php function ucwords $upper_string = ucwords($string); // check for any missed hyphenated words $upper_string = preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ue", "'\\1'.ucfirst('\\2')", $upper_string); // check uc_digits case if (!$uc_digits) { if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!u", $string, $matches, PREG_OFFSET_CAPTURE)) { foreach($matches[1] as $match) $upper_string = substr_replace($upper_string, $match[0], $match[1], strlen($match[0])); } } return $upper_string; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.capitalize.php
PHP
asf20
984
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty count_sentences modifier plugin * * Type: modifier<br> * Name: count_sentences * Purpose: count the number of sentences in a text * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php * count_sentences (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_count_sentences($params, $compiler) { // find periods with a word before but not after. return 'preg_match_all(\'/[^\s]\.(?!\w)/\', ' . $params[0] . ', $tmp)'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_sentences.php
PHP
asf20
710
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty date_format modifier plugin * * Type: modifier<br> * Name: date_format<br> * Purpose: format datestamps via strftime<br> * Input:<br> * - string: input date string * - format: strftime format for output * - default_date: default date if $string is empty * * @link http://smarty.php.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string $ * @param string $ * @param string $ * @return string |void * @uses smarty_make_timestamp() */ function smarty_modifier_date_format($string, $format = SMARTY_RESOURCE_DATE_FORMAT, $default_date = '',$formatter='auto') { /** * Include the {@link shared.make_timestamp.php} plugin */ require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); if ($string != '') { $timestamp = smarty_make_timestamp($string); } elseif ($default_date != '') { $timestamp = smarty_make_timestamp($default_date); } else { return; } if($formatter=='strftime'||($formatter=='auto'&&strpos($format,'%')!==false)) { if (DS == '\\') { $_win_from = array('%D', '%h', '%n', '%r', '%R', '%t', '%T'); $_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S'); if (strpos($format, '%e') !== false) { $_win_from[] = '%e'; $_win_to[] = sprintf('%\' 2d', date('j', $timestamp)); } if (strpos($format, '%l') !== false) { $_win_from[] = '%l'; $_win_to[] = sprintf('%\' 2d', date('h', $timestamp)); } $format = str_replace($_win_from, $_win_to, $format); } return strftime($format, $timestamp); } else { return date($format, $timestamp); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.date_format.php
PHP
asf20
1,976
<?php /** * Smarty plugin to format text blocks * * @package Smarty * @subpackage PluginsBlock */ /** * Smarty {textformat}{/textformat} block plugin * * Type: block function<br> * Name: textformat<br> * Purpose: format text a certain way with preset styles * or custom wrap/indent settings<br> * * @link http://smarty.php.net/manual/en/language.function.textformat.php {textformat} * (Smarty online manual) * @param array $params parameters * <pre> * Params: style: string (email) * indent: integer (0) * wrap: integer (80) * wrap_char string ("\n") * indent_char: string (" ") * wrap_boundary: boolean (true) * </pre> * @author Monte Ohrt <monte at ohrt dot com> * @param string $content contents of the block * @param object $template template object * @param boolean &$repeat repeat flag * @return string content re-formatted */ function smarty_block_textformat($params, $content, $template, &$repeat) { if (is_null($content)) { return; } $style = null; $indent = 0; $indent_first = 0; $indent_char = ' '; $wrap = 80; $wrap_char = "\n"; $wrap_cut = false; $assign = null; foreach ($params as $_key => $_val) { switch ($_key) { case 'style': case 'indent_char': case 'wrap_char': case 'assign': $$_key = (string)$_val; break; case 'indent': case 'indent_first': case 'wrap': $$_key = (int)$_val; break; case 'wrap_cut': $$_key = (bool)$_val; break; default: trigger_error("textformat: unknown attribute '$_key'"); } } if ($style == 'email') { $wrap = 72; } // split into paragraphs $_paragraphs = preg_split('![\r\n][\r\n]!', $content); $_output = ''; for($_x = 0, $_y = count($_paragraphs); $_x < $_y; $_x++) { if ($_paragraphs[$_x] == '') { continue; } // convert mult. spaces & special chars to single space $_paragraphs[$_x] = preg_replace(array('!\s+!', '!(^\s+)|(\s+$)!'), array(' ', ''), $_paragraphs[$_x]); // indent first line if ($indent_first > 0) { $_paragraphs[$_x] = str_repeat($indent_char, $indent_first) . $_paragraphs[$_x]; } // wordwrap sentences $_paragraphs[$_x] = wordwrap($_paragraphs[$_x], $wrap - $indent, $wrap_char, $wrap_cut); // indent lines if ($indent > 0) { $_paragraphs[$_x] = preg_replace('!^!m', str_repeat($indent_char, $indent), $_paragraphs[$_x]); } } $_output = implode($wrap_char . $wrap_char, $_paragraphs); return $assign ? $template->assign($assign, $_output) : $_output; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/block.textformat.php
PHP
asf20
2,930
<?php /** * Smarty plugin * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {counter} function plugin * * Type: function<br> * Name: counter<br> * Purpose: print out a counter value * @author Monte Ohrt <monte at ohrt dot com> * @link http://smarty.php.net/manual/en/language.function.counter.php {counter} * (Smarty online manual) * @param array parameters * @param Smarty * @param object $template template object * @return string|null */ function smarty_function_counter($params, $template) { static $counters = array(); $name = (isset($params['name'])) ? $params['name'] : 'default'; if (!isset($counters[$name])) { $counters[$name] = array( 'start'=>1, 'skip'=>1, 'direction'=>'up', 'count'=>1 ); } $counter =& $counters[$name]; if (isset($params['start'])) { $counter['start'] = $counter['count'] = (int)$params['start']; } if (!empty($params['assign'])) { $counter['assign'] = $params['assign']; } if (isset($counter['assign'])) { $template->assign($counter['assign'], $counter['count']); } if (isset($params['print'])) { $print = (bool)$params['print']; } else { $print = empty($counter['assign']); } if ($print) { $retval = $counter['count']; } else { $retval = null; } if (isset($params['skip'])) { $counter['skip'] = $params['skip']; } if (isset($params['direction'])) { $counter['direction'] = $params['direction']; } if ($counter['direction'] == "down") $counter['count'] -= $counter['skip']; else $counter['count'] += $counter['skip']; return $retval; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.counter.php
PHP
asf20
1,797
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {popup_init} function plugin * * Type: function<br> * Name: popup_init<br> * Purpose: initialize overlib * @link http://smarty.php.net/manual/en/language.function.popup.init.php {popup_init} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * @param object $template template object * @return string */ function smarty_function_popup_init($params, $template) { $zindex = 1000; if (!empty($params['zindex'])) { $zindex = $params['zindex']; } if (!empty($params['src'])) { return '<div id="overDiv" style="position:absolute; visibility:hidden; z-index:'.$zindex.';"></div>' . "\n" . '<script type="text/javascript" language="JavaScript" src="'.$params['src'].'"></script>' . "\n"; } else { trigger_error("popup_init: missing src parameter",E_USER_WARNING); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.popup_init.php
PHP
asf20
1,032
<?php /** * Smarty shared plugin * * @package Smarty * @subpackage PluginsShared */ /** * Function: smarty_make_timestamp<br> * Purpose: used by other smarty functions to make a timestamp * from a string. * @author Monte Ohrt <monte at ohrt dot com> * @param string $string * @return string */ function smarty_make_timestamp($string) { if(empty($string)) { // use "now": return time(); } elseif ($string instanceof DateTime) { return $string->getTimestamp(); } elseif (preg_match('/^\d{14}$/', $string)) { // it is mysql timestamp format of YYYYMMDDHHMMSS? return mktime(substr($string, 8, 2),substr($string, 10, 2),substr($string, 12, 2), substr($string, 4, 2),substr($string, 6, 2),substr($string, 0, 4)); } elseif (is_numeric($string)) { // it is a numeric string, we handle it as timestamp return (int)$string; } else { // strtotime should handle it $time = strtotime($string); if ($time == -1 || $time === false) { // strtotime() was not able to parse $string, use "now": return time(); } return $time; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/shared.make_timestamp.php
PHP
asf20
1,221
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty wordwrap modifier plugin * * Type: modifier<br> * Name: wordwrap<br> * Purpose: wrap a string of text at a given length * * @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php wordwrap (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_wordwrap($params, $compiler) { if (!isset($params[1])) { $params[1] = 80; } if (!isset($params[2])) { $params[2] = '"\n"'; } if (!isset($params[3])) { $params[3] = 'false'; } return 'wordwrap(' . $params[0] . ',' . $params[1] . ',' . $params[2] . ',' . $params[3] . ')'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.wordwrap.php
PHP
asf20
845
<?php /** * Smarty plugin to execute PHP code * * @package Smarty * @subpackage PluginsBlock * @author Uwe Tews */ /** * Smarty {php}{/php} block plugin * * @param string $content contents of the block * @param object $template template object * @param boolean $ &$repeat repeat flag * @return string content re-formatted */ function smarty_block_php($params, $content, $template, &$repeat) { if (!$template->allow_php_tag) { throw new SmartyException("{php} is deprecated, set allow_php_tag = true to enable"); } eval($content); return ''; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/block.php.php
PHP
asf20
589
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty strip modifier plugin * * Type: modifier<br> * Name: strip<br> * Purpose: Replace all repeated spaces, newlines, tabs * with a single space or supplied replacement string.<br> * Example: {$var|strip} {$var|strip:"&nbsp;"} * Date: September 25th, 2002 * * @link http://smarty.php.net/manual/en/language.modifier.strip.php strip (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_strip($params, $compiler) { if (!isset($params[1])) { $params[1] = "' '"; } return "preg_replace('!\s+!', {$params[1]},{$params[0]})"; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.strip.php
PHP
asf20
820
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty strip_tags modifier plugin * * Type: modifier<br> * Name: strip_tags<br> * Purpose: strip html tags from text * * @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php strip_tags (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_strip_tags($params, $compiler) { if (!isset($params[1])) { $params[1] = true; } if ($params[1] === true) { return "preg_replace('!<[^>]*?>!', ' ', {$params[0]})"; } else { return 'strip_tags(' . $params[0] . ')'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.strip_tags.php
PHP
asf20
773
<?php /** * Smarty plugin * * This plugin is only for Smarty2 BC * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {math} function plugin * * Type: function<br> * Name: math<br> * Purpose: handle math computations in template<br> * @link http://smarty.php.net/manual/en/language.function.math.php {math} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * @param object $template template object * @return string|null */ function smarty_function_math($params, $template) { // be sure equation parameter is present if (empty($params['equation'])) { trigger_error("math: missing equation parameter",E_USER_WARNING); return; } $equation = $params['equation']; // make sure parenthesis are balanced if (substr_count($equation,"(") != substr_count($equation,")")) { trigger_error("math: unbalanced parenthesis",E_USER_WARNING); return; } // match all vars in equation, make sure all are passed preg_match_all("!(?:0x[a-fA-F0-9]+)|([a-zA-Z][a-zA-Z0-9_]*)!",$equation, $match); $allowed_funcs = array('int','abs','ceil','cos','exp','floor','log','log10', 'max','min','pi','pow','rand','round','sin','sqrt','srand','tan'); foreach($match[1] as $curr_var) { if ($curr_var && !in_array($curr_var, array_keys($params)) && !in_array($curr_var, $allowed_funcs)) { trigger_error("math: function call $curr_var not allowed",E_USER_WARNING); return; } } foreach($params as $key => $val) { if ($key != "equation" && $key != "format" && $key != "assign") { // make sure value is not empty if (strlen($val)==0) { trigger_error("math: parameter $key is empty",E_USER_WARNING); return; } if (!is_numeric($val)) { trigger_error("math: parameter $key: is not numeric",E_USER_WARNING); return; } $equation = preg_replace("/\b$key\b/", " \$params['$key'] ", $equation); } } $smarty_math_result = null; eval("\$smarty_math_result = ".$equation.";"); if (empty($params['format'])) { if (empty($params['assign'])) { return $smarty_math_result; } else { $template->assign($params['assign'],$smarty_math_result); } } else { if (empty($params['assign'])){ printf($params['format'],$smarty_math_result); } else { $template->assign($params['assign'],sprintf($params['format'],$smarty_math_result)); } } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.math.php
PHP
asf20
2,715
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_options} function plugin * * Type: function<br> * Name: html_options<br> * Purpose: Prints the list of <option> tags generated from * the passed parameters * * @link http://smarty.php.net/manual/en/language.function.html.options.php {html_image} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * Input:<br> * - name (optional) - string default "select" * - values (required if no options supplied) - array * - options (required if no values supplied) - associative array * - selected (optional) - string default not set * - output (required if not options supplied) - array * @param object $template template object * @return string * @uses smarty_function_escape_special_chars() */ function smarty_function_html_options($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); $name = null; $values = null; $options = null; $selected = array(); $output = null; $extra = ''; foreach($params as $_key => $_val) { switch ($_key) { case 'name': $$_key = (string)$_val; break; case 'options': $$_key = (array)$_val; break; case 'values': case 'output': $$_key = array_values((array)$_val); break; case 'selected': $$_key = array_map('strval', array_values((array)$_val)); break; default: if (!is_array($_val)) { $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; } else { trigger_error("html_options: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; } } if (!isset($options) && !isset($values)) return ''; /* raise error here? */ $_html_result = ''; if (isset($options)) { foreach ($options as $_key => $_val) $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected); } else { foreach ($values as $_i => $_key) { $_val = isset($output[$_i]) ? $output[$_i] : ''; $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected); } } if (!empty($name)) { $_html_result = '<select name="' . $name . '"' . $extra . '>' . "\n" . $_html_result . '</select>' . "\n"; } return $_html_result; } function smarty_function_html_options_optoutput($key, $value, $selected) { if (!is_array($value)) { $_html_result = '<option value="' . smarty_function_escape_special_chars($key) . '"'; if (in_array((string)$key, $selected)) $_html_result .= ' selected="selected"'; $_html_result .= '>' . smarty_function_escape_special_chars($value) . '</option>' . "\n"; } else { $_html_result = smarty_function_html_options_optgroup($key, $value, $selected); } return $_html_result; } function smarty_function_html_options_optgroup($key, $values, $selected) { $optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "\n"; foreach ($values as $key => $value) { $optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected); } $optgroup_html .= "</optgroup>\n"; return $optgroup_html; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_options.php
PHP
asf20
3,708
<?php /** * Smarty plugin * * @package Smarty * @subpackage Debug */ /** * Smarty debug_print_var modifier plugin * * Type: modifier<br> * Name: debug_print_var<br> * Purpose: formats variable contents for display in the console * * @link http://smarty.php.net/manual/en/language.modifier.debug.print.var.php debug_print_var (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $ |object * @param integer $ * @param integer $ * @return string */ function smarty_modifier_debug_print_var ($var, $depth = 0, $length = 40) { $_replace = array("\n" => '<i>\n</i>', "\r" => '<i>\r</i>', "\t" => '<i>\t</i>' ); switch (gettype($var)) { case 'array' : $results = '<b>Array (' . count($var) . ')</b>'; foreach ($var as $curr_key => $curr_val) { $results .= '<br>' . str_repeat('&nbsp;', $depth * 2) . '<b>' . strtr($curr_key, $_replace) . '</b> =&gt; ' . smarty_modifier_debug_print_var($curr_val, ++$depth, $length); $depth--; } break; case 'object' : $object_vars = get_object_vars($var); $results = '<b>' . get_class($var) . ' Object (' . count($object_vars) . ')</b>'; foreach ($object_vars as $curr_key => $curr_val) { $results .= '<br>' . str_repeat('&nbsp;', $depth * 2) . '<b> -&gt;' . strtr($curr_key, $_replace) . '</b> = ' . smarty_modifier_debug_print_var($curr_val, ++$depth, $length); $depth--; } break; case 'boolean' : case 'NULL' : case 'resource' : if (true === $var) { $results = 'true'; } elseif (false === $var) { $results = 'false'; } elseif (null === $var) { $results = 'null'; } else { $results = htmlspecialchars((string) $var); } $results = '<i>' . $results . '</i>'; break; case 'integer' : case 'float' : $results = htmlspecialchars((string) $var); break; case 'string' : $results = strtr($var, $_replace); if (strlen($var) > $length) { $results = substr($var, 0, $length - 3) . '...'; } $results = htmlspecialchars('"' . $results . '"'); break; case 'unknown type' : default : $results = strtr((string) $var, $_replace); if (strlen($results) > $length) { $results = substr($results, 0, $length - 3) . '...'; } $results = htmlspecialchars($results); } return $results; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.debug_print_var.php
PHP
asf20
2,840
<?php /** * Smarty plugin * @package Smarty * @subpackage PluginsModifier */ /** * Smarty spacify modifier plugin * * Type: modifier<br> * Name: spacify<br> * Purpose: add spaces between characters in a string * * @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string $ * @param string $ * @return string */ function smarty_modifier_spacify($string, $spacify_char = ' ') { // mb_ functions available? if (function_exists('mb_strlen') && mb_detect_encoding($string, 'UTF-8, ISO-8859-1') === 'UTF-8') { $strlen = mb_strlen($string); while ($strlen) { $array[] = mb_substr($string, 0, 1, "UTF-8"); $string = mb_substr($string, 1, $strlen, "UTF-8"); $strlen = mb_strlen($string); } return implode($spacify_char, $array); } else { return implode($spacify_char, preg_split('//', $string, -1)); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.spacify.php
PHP
asf20
1,029
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty escape modifier plugin * * Type: modifier<br> * Name: escape<br> * Purpose: escape string for output * * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string $string input string * @param string $esc_type escape type * @param string $char_set character set * @return string escaped input string */ function smarty_modifier_escape($string, $esc_type = 'html', $char_set = SMARTY_RESOURCE_CHAR_SET) { if (!function_exists('mb_str_replace')) { // simulate the missing PHP mb_str_replace function function mb_str_replace($needles, $replacements, $haystack) { $rep = (array)$replacements; foreach ((array)$needles as $key => $needle) { $replacement = $rep[$key]; $needle_len = mb_strlen($needle); $replacement_len = mb_strlen($replacement); $pos = mb_strpos($haystack, $needle, 0); while ($pos !== false) { $haystack = mb_substr($haystack, 0, $pos) . $replacement . mb_substr($haystack, $pos + $needle_len); $pos = mb_strpos($haystack, $needle, $pos + $replacement_len); } } return $haystack; } } switch ($esc_type) { case 'html': return htmlspecialchars($string, ENT_QUOTES, $char_set); case 'htmlall': return htmlentities($string, ENT_QUOTES, $char_set); case 'url': return rawurlencode($string); case 'urlpathinfo': return str_replace('%2F', '/', rawurlencode($string)); case 'quotes': // escape unescaped single quotes return preg_replace("%(?<!\\\\)'%", "\\'", $string); case 'hex': // escape every character into hex $return = ''; for ($x = 0; $x < strlen($string); $x++) { $return .= '%' . bin2hex($string[$x]); } return $return; case 'hexentity': $return = ''; for ($x = 0; $x < strlen($string); $x++) { $return .= '&#x' . bin2hex($string[$x]) . ';'; } return $return; case 'decentity': $return = ''; for ($x = 0; $x < strlen($string); $x++) { $return .= '&#' . ord($string[$x]) . ';'; } return $return; case 'javascript': // escape quotes and backslashes, newlines, etc. return strtr($string, array('\\' => '\\\\', "'" => "\\'", '"' => '\\"', "\r" => '\\r', "\n" => '\\n', '</' => '<\/')); case 'mail': // safe way to display e-mail address on a web page if (function_exists('mb_substr')) { return mb_str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); } else { return str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string); } case 'nonstd': // escape non-standard chars, such as ms document quotes $_res = ''; for($_i = 0, $_len = strlen($string); $_i < $_len; $_i++) { $_ord = ord(substr($string, $_i, 1)); // non-standard char, escape it if ($_ord >= 126) { $_res .= '&#' . $_ord . ';'; } else { $_res .= substr($string, $_i, 1); } } return $_res; default: return $string; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.escape.php
PHP
asf20
3,813
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty default modifier plugin * * Type: modifier<br> * Name: default<br> * Purpose: designate default value for empty variables * * @link http://smarty.php.net/manual/en/language.modifier.default.php default (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_default ($params, $compiler) { $output = $params[0]; if (!isset($params[1])) { $params[1] = "''"; } for ($i = 1, $cnt = count($params); $i < $cnt; $i++) { $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $params[$i] . ' : $tmp)'; } return $output; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.default.php
PHP
asf20
822
<?php // <button class="grey" type="button"></button> function smarty_function_action_button($params, $template) { $label = isset ($params['label']) ? $params['label'] : ''; $acao = isset ($params['action']) ? trim($params['action']) : ''; $class = isset ($params['class']) ? trim($params['class']) : ''; $tipo = isset ($params['type']) ? $params['type'] : 'button'; $extra = isset ($params['extra']) ? trim($params['extra']) : ''; $icon = isset ($params['icon']) ? trim($params['icon']) : ''; $id = isset ($params['id']) ? trim($params['id']) : ''; $button = ""; $location = ""; if(strlen($acao) > 0) $location = 'onclick="window.location.href=\''.$acao.'\'"'; $imgIcon = ""; if(strlen($icon) > 0) $imgIcon = '<img width="16" height="16" src="include/images/icons/'.$icon.'">'; $button = '<button id="'.$id.'" class="'.$class.'" '.$location.' type="'.$tipo.'" '.$extra.'>'.$imgIcon.$label.'</button>'; return $button; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.action_button.php
PHP
asf20
1,014
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_checkboxes} function plugin * * File: function.html_checkboxes.php<br> * Type: function<br> * Name: html_checkboxes<br> * Date: 24.Feb.2003<br> * Purpose: Prints out a list of checkbox input types<br> * Examples: * <pre> * {html_checkboxes values=$ids output=$names} * {html_checkboxes values=$ids name='box' separator='<br>' output=$names} * {html_checkboxes values=$ids checked=$checked separator='<br>' output=$names} * </pre> * @link http://smarty.php.net/manual/en/language.function.html.checkboxes.php {html_checkboxes} * (Smarty online manual) * @author Christopher Kvarme <christopher.kvarme@flashjab.com> * @author credits to Monte Ohrt <monte at ohrt dot com> * @version 1.0 * @param array $params parameters * Input:<br> * - name (optional) - string default "checkbox" * - values (required) - array * - options (optional) - associative array * - checked (optional) - array default not set * - separator (optional) - ie <br> or &nbsp; * - output (optional) - the output next to each checkbox * - assign (optional) - assign the output as an array to this variable * @param object $template template object * @return string * @uses smarty_function_escape_special_chars() */ function smarty_function_html_checkboxes($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); $name = 'checkbox'; $values = null; $options = null; $selected = null; $separator = ''; $labels = true; $output = null; $extra = ''; foreach($params as $_key => $_val) { switch($_key) { case 'name': case 'separator': $$_key = $_val; break; case 'labels': $$_key = (bool)$_val; break; case 'options': $$_key = (array)$_val; break; case 'values': case 'output': $$_key = array_values((array)$_val); break; case 'checked': case 'selected': $selected = array_map('strval', array_values((array)$_val)); break; case 'checkboxes': trigger_error('html_checkboxes: the use of the "checkboxes" attribute is deprecated, use "options" instead', E_USER_WARNING); $options = (array)$_val; break; case 'assign': break; default: if(!is_array($_val)) { $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"'; } else { trigger_error("html_checkboxes: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; } } if (!isset($options) && !isset($values)) return ''; /* raise error here? */ settype($selected, 'array'); $_html_result = array(); if (isset($options)) { foreach ($options as $_key=>$_val) $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels); } else { foreach ($values as $_i=>$_key) { $_val = isset($output[$_i]) ? $output[$_i] : ''; $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels); } } if(!empty($params['assign'])) { $template->assign($params['assign'], $_html_result); } else { return implode("\n",$_html_result); } } function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels) { $_output = ''; if ($labels) $_output .= '<label>'; $_output .= '<input type="checkbox" name="' . smarty_function_escape_special_chars($name) . '[]" value="' . smarty_function_escape_special_chars($value) . '"'; if (in_array((string)$value, $selected)) { $_output .= ' checked="checked"'; } $_output .= $extra . ' />' . $output; if ($labels) $_output .= '</label>'; $_output .= $separator; return $_output; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_checkboxes.php
PHP
asf20
4,413
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty noprint modifier plugin * * Type: modifier<br> * Name: noprint<br> * Purpose: return an empty string * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_noprint($params, $compiler) { return "''"; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.noprint.php
PHP
asf20
427
<?php /** * Smarty shared plugin * * @package Smarty * @subpackage PluginsShared */ /** * escape_special_chars common function * * Function: smarty_function_escape_special_chars<br> * Purpose: used by other smarty functions to escape * special chars except for already escaped ones * @author Monte Ohrt <monte at ohrt dot com> * @param string * @return string */ function smarty_function_escape_special_chars($string) { if(!is_array($string)) { $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); $string = htmlspecialchars($string); $string = str_replace(array('%%%SMARTY_START%%%','%%%SMARTY_END%%%'), array('&',';'), $string); } return $string; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/shared.escape_special_chars.php
PHP
asf20
754
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_select_time} function plugin * * Type: function<br> * Name: html_select_time<br> * Purpose: Prints the dropdowns for time selection * * @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time} * (Smarty online manual) * @author Roberto Berto <roberto@berto.net> * @credits Monte Ohrt <monte AT ohrt DOT com> * @param array $params parameters * @param object $template template object * @return string * @uses smarty_make_timestamp() */ function smarty_function_html_select_time($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php'); /* Default values. */ $prefix = "Time_"; $time = time(); $display_hours = true; $display_minutes = true; $display_seconds = true; $display_meridian = true; $use_24_hours = true; $minute_interval = 1; $second_interval = 1; /* Should the select boxes be part of an array when returned from PHP? e.g. setting it to "birthday", would create "birthday[Hour]", "birthday[Minute]", "birthday[Seconds]" & "birthday[Meridian]". Can be combined with prefix. */ $field_array = null; $all_extra = null; $hour_extra = null; $minute_extra = null; $second_extra = null; $meridian_extra = null; foreach ($params as $_key => $_value) { switch ($_key) { case 'prefix': case 'time': case 'field_array': case 'all_extra': case 'hour_extra': case 'minute_extra': case 'second_extra': case 'meridian_extra': $$_key = (string)$_value; break; case 'display_hours': case 'display_minutes': case 'display_seconds': case 'display_meridian': case 'use_24_hours': $$_key = (bool)$_value; break; case 'minute_interval': case 'second_interval': $$_key = (int)$_value; break; default: trigger_error("[html_select_time] unknown parameter $_key", E_USER_WARNING); } } $time = smarty_make_timestamp($time); $html_result = ''; if ($display_hours) { $hours = $use_24_hours ? range(0, 23) : range(1, 12); $hour_fmt = $use_24_hours ? '%H' : '%I'; for ($i = 0, $for_max = count($hours); $i < $for_max; $i++) $hours[$i] = sprintf('%02d', $hours[$i]); $html_result .= '<select name='; if (null !== $field_array) { $html_result .= '"' . $field_array . '[' . $prefix . 'Hour]"'; } else { $html_result .= '"' . $prefix . 'Hour"'; } if (null !== $hour_extra) { $html_result .= ' ' . $hour_extra; } if (null !== $all_extra) { $html_result .= ' ' . $all_extra; } $html_result .= '>' . "\n"; $html_result .= smarty_function_html_options(array('output' => $hours, 'values' => $hours, 'selected' => strftime($hour_fmt, $time), 'print_result' => false), $template); $html_result .= "</select>\n"; } if ($display_minutes) { $all_minutes = range(0, 59); for ($i = 0, $for_max = count($all_minutes); $i < $for_max; $i += $minute_interval) $minutes[] = sprintf('%02d', $all_minutes[$i]); $selected = intval(floor(strftime('%M', $time) / $minute_interval) * $minute_interval); $html_result .= '<select name='; if (null !== $field_array) { $html_result .= '"' . $field_array . '[' . $prefix . 'Minute]"'; } else { $html_result .= '"' . $prefix . 'Minute"'; } if (null !== $minute_extra) { $html_result .= ' ' . $minute_extra; } if (null !== $all_extra) { $html_result .= ' ' . $all_extra; } $html_result .= '>' . "\n"; $html_result .= smarty_function_html_options(array('output' => $minutes, 'values' => $minutes, 'selected' => $selected, 'print_result' => false), $template); $html_result .= "</select>\n"; } if ($display_seconds) { $all_seconds = range(0, 59); for ($i = 0, $for_max = count($all_seconds); $i < $for_max; $i += $second_interval) $seconds[] = sprintf('%02d', $all_seconds[$i]); $selected = intval(floor(strftime('%S', $time) / $second_interval) * $second_interval); $html_result .= '<select name='; if (null !== $field_array) { $html_result .= '"' . $field_array . '[' . $prefix . 'Second]"'; } else { $html_result .= '"' . $prefix . 'Second"'; } if (null !== $second_extra) { $html_result .= ' ' . $second_extra; } if (null !== $all_extra) { $html_result .= ' ' . $all_extra; } $html_result .= '>' . "\n"; $html_result .= smarty_function_html_options(array('output' => $seconds, 'values' => $seconds, 'selected' => $selected, 'print_result' => false), $template); $html_result .= "</select>\n"; } if ($display_meridian && !$use_24_hours) { $html_result .= '<select name='; if (null !== $field_array) { $html_result .= '"' . $field_array . '[' . $prefix . 'Meridian]"'; } else { $html_result .= '"' . $prefix . 'Meridian"'; } if (null !== $meridian_extra) { $html_result .= ' ' . $meridian_extra; } if (null !== $all_extra) { $html_result .= ' ' . $all_extra; } $html_result .= '>' . "\n"; $html_result .= smarty_function_html_options(array('output' => array('AM', 'PM'), 'values' => array('am', 'pm'), 'selected' => strtolower(strftime('%p', $time)), 'print_result' => false), $template); $html_result .= "</select>\n"; } return $html_result; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_select_time.php
PHP
asf20
6,405
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_image} function plugin * * Type: function<br> * Name: html_image<br> * Date: Feb 24, 2003<br> * Purpose: format HTML tags for the image<br> * Examples: {html_image file="/images/masthead.gif"} * Output: <img src="/images/masthead.gif" width=400 height=23> * * @link http://smarty.php.net/manual/en/language.function.html.image.php {html_image} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @author credits to Duda <duda@big.hu> * @version 1.0 * @param array $params parameters * Input:<br> * - file = file (and path) of image (required) * - height = image height (optional, default actual height) * - width = image width (optional, default actual width) * - basedir = base directory for absolute paths, default * is environment variable DOCUMENT_ROOT * - path_prefix = prefix for path output (optional, default empty) * @param object $template template object * @return string * @uses smarty_function_escape_special_chars() */ function smarty_function_html_image($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); $alt = ''; $file = ''; $height = ''; $width = ''; $extra = ''; $prefix = ''; $suffix = ''; $path_prefix = ''; $server_vars = $_SERVER; $basedir = isset($server_vars['DOCUMENT_ROOT']) ? $server_vars['DOCUMENT_ROOT'] : ''; foreach($params as $_key => $_val) { switch ($_key) { case 'file': case 'height': case 'width': case 'dpi': case 'path_prefix': case 'basedir': $$_key = $_val; break; case 'alt': if (!is_array($_val)) { $$_key = smarty_function_escape_special_chars($_val); } else { throw new SmartyException ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; case 'link': case 'href': $prefix = '<a href="' . $_val . '">'; $suffix = '</a>'; break; default: if (!is_array($_val)) { $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; } else { throw new SmartyException ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; } } if (empty($file)) { trigger_error("html_image: missing 'file' parameter", E_USER_NOTICE); return; } if (substr($file, 0, 1) == '/') { $_image_path = $basedir . $file; } else { $_image_path = $file; } if (!isset($params['width']) || !isset($params['height'])) { if (!$_image_data = @getimagesize($_image_path)) { if (!file_exists($_image_path)) { trigger_error("html_image: unable to find '$_image_path'", E_USER_NOTICE); return; } else if (!is_readable($_image_path)) { trigger_error("html_image: unable to read '$_image_path'", E_USER_NOTICE); return; } else { trigger_error("html_image: '$_image_path' is not a valid image file", E_USER_NOTICE); return; } } if (isset($template->security_policy)) { if (!$template->security_policy->isTrustedResourceDir($_image_path)) { return; } } if (!isset($params['width'])) { $width = $_image_data[0]; } if (!isset($params['height'])) { $height = $_image_data[1]; } } if (isset($params['dpi'])) { if (strstr($server_vars['HTTP_USER_AGENT'], 'Mac')) { $dpi_default = 72; } else { $dpi_default = 96; } $_resize = $dpi_default / $params['dpi']; $width = round($width * $_resize); $height = round($height * $_resize); } return $prefix . '<img src="' . $path_prefix . $file . '" alt="' . $alt . '" width="' . $width . '" height="' . $height . '"' . $extra . ' />' . $suffix; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_image.php
PHP
asf20
4,461
<?php /** * Smarty plugin * @package Smarty * @subpackage PluginsModifier */ /** * Smarty replace modifier plugin * * Type: modifier<br> * Name: replace<br> * Purpose: simple search/replace * * @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @author Uwe Tews * @param string $ * @param string $ * @param string $ * @return string */ function smarty_modifier_replace($string, $search, $replace) { if (!function_exists('mb_str_replace')) { // simulate the missing PHP mb_str_replace function function mb_str_replace($needles, $replacements, $haystack) { $rep = (array)$replacements; foreach ((array)$needles as $key => $needle) { $replacement = $rep[$key]; $needle_len = mb_strlen($needle); $replacement_len = mb_strlen($replacement); $pos = mb_strpos($haystack, $needle, 0); while ($pos !== false) { $haystack = mb_substr($haystack, 0, $pos) . $replacement . mb_substr($haystack, $pos + $needle_len); $pos = mb_strpos($haystack, $needle, $pos + $replacement_len); } } return $haystack; } } if (function_exists('mb_substr')) { return mb_str_replace($search, $replace, $string); } else { return str_replace($search, $replace, $string); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.replace.php
PHP
asf20
1,553
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_select_date} plugin * * Type: function<br> * Name: html_select_date<br> * Purpose: Prints the dropdowns for date selection. * * ChangeLog:<br> * - 1.0 initial release * - 1.1 added support for +/- N syntax for begin * and end year values. (Monte) * - 1.2 added support for yyyy-mm-dd syntax for * time value. (Jan Rosier) * - 1.3 added support for choosing format for * month values (Gary Loescher) * - 1.3.1 added support for choosing format for * day values (Marcus Bointon) * - 1.3.2 support negative timestamps, force year * dropdown to include given date unless explicitly set (Monte) * - 1.3.4 fix behaviour of 0000-00-00 00:00:00 dates to match that * of 0000-00-00 dates (cybot, boots) * * @link http://smarty.php.net/manual/en/language.function.html.select.date.php {html_select_date} * (Smarty online manual) * @version 1.3.4 * @author Andrei Zmievski * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * @param object $template template object * @return string */ function smarty_function_html_select_date($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php'); require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php'); /* Default values. */ $prefix = "Date_"; $start_year = strftime("%Y"); $end_year = $start_year; $display_days = true; $display_months = true; $display_years = true; $month_format = "%B"; /* Write months as numbers by default GL */ $month_value_format = "%m"; $day_format = "%02d"; /* Write day values using this format MB */ $day_value_format = "%d"; $year_as_text = false; /* Display years in reverse order? Ie. 2000,1999,.... */ $reverse_years = false; /* Should the select boxes be part of an array when returned from PHP? e.g. setting it to "birthday", would create "birthday[Day]", "birthday[Month]" & "birthday[Year]". Can be combined with prefix */ $field_array = null; /* <select size>'s of the different <select> tags. If not set, uses default dropdown. */ $day_size = null; $month_size = null; $year_size = null; /* Unparsed attributes common to *ALL* the <select>/<input> tags. An example might be in the template: all_extra ='class ="foo"'. */ $all_extra = null; /* Separate attributes for the tags. */ $day_extra = null; $month_extra = null; $year_extra = null; /* Order in which to display the fields. "D" -> day, "M" -> month, "Y" -> year. */ $field_order = 'MDY'; /* String printed between the different fields. */ $field_separator = "\n"; $time = time(); $all_empty = null; $day_empty = null; $month_empty = null; $year_empty = null; $extra_attrs = ''; foreach ($params as $_key => $_value) { switch ($_key) { case 'prefix': case 'time': case 'start_year': case 'end_year': case 'month_format': case 'day_format': case 'day_value_format': case 'field_array': case 'day_size': case 'month_size': case 'year_size': case 'all_extra': case 'day_extra': case 'month_extra': case 'year_extra': case 'field_order': case 'field_separator': case 'month_value_format': case 'month_empty': case 'day_empty': case 'year_empty': $$_key = (string)$_value; break; case 'all_empty': $$_key = (string)$_value; $day_empty = $month_empty = $year_empty = $all_empty; break; case 'display_days': case 'display_months': case 'display_years': case 'year_as_text': case 'reverse_years': $$_key = (bool)$_value; break; default: if (!is_array($_value)) { $extra_attrs .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_value) . '"'; } else { trigger_error("html_select_date: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; } } if (preg_match('!^-\d+$!', $time)) { // negative timestamp, use date() $time = date('Y-m-d', $time); } // If $time is not in format yyyy-mm-dd if (preg_match('/^(\d{0,4}-\d{0,2}-\d{0,2})/', $time, $found)) { $time = $found[1]; } else { // use smarty_make_timestamp to get an unix timestamp and // strftime to make yyyy-mm-dd $time = strftime('%Y-%m-%d', smarty_make_timestamp($time)); } // Now split this in pieces, which later can be used to set the select $time = explode("-", $time); // make syntax "+N" or "-N" work with start_year and end_year if (preg_match('!^(\+|\-)\s*(\d+)$!', $end_year, $match)) { if ($match[1] == '+') { $end_year = strftime('%Y') + $match[2]; } else { $end_year = strftime('%Y') - $match[2]; } } if (preg_match('!^(\+|\-)\s*(\d+)$!', $start_year, $match)) { if ($match[1] == '+') { $start_year = strftime('%Y') + $match[2]; } else { $start_year = strftime('%Y') - $match[2]; } } if (strlen($time[0]) > 0) { if ($start_year > $time[0] && !isset($params['start_year'])) { // force start year to include given date if not explicitly set $start_year = $time[0]; } if ($end_year < $time[0] && !isset($params['end_year'])) { // force end year to include given date if not explicitly set $end_year = $time[0]; } } $field_order = strtoupper($field_order); $html_result = $month_result = $day_result = $year_result = ""; $field_separator_count = -1; if ($display_months) { $field_separator_count++; $month_names = array(); $month_values = array(); if (isset($month_empty)) { $month_names[''] = $month_empty; $month_values[''] = ''; } for ($i = 1; $i <= 12; $i++) { $month_names[$i] = strftime($month_format, mktime(0, 0, 0, $i, 1, 2000)); $month_values[$i] = strftime($month_value_format, mktime(0, 0, 0, $i, 1, 2000)); } $month_result .= '<select name='; if (null !== $field_array) { $month_result .= '"' . $field_array . '[' . $prefix . 'Month]"'; } else { $month_result .= '"' . $prefix . 'Month"'; } if (null !== $month_size) { $month_result .= ' size="' . $month_size . '"'; } if (null !== $month_extra) { $month_result .= ' ' . $month_extra; } if (null !== $all_extra) { $month_result .= ' ' . $all_extra; } $month_result .= $extra_attrs . '>' . "\n"; $month_result .= smarty_function_html_options(array('output' => $month_names, 'values' => $month_values, 'selected' => (int)$time[1] ? strftime($month_value_format, mktime(0, 0, 0, (int)$time[1], 1, 2000)) : '', 'print_result' => false), $template); $month_result .= '</select>'; } if ($display_days) { $field_separator_count++; $days = array(); if (isset($day_empty)) { $days[''] = $day_empty; $day_values[''] = ''; } for ($i = 1; $i <= 31; $i++) { $days[] = sprintf($day_format, $i); $day_values[] = sprintf($day_value_format, $i); } $day_result .= '<select name='; if (null !== $field_array) { $day_result .= '"' . $field_array . '[' . $prefix . 'Day]"'; } else { $day_result .= '"' . $prefix . 'Day"'; } if (null !== $day_size) { $day_result .= ' size="' . $day_size . '"'; } if (null !== $all_extra) { $day_result .= ' ' . $all_extra; } if (null !== $day_extra) { $day_result .= ' ' . $day_extra; } $day_result .= $extra_attrs . '>' . "\n"; $day_result .= smarty_function_html_options(array('output' => $days, 'values' => $day_values, 'selected' => $time[2], 'print_result' => false), $template); $day_result .= '</select>'; } if ($display_years) { $field_separator_count++; if (null !== $field_array) { $year_name = $field_array . '[' . $prefix . 'Year]'; } else { $year_name = $prefix . 'Year'; } if ($year_as_text) { $year_result .= '<input type="text" name="' . $year_name . '" value="' . $time[0] . '" size="4" maxlength="4"'; if (null !== $all_extra) { $year_result .= ' ' . $all_extra; } if (null !== $year_extra) { $year_result .= ' ' . $year_extra; } $year_result .= ' />'; } else { $years = range((int)$start_year, (int)$end_year); if ($reverse_years) { rsort($years, SORT_NUMERIC); } else { sort($years, SORT_NUMERIC); } $yearvals = $years; if (isset($year_empty)) { array_unshift($years, $year_empty); array_unshift($yearvals, ''); } $year_result .= '<select name="' . $year_name . '"'; if (null !== $year_size) { $year_result .= ' size="' . $year_size . '"'; } if (null !== $all_extra) { $year_result .= ' ' . $all_extra; } if (null !== $year_extra) { $year_result .= ' ' . $year_extra; } $year_result .= $extra_attrs . '>' . "\n"; $year_result .= smarty_function_html_options(array('output' => $years, 'values' => $yearvals, 'selected' => $time[0], 'print_result' => false), $template); $year_result .= '</select>'; } } // Loop thru the field_order field for ($i = 0; $i <= 2; $i++) { $c = substr($field_order, $i, 1); switch ($c) { case 'D': $html_result .= $day_result; break; case 'M': $html_result .= $month_result; break; case 'Y': $html_result .= $year_result; break; } // Add the field seperator if ($i < $field_separator_count) { $html_result .= $field_separator; } } return $html_result; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_select_date.php
PHP
asf20
11,433
<?php /** <p> <label for="field1">Default block label</label> <input type="text" id="field1" name="field1"/> </p> * **/ function smarty_function_form_input($params, $template) { $required = isset ($params['required']) ? $params['required'] : false; $label = isset ($params['label']) ? $params['label'] : ''; $title = isset ($params['title']) ? $params['title'] : ''; $tipo = isset ($params['type']) ? $params['type'] : 'text'; $nome = isset ($params['name']) ? trim($params['name']) : ''; $value = isset ($params['value']) ? trim($params['value']) : ''; $extra = isset ($params['extra']) ? trim($params['extra']) : ''; $div = ""; $requiredClass = ""; if($required){ $requiredClass = 'class="required"'; } if(strlen($nome) > 0){ $div = '<p> <label for="'.$nome.'" '.$requiredClass.'>'.$label.':</label> <input type="'.$tipo.'" id="'.$nome.'" name="'.$nome.'" value="'.$value.'" '.$extra.' title="'.$title.'" class="full-width"/> </p>'; } return $div; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.form_input.php
PHP
asf20
1,118
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFilter */ /** * Smarty trimwhitespace outputfilter plugin * * File: outputfilter.trimwhitespace.php<br> * Type: outputfilter<br> * Name: trimwhitespace<br> * Date: Jan 25, 2003<br> * Purpose: trim leading white space and blank lines from * template source after it gets interpreted, cleaning * up code and saving bandwidth. Does not affect * <<PRE>></PRE> and <SCRIPT></SCRIPT> blocks.<br> * Install: Drop into the plugin directory, call * <code>$smarty->load_filter('output','trimwhitespace');</code> * from application. * @author Monte Ohrt <monte at ohrt dot com> * @author Contributions from Lars Noschinski <lars@usenet.noschinski.de> * @version 1.3 * @param string $source input string * @param object &$smarty Smarty object * @return string filtered output */ function smarty_outputfilter_trimwhitespace($source, $smarty) { // Pull out the script blocks preg_match_all("!<script[^>]*?>.*?</script>!is", $source, $match); $_script_blocks = $match[0]; $source = preg_replace("!<script[^>]*?>.*?</script>!is", '@@@SMARTY:TRIM:SCRIPT@@@', $source); // Pull out the pre blocks preg_match_all("!<pre[^>]*?>.*?</pre>!is", $source, $match); $_pre_blocks = $match[0]; $source = preg_replace("!<pre[^>]*?>.*?</pre>!is", '@@@SMARTY:TRIM:PRE@@@', $source); // Pull out the textarea blocks preg_match_all("!<textarea[^>]*?>.*?</textarea>!is", $source, $match); $_textarea_blocks = $match[0]; $source = preg_replace("!<textarea[^>]*?>.*?</textarea>!is", '@@@SMARTY:TRIM:TEXTAREA@@@', $source); // remove all leading spaces, tabs and carriage returns NOT // preceeded by a php close tag. $source = trim(preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source)); // replace textarea blocks smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:TEXTAREA@@@",$_textarea_blocks, $source); // replace pre blocks smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:PRE@@@",$_pre_blocks, $source); // replace script blocks smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:SCRIPT@@@",$_script_blocks, $source); return $source; } function smarty_outputfilter_trimwhitespace_replace($search_str, $replace, &$subject) { $_len = strlen($search_str); $_pos = 0; for ($_i=0, $_count=count($replace); $_i<$_count; $_i++) if (($_pos=strpos($subject, $search_str, $_pos))!==false) $subject = substr_replace($subject, $replace[$_i], $_pos, $_len); else break; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/outputfilter.trimwhitespace.php
PHP
asf20
2,754
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty truncate modifier plugin * * Type: modifier<br> * Name: truncate<br> * Purpose: Truncate a string to a certain length if necessary, * optionally splitting in the middle of a word, and * appending the $etc string or inserting $etc into the middle. * * @link http://smarty.php.net/manual/en/language.modifier.truncate.php truncate (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string $string input string * @param integer $length lenght of truncated text * @param string $etc end string * @param boolean $break_words truncate at word boundary * @param boolean $middle truncate in the middle of text * @return string truncated string */ function smarty_modifier_truncate($string, $length = 80, $etc = '...', $break_words = false, $middle = false) { if ($length == 0) return ''; if (is_callable('mb_strlen')) { if (mb_detect_encoding($string, 'UTF-8, ISO-8859-1') === 'UTF-8') { // $string has utf-8 encoding if (mb_strlen($string) > $length) { $length -= min($length, mb_strlen($etc)); if (!$break_words && !$middle) { $string = preg_replace('/\s+?(\S+)?$/u', '', mb_substr($string, 0, $length + 1)); } if (!$middle) { return mb_substr($string, 0, $length) . $etc; } else { return mb_substr($string, 0, $length / 2) . $etc . mb_substr($string, - $length / 2); } } else { return $string; } } } // $string has no utf-8 encoding if (strlen($string) > $length) { $length -= min($length, strlen($etc)); if (!$break_words && !$middle) { $string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length + 1)); } if (!$middle) { return substr($string, 0, $length) . $etc; } else { return substr($string, 0, $length / 2) . $etc . substr($string, - $length / 2); } } else { return $string; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.truncate.php
PHP
asf20
2,255
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty regex_replace modifier plugin * * Type: modifier<br> * Name: regex_replace<br> * Purpose: regular expression search/replace * @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php * regex_replace (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param string * @param string|array * @param string|array * @return string */ function smarty_modifier_regex_replace($string, $search, $replace) { if(is_array($search)) { foreach($search as $idx => $s) $search[$idx] = _smarty_regex_replace_check($s); } else { $search = _smarty_regex_replace_check($search); } return preg_replace($search, $replace, $string); } function _smarty_regex_replace_check($search) { if (($pos = strpos($search,"\0")) !== false) $search = substr($search,0,$pos); if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) { /* remove eval-modifier from $search */ $search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]); } return $search; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifier.regex_replace.php
PHP
asf20
1,237
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty upper modifier plugin * * Type: modifier<br> * Name: lower<br> * Purpose: convert string to uppercase * * @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_upper($params, $compiler) { if (function_exists('mb_strtoupper')) { return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strtoupper(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET) : strtoupper(' . $params[0] . '))' ; } else { return 'strtoupper(' . $params[0] . ')'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.upper.php
PHP
asf20
824
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty string_format modifier plugin * * Type: modifier<br> * Name: string_format<br> * Purpose: format strings via sprintf * * @link http://smarty.php.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_string_format($params, $compiler) { return 'sprintf(' . $params[1] . ',' . $params[0] . ')'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.string_format.php
PHP
asf20
615
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {popup} function plugin * * Type: function<br> * Name: popup<br> * Purpose: make text pop up in windows via overlib * @link http://smarty.php.net/manual/en/language.function.popup.php {popup} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * @param object $template template object * @return string */ function smarty_function_popup($params, $template) { $append = ''; foreach ($params as $_key=>$_value) { switch ($_key) { case 'text': case 'trigger': case 'function': case 'inarray': $$_key = (string)$_value; if ($_key == 'function' || $_key == 'inarray') $append .= ',' . strtoupper($_key) . ",'$_value'"; break; case 'caption': case 'closetext': case 'status': $append .= ',' . strtoupper($_key) . ",'" . str_replace("'","\'",$_value) . "'"; break; case 'fgcolor': case 'bgcolor': case 'textcolor': case 'capcolor': case 'closecolor': case 'textfont': case 'captionfont': case 'closefont': case 'fgbackground': case 'bgbackground': case 'caparray': case 'capicon': case 'background': case 'frame': $append .= ',' . strtoupper($_key) . ",'$_value'"; break; case 'textsize': case 'captionsize': case 'closesize': case 'width': case 'height': case 'border': case 'offsetx': case 'offsety': case 'snapx': case 'snapy': case 'fixx': case 'fixy': case 'padx': case 'pady': case 'timeout': case 'delay': $append .= ',' . strtoupper($_key) . ",$_value"; break; case 'sticky': case 'left': case 'right': case 'center': case 'above': case 'below': case 'noclose': case 'autostatus': case 'autostatuscap': case 'fullhtml': case 'hauto': case 'vauto': case 'mouseoff': case 'followmouse': case 'closeclick': case 'wrap': if ($_value) $append .= ',' . strtoupper($_key); break; default: trigger_error("[popup] unknown parameter $_key", E_USER_WARNING); } } if (empty($text) && !isset($inarray) && empty($function)) { trigger_error("overlib: attribute 'text' or 'inarray' or 'function' required",E_USER_WARNING); return false; } if (empty($trigger)) { $trigger = "onmouseover"; } $retval = $trigger . '="return overlib(\''.preg_replace(array("!'!",'!"!',"![\r\n]!"),array("\'","\'",'\r'),$text).'\''; $retval .= $append . ');"'; if ($trigger == 'onmouseover') $retval .= ' onmouseout="nd();"'; return $retval; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.popup.php
PHP
asf20
3,341
<?php function smarty_function_display_errors($params, $template) { $errors = isset ($params['errors']) ? $params['errors'] : null; $autoClose = isset ($params['autoClose']) ? $params['autoClose'] : false; if($errors == null || count($errors) <= 0) return ''; $div = ""; $script = ""; if($autoClose){ $script = ' <script type="text/javascript"> function fecharAutomatico(){ $(".message error").fadeOut(1200); } setTimeout("fecharAutomatico()",4000); </script> '; } $conteudo = ""; for ($i=0; $i<count($errors); $i++) { $er = $errors[$i]; $onClick = ""; $onMouseOver = ""; $onMouseOut = ""; if(strlen($er->getAtributo()) > 0){ $onClick = "onclick=\"$('#".$er->getAtributo()."').focus();\""; $onMouseOver = "onmouseover=\"$('#".$er->getAtributo()."').addClass('error');\""; $onMouseOut = "onmouseout=\"$('#".$er->getAtributo()."').removeClass('error');\""; } $conteudo .= "<span $onClick style=\"cursor: pointer;\" $onMouseOver $onMouseOut>$er<br /></span>"; } if(strlen($conteudo) > 0){ $div = $script.'<div class="message error"><span class="close-bt"></span>'.$conteudo.'</div>'; } return $div; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.display_errors.php
PHP
asf20
1,491
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty count_characters modifier plugin * * Type: modifier<br> * Name: count_characteres<br> * Purpose: count the number of characters in a text * * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_count_characters($params, $compiler) { // mb_ functions available? if (function_exists('mb_strlen')) { // count also spaces? if (isset($params[1]) && $params[1] == 'true') { return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strlen(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET) : strlen(' . $params[0] . '))'; } return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? preg_match_all(\'#[^\s\pZ]#u\', ' . $params[0] . ', $tmp) : preg_match_all(\'/[^\s]/\',' . $params[0] . ', $tmp))'; } else { // count also spaces? if (isset($params[1]) && $params[1] == 'true') { return 'strlen(' . $params[0] . ')'; } return 'preg_match_all(\'/[^\s]/\',' . $params[0] . ', $tmp)'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_characters.php
PHP
asf20
1,405
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty cat modifier plugin * * Type: modifier<br> * Name: cat<br> * Date: Feb 24, 2003 * Purpose: catenate a value to a variable * Input: string to catenate * Example: {$var|cat:"foo"} * @link http://smarty.php.net/manual/en/language.modifier.cat.php cat * (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_cat($params, $compiler) { return '('.implode(').(', $params).')'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.cat.php
PHP
asf20
649
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {fetch} plugin * * Type: function<br> * Name: fetch<br> * Purpose: fetch file, web or ftp data and display results * @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @param array $params parameters * @param object $template template object * @return string|null if the assign parameter is passed, Smarty assigns the * result to a template variable */ function smarty_function_fetch($params, $template) { if (empty($params['file'])) { trigger_error("[plugin] fetch parameter 'file' cannot be empty",E_USER_NOTICE); return; } $content = ''; if (isset($template->security_policy) && !preg_match('!^(http|ftp)://!i', $params['file'])) { if(!$template->security_policy->isTrustedResourceDir($params['file'])) { return; } // fetch the file if($fp = @fopen($params['file'],'r')) { while(!feof($fp)) { $content .= fgets ($fp,4096); } fclose($fp); } else { trigger_error('[plugin] fetch cannot read file \'' . $params['file'] . '\'',E_USER_NOTICE); return; } } else { // not a local file if(preg_match('!^http://!i',$params['file'])) { // http fetch if($uri_parts = parse_url($params['file'])) { // set defaults $host = $server_name = $uri_parts['host']; $timeout = 30; $accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*"; $agent = "Smarty Template Engine ".$template->_version; $referer = ""; $uri = !empty($uri_parts['path']) ? $uri_parts['path'] : '/'; $uri .= !empty($uri_parts['query']) ? '?' . $uri_parts['query'] : ''; $_is_proxy = false; if(empty($uri_parts['port'])) { $port = 80; } else { $port = $uri_parts['port']; } if(!empty($uri_parts['user'])) { $user = $uri_parts['user']; } if(!empty($uri_parts['pass'])) { $pass = $uri_parts['pass']; } // loop through parameters, setup headers foreach($params as $param_key => $param_value) { switch($param_key) { case "file": case "assign": case "assign_headers": break; case "user": if(!empty($param_value)) { $user = $param_value; } break; case "pass": if(!empty($param_value)) { $pass = $param_value; } break; case "accept": if(!empty($param_value)) { $accept = $param_value; } break; case "header": if(!empty($param_value)) { if(!preg_match('![\w\d-]+: .+!',$param_value)) { trigger_error("[plugin] invalid header format '".$param_value."'",E_USER_NOTICE); return; } else { $extra_headers[] = $param_value; } } break; case "proxy_host": if(!empty($param_value)) { $proxy_host = $param_value; } break; case "proxy_port": if(!preg_match('!\D!', $param_value)) { $proxy_port = (int) $param_value; } else { trigger_error("[plugin] invalid value for attribute '".$param_key."'",E_USER_NOTICE); return; } break; case "agent": if(!empty($param_value)) { $agent = $param_value; } break; case "referer": if(!empty($param_value)) { $referer = $param_value; } break; case "timeout": if(!preg_match('!\D!', $param_value)) { $timeout = (int) $param_value; } else { trigger_error("[plugin] invalid value for attribute '".$param_key."'",E_USER_NOTICE); return; } break; default: trigger_error("[plugin] unrecognized attribute '".$param_key."'",E_USER_NOTICE); return; } } if(!empty($proxy_host) && !empty($proxy_port)) { $_is_proxy = true; $fp = fsockopen($proxy_host,$proxy_port,$errno,$errstr,$timeout); } else { $fp = fsockopen($server_name,$port,$errno,$errstr,$timeout); } if(!$fp) { trigger_error("[plugin] unable to fetch: $errstr ($errno)",E_USER_NOTICE); return; } else { if($_is_proxy) { fputs($fp, 'GET ' . $params['file'] . " HTTP/1.0\r\n"); } else { fputs($fp, "GET $uri HTTP/1.0\r\n"); } if(!empty($host)) { fputs($fp, "Host: $host\r\n"); } if(!empty($accept)) { fputs($fp, "Accept: $accept\r\n"); } if(!empty($agent)) { fputs($fp, "User-Agent: $agent\r\n"); } if(!empty($referer)) { fputs($fp, "Referer: $referer\r\n"); } if(isset($extra_headers) && is_array($extra_headers)) { foreach($extra_headers as $curr_header) { fputs($fp, $curr_header."\r\n"); } } if(!empty($user) && !empty($pass)) { fputs($fp, "Authorization: BASIC ".base64_encode("$user:$pass")."\r\n"); } fputs($fp, "\r\n"); while(!feof($fp)) { $content .= fgets($fp,4096); } fclose($fp); $csplit = preg_split("!\r\n\r\n!",$content,2); $content = $csplit[1]; if(!empty($params['assign_headers'])) { $template->assign($params['assign_headers'],preg_split("!\r\n!",$csplit[0])); } } } else { trigger_error("[plugin fetch] unable to parse URL, check syntax",E_USER_NOTICE); return; } } else { // ftp fetch if($fp = @fopen($params['file'],'r')) { while(!feof($fp)) { $content .= fgets ($fp,4096); } fclose($fp); } else { trigger_error('[plugin] fetch cannot read file \'' . $params['file'] .'\'',E_USER_NOTICE); return; } } } if (!empty($params['assign'])) { $template->assign($params['assign'],$content); } else { return $content; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.fetch.php
PHP
asf20
8,557
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {mailto} function plugin * * Type: function<br> * Name: mailto<br> * Date: May 21, 2002 * Purpose: automate mailto address link creation, and optionally * encode them.<br> * * Examples: * <pre> * {mailto address="me@domain.com"} * {mailto address="me@domain.com" encode="javascript"} * {mailto address="me@domain.com" encode="hex"} * {mailto address="me@domain.com" subject="Hello to you!"} * {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"} * {mailto address="me@domain.com" extra='class="mailto"'} * </pre> * * @link http://smarty.php.net/manual/en/language.function.mailto.php {mailto} * (Smarty online manual) * @version 1.2 * @author Monte Ohrt <monte at ohrt dot com> * @author credits to Jason Sweat (added cc, bcc and subject functionality) * @param array $params parameters * Input:<br> * - address = e-mail address * - text = (optional) text to display, default is address * - encode = (optional) can be one of: * * none : no encoding (default) * * javascript : encode with javascript * * javascript_charcode : encode with javascript charcode * * hex : encode with hexidecimal (no javascript) * - cc = (optional) address(es) to carbon copy * - bcc = (optional) address(es) to blind carbon copy * - subject = (optional) e-mail subject * - newsgroups = (optional) newsgroup(s) to post to * - followupto = (optional) address(es) to follow up to * - extra = (optional) extra tags for the href link * @param object $template template object * @return string */ function smarty_function_mailto($params, $template) { $extra = ''; if (empty($params['address'])) { trigger_error("mailto: missing 'address' parameter",E_USER_WARNING); return; } else { $address = $params['address']; } $text = $address; // netscape and mozilla do not decode %40 (@) in BCC field (bug?) // so, don't encode it. $search = array('%40', '%2C'); $replace = array('@', ','); $mail_parms = array(); foreach ($params as $var => $value) { switch ($var) { case 'cc': case 'bcc': case 'followupto': if (!empty($value)) $mail_parms[] = $var . '=' . str_replace($search, $replace, rawurlencode($value)); break; case 'subject': case 'newsgroups': $mail_parms[] = $var . '=' . rawurlencode($value); break; case 'extra': case 'text': $$var = $value; default: } } $mail_parm_vals = ''; for ($i = 0; $i < count($mail_parms); $i++) { $mail_parm_vals .= (0 == $i) ? '?' : '&'; $mail_parm_vals .= $mail_parms[$i]; } $address .= $mail_parm_vals; $encode = (empty($params['encode'])) ? 'none' : $params['encode']; if (!in_array($encode, array('javascript', 'javascript_charcode', 'hex', 'none'))) { trigger_error("mailto: 'encode' parameter must be none, javascript or hex",E_USER_WARNING); return; } if ($encode == 'javascript') { $string = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; $js_encode = ''; for ($x = 0; $x < strlen($string); $x++) { $js_encode .= '%' . bin2hex($string[$x]); } return '<script type="text/javascript">eval(unescape(\'' . $js_encode . '\'))</script>'; } elseif ($encode == 'javascript_charcode') { $string = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; for($x = 0, $y = strlen($string); $x < $y; $x++) { $ord[] = ord($string[$x]); } $_ret = "<script type=\"text/javascript\" language=\"javascript\">\n"; $_ret .= "<!--\n"; $_ret .= "{document.write(String.fromCharCode("; $_ret .= implode(',', $ord); $_ret .= "))"; $_ret .= "}\n"; $_ret .= "//-->\n"; $_ret .= "</script>\n"; return $_ret; } elseif ($encode == 'hex') { preg_match('!^(.*)(\?.*)$!', $address, $match); if (!empty($match[2])) { trigger_error("mailto: hex encoding does not work with extra attributes. Try javascript.",E_USER_WARNING); return; } $address_encode = ''; for ($x = 0; $x < strlen($address); $x++) { if (preg_match('!\w!', $address[$x])) { $address_encode .= '%' . bin2hex($address[$x]); } else { $address_encode .= $address[$x]; } } $text_encode = ''; for ($x = 0; $x < strlen($text); $x++) { $text_encode .= '&#x' . bin2hex($text[$x]) . ';'; } $mailto = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;"; return '<a href="' . $mailto . $address_encode . '" ' . $extra . '>' . $text_encode . '</a>'; } else { // no encoding return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.mailto.php
PHP
asf20
5,341
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFilter */ /** * Smarty htmlspecialchars variablefilter plugin * * @param string $source input string * @param object $ &$smarty Smarty object * @return string filtered output */ function smarty_variablefilter_htmlspecialchars($source, $smarty) { return htmlspecialchars($source, ENT_QUOTES); } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/variablefilter.htmlspecialchars.php
PHP
asf20
384
<?php /** MODELO PADRAO <p class="message error"></p> /** * MODELO MENOR * * <p class="message error"></p> * */ function smarty_function_msg($params, $template) { $obj = isset ($params['obj']) ? $params['obj'] : null; $tam = isset ($params['tam']) ? $params['tam'] : ''; $tipo = isset ($params['tipo']) ? $params['tipo'] : ''; $conteudo = isset ($params['conteudo']) ? trim($params['conteudo']) : ''; $autoClose = isset ($params['autoClose']) ? $params['autoClose'] : true; $div = ""; $script = ""; if($autoClose){ $script = ' <script type="text/javascript"> function fecharAutomatico(){ $(".message '.$tipo.'").fadeOut(1200); } setTimeout("fecharAutomatico()",4000); </script> '; } if($obj != null && strlen($obj->getConteudo()) > 0){ $tipo = $obj->getTipo(); $conteudo = trim($obj->getConteudo()); } if(strlen($conteudo) > 0){ $div = $script.'<p class="message '.$tipo.'"><span class="close-bt"></span>'.$conteudo.'</p>'; } return $div; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.msg.php
PHP
asf20
1,263
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {cycle} function plugin * * Type: function<br> * Name: cycle<br> * Date: May 3, 2002<br> * Purpose: cycle through given values<br> * Input: * - name = name of cycle (optional) * - values = comma separated list of values to cycle, * or an array of values to cycle * (this can be left out for subsequent calls) * - reset = boolean - resets given var to true * - print = boolean - print var or not. default is true * - advance = boolean - whether or not to advance the cycle * - delimiter = the value delimiter, default is "," * - assign = boolean, assigns to template var instead of * printed. * * Examples:<br> * <pre> * {cycle values="#eeeeee,#d0d0d0d"} * {cycle name=row values="one,two,three" reset=true} * {cycle name=row} * </pre> * @link http://smarty.php.net/manual/en/language.function.cycle.php {cycle} * (Smarty online manual) * @author Monte Ohrt <monte at ohrt dot com> * @author credit to Mark Priatel <mpriatel@rogers.com> * @author credit to Gerard <gerard@interfold.com> * @author credit to Jason Sweat <jsweat_php@yahoo.com> * @version 1.3 * @param array * @param object $template template object * @return string|null */ function smarty_function_cycle($params, $template) { static $cycle_vars; $name = (empty($params['name'])) ? 'default' : $params['name']; $print = (isset($params['print'])) ? (bool)$params['print'] : true; $advance = (isset($params['advance'])) ? (bool)$params['advance'] : true; $reset = (isset($params['reset'])) ? (bool)$params['reset'] : false; if (!in_array('values', array_keys($params))) { if(!isset($cycle_vars[$name]['values'])) { trigger_error("cycle: missing 'values' parameter"); return; } } else { if(isset($cycle_vars[$name]['values']) && $cycle_vars[$name]['values'] != $params['values'] ) { $cycle_vars[$name]['index'] = 0; } $cycle_vars[$name]['values'] = $params['values']; } if (isset($params['delimiter'])) { $cycle_vars[$name]['delimiter'] = $params['delimiter']; } elseif (!isset($cycle_vars[$name]['delimiter'])) { $cycle_vars[$name]['delimiter'] = ','; } if(is_array($cycle_vars[$name]['values'])) { $cycle_array = $cycle_vars[$name]['values']; } else { $cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']); } if(!isset($cycle_vars[$name]['index']) || $reset ) { $cycle_vars[$name]['index'] = 0; } if (isset($params['assign'])) { $print = false; $template->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]); } if($print) { $retval = $cycle_array[$cycle_vars[$name]['index']]; } else { $retval = null; } if($advance) { if ( $cycle_vars[$name]['index'] >= count($cycle_array) -1 ) { $cycle_vars[$name]['index'] = 0; } else { $cycle_vars[$name]['index']++; } } return $retval; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.cycle.php
PHP
asf20
3,318
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_radios} function plugin * * File: function.html_radios.php<br> * Type: function<br> * Name: html_radios<br> * Date: 24.Feb.2003<br> * Purpose: Prints out a list of radio input types<br> * Examples: * <pre> * {html_radios values=$ids output=$names} * {html_radios values=$ids name='box' separator='<br>' output=$names} * {html_radios values=$ids checked=$checked separator='<br>' output=$names} * </pre> * * @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios} * (Smarty online manual) * @author Christopher Kvarme <christopher.kvarme@flashjab.com> * @author credits to Monte Ohrt <monte at ohrt dot com> * @version 1.0 * @param array $params parameters * Input:<br> * - name (optional) - string default "radio" * - values (required) - array * - options (optional) - associative array * - checked (optional) - array default not set * - separator (optional) - ie <br> or &nbsp; * - output (optional) - the output next to each radio button * - assign (optional) - assign the output as an array to this variable * @param object $template template object * @return string * @uses smarty_function_escape_special_chars() */ function smarty_function_html_radios($params, $template) { require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); $name = 'radio'; $values = null; $options = null; $selected = null; $separator = ''; $labels = true; $label_ids = false; $output = null; $extra = ''; foreach($params as $_key => $_val) { switch ($_key) { case 'name': case 'separator': $$_key = (string)$_val; break; case 'checked': case 'selected': if (is_array($_val)) { trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING); } else { $selected = (string)$_val; } break; case 'labels': case 'label_ids': $$_key = (bool)$_val; break; case 'options': $$_key = (array)$_val; break; case 'values': case 'output': $$_key = array_values((array)$_val); break; case 'radios': trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING); $options = (array)$_val; break; case 'assign': break; default: if (!is_array($_val)) { $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; } else { trigger_error("html_radios: extra attribute '$_key' cannot be an array", E_USER_NOTICE); } break; } } if (!isset($options) && !isset($values)) return ''; /* raise error here? */ $_html_result = array(); if (isset($options)) { foreach ($options as $_key => $_val) $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids); } else { foreach ($values as $_i => $_key) { $_val = isset($output[$_i]) ? $output[$_i] : ''; $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids); } } if (!empty($params['assign'])) { $template->assign($params['assign'], $_html_result); } else { return implode("\n", $_html_result); } } function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids) { $_output = ''; if ($labels) { if ($label_ids) { $_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!', '_', $name . '_' . $value)); $_output .= '<label for="' . $_id . '">'; } else { $_output .= '<label>'; } } $_output .= '<input type="radio" name="' . smarty_function_escape_special_chars($name) . '" value="' . smarty_function_escape_special_chars($value) . '"'; if ($labels && $label_ids) $_output .= ' id="' . $_id . '"'; if ((string)$value == $selected) { $_output .= ' checked="checked"'; } $_output .= $extra . ' />' . $output; if ($labels) $_output .= '</label>'; $_output .= $separator; return $_output; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_radios.php
PHP
asf20
4,894
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty count_paragraphs modifier plugin * * Type: modifier<br> * Name: count_paragraphs<br> * Purpose: count the number of paragraphs in a text * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php * count_paragraphs (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_count_paragraphs($params, $compiler) { // count \r or \n characters return '(preg_match_all(\'#[\r\n]+#\', ' . $params[0] . ', $tmp)+1)'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_paragraphs.php
PHP
asf20
696
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty count_words modifier plugin * * Type: modifier<br> * Name: count_words<br> * Purpose: count the number of words in a text * * @link http://smarty.php.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_count_words($params, $compiler) { // mb_ functions available? if (function_exists('mb_strlen')) { return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? preg_match_all(\'#[\w\pL]+#u\', ' . $params[0] . ', $tmp) : preg_match_all(\'#\w+#\',' . $params[0] . ', $tmp))'; } else { return 'str_word_count(' . $params[0] . ')'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.count_words.php
PHP
asf20
914
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFunction */ /** * Smarty {html_table} function plugin * * Type: function<br> * Name: html_table<br> * Date: Feb 17, 2003<br> * Purpose: make an html table from an array of data<br> * * * Examples: * <pre> * {table loop=$data} * {table loop=$data cols=4 tr_attr='"bgcolor=red"'} * {table loop=$data cols="first,second,third" tr_attr=$colors} * </pre> * * @author Monte Ohrt <monte at ohrt dot com> * @author credit to Messju Mohr <messju at lammfellpuschen dot de> * @author credit to boots <boots dot smarty at yahoo dot com> * @version 1.1 * @link http://smarty.php.net/manual/en/language.function.html.table.php {html_table} * (Smarty online manual) * @param array $params parameters * Input:<br> * - loop = array to loop through * - cols = number of columns, comma separated list of column names * or array of column names * - rows = number of rows * - table_attr = table attributes * - th_attr = table heading attributes (arrays are cycled) * - tr_attr = table row attributes (arrays are cycled) * - td_attr = table cell attributes (arrays are cycled) * - trailpad = value to pad trailing cells with * - caption = text for caption element * - vdir = vertical direction (default: "down", means top-to-bottom) * - hdir = horizontal direction (default: "right", means left-to-right) * - inner = inner loop (default "cols": print $loop line by line, * $loop will be printed column by column otherwise) * @param object $template template object * @return string */ function smarty_function_html_table($params, $template) { $table_attr = 'border="1"'; $tr_attr = ''; $th_attr = ''; $td_attr = ''; $cols = $cols_count = 3; $rows = 3; $trailpad = '&nbsp;'; $vdir = 'down'; $hdir = 'right'; $inner = 'cols'; $caption = ''; $loop = null; if (!isset($params['loop'])) { trigger_error("html_table: missing 'loop' parameter",E_USER_WARNING); return; } foreach ($params as $_key => $_value) { switch ($_key) { case 'loop': $$_key = (array)$_value; break; case 'cols': if (is_array($_value) && !empty($_value)) { $cols = $_value; $cols_count = count($_value); } elseif (!is_numeric($_value) && is_string($_value) && !empty($_value)) { $cols = explode(',', $_value); $cols_count = count($cols); } elseif (!empty($_value)) { $cols_count = (int)$_value; } else { $cols_count = $cols; } break; case 'rows': $$_key = (int)$_value; break; case 'table_attr': case 'trailpad': case 'hdir': case 'vdir': case 'inner': case 'caption': $$_key = (string)$_value; break; case 'tr_attr': case 'td_attr': case 'th_attr': $$_key = $_value; break; } } $loop_count = count($loop); if (empty($params['rows'])) { /* no rows specified */ $rows = ceil($loop_count / $cols_count); } elseif (empty($params['cols'])) { if (!empty($params['rows'])) { /* no cols specified, but rows */ $cols_count = ceil($loop_count / $rows); } } $output = "<table $table_attr>\n"; if (!empty($caption)) { $output .= '<caption>' . $caption . "</caption>\n"; } if (is_array($cols)) { $cols = ($hdir == 'right') ? $cols : array_reverse($cols); $output .= "<thead><tr>\n"; for ($r = 0; $r < $cols_count; $r++) { $output .= '<th' . smarty_function_html_table_cycle('th', $th_attr, $r) . '>'; $output .= $cols[$r]; $output .= "</th>\n"; } $output .= "</tr></thead>\n"; } $output .= "<tbody>\n"; for ($r = 0; $r < $rows; $r++) { $output .= "<tr" . smarty_function_html_table_cycle('tr', $tr_attr, $r) . ">\n"; $rx = ($vdir == 'down') ? $r * $cols_count : ($rows-1 - $r) * $cols_count; for ($c = 0; $c < $cols_count; $c++) { $x = ($hdir == 'right') ? $rx + $c : $rx + $cols_count-1 - $c; if ($inner != 'cols') { /* shuffle x to loop over rows*/ $x = floor($x / $cols_count) + ($x % $cols_count) * $rows; } if ($x < $loop_count) { $output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">" . $loop[$x] . "</td>\n"; } else { $output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">$trailpad</td>\n"; } } $output .= "</tr>\n"; } $output .= "</tbody>\n"; $output .= "</table>\n"; return $output; } function smarty_function_html_table_cycle($name, $var, $no) { if (!is_array($var)) { $ret = $var; } else { $ret = $var[$no % count($var)]; } return ($ret) ? ' ' . $ret : ''; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/function.html_table.php
PHP
asf20
5,465
<?php /** * Smarty plugin * @package Smarty * @subpackage PluginsModifierCompiler */ /** * Smarty indent modifier plugin * * Type: modifier<br> * Name: indent<br> * Purpose: indent lines of text * @link http://smarty.php.net/manual/en/language.modifier.indent.php * indent (Smarty online manual) * @author Uwe Tews * @param array $params parameters * @return string with compiled code */ function smarty_modifiercompiler_indent($params, $compiler) { if (!isset($params[1])) { $params[1] = 4; } if (!isset($params[2])) { $params[2] = "' '"; } return 'preg_replace(\'!^!m\',str_repeat(' . $params[2] . ',' . $params[1] . '),' . $params[0] . ')'; } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/plugins/modifiercompiler.indent.php
PHP
asf20
754
<?php /** * Project: Smarty: the PHP compiling template engine * File: Smarty.class.php * SVN: $Id: Smarty.class.php 3845 2010-12-05 17:21:02Z uwe.tews@googlemail.com $ * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * For questions, help, comments, discussion, etc., please join the * Smarty mailing list. Send a blank e-mail to * smarty-discussion-subscribe@googlegroups.com * * @link http://www.smarty.net/ * @copyright 2008 New Digital Group, Inc. * @author Monte Ohrt <monte at ohrt dot com> * @author Uwe Tews * @package Smarty * @version 3.0.6 */ /** * define shorthand directory separator constant */ if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); } /** * set SMARTY_DIR to absolute path to Smarty library files. * Sets SMARTY_DIR only if user application has not already defined it. */ if (!defined('SMARTY_DIR')) { define('SMARTY_DIR', dirname(__FILE__) . DS); } /** * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins. * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it. */ if (!defined('SMARTY_SYSPLUGINS_DIR')) { define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS); } if (!defined('SMARTY_PLUGINS_DIR')) { define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS); } if (!defined('SMARTY_RESOURCE_CHAR_SET')) { define('SMARTY_RESOURCE_CHAR_SET', 'UTF-8'); } if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) { define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y'); } /** * register the class autoloader */ if (!defined('SMARTY_SPL_AUTOLOAD')) { define('SMARTY_SPL_AUTOLOAD', 0); } if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) { $registeredAutoLoadFunctions = spl_autoload_functions(); if (!isset($registeredAutoLoadFunctions['spl_autoload'])) { spl_autoload_register(); } } else { spl_autoload_register('smartyAutoload'); } /** * This is the main Smarty class */ class Smarty extends Smarty_Internal_Data { /** * constant definitions */ // smarty version const SMARTY_VERSION = 'Smarty-3.0.6'; //define variable scopes const SCOPE_LOCAL = 0; const SCOPE_PARENT = 1; const SCOPE_ROOT = 2; const SCOPE_GLOBAL = 3; // define caching modes const CACHING_OFF = 0; const CACHING_LIFETIME_CURRENT = 1; const CACHING_LIFETIME_SAVED = 2; /** modes for handling of "<?php ... ?>" tags in templates. **/ const PHP_PASSTHRU = 0; //-> print tags as plain text const PHP_QUOTE = 1; //-> escape tags as entities const PHP_REMOVE = 2; //-> escape tags as entities const PHP_ALLOW = 3; //-> escape tags as entities // filter types const FILTER_POST = 'post'; const FILTER_PRE = 'pre'; const FILTER_OUTPUT = 'output'; const FILTER_VARIABLE = 'variable'; // plugin types const PLUGIN_FUNCTION = 'function'; const PLUGIN_BLOCK = 'block'; const PLUGIN_COMPILER = 'compiler'; const PLUGIN_MODIFIER = 'modifier'; /** * static variables */ // assigned global tpl vars static $global_tpl_vars = array(); /** * variables */ // auto literal on delimiters with whitspace public $auto_literal = true; // display error on not assigned variables public $error_unassigned = false; // template directory public $template_dir = null; // default template handler public $default_template_handler_func = null; // compile directory public $compile_dir = null; // plugins directory public $plugins_dir = null; // cache directory public $cache_dir = null; // config directory public $config_dir = null; // force template compiling? public $force_compile = false; // check template for modifications? public $compile_check = true; // locking concurrent compiles public $compile_locking = true; // use sub dirs for compiled/cached files? public $use_sub_dirs = false; // compile_error? public $compile_error = false; // caching enabled public $caching = false; // merge compiled includes public $merge_compiled_includes = false; // cache lifetime public $cache_lifetime = 3600; // force cache file creation public $force_cache = false; // cache_id public $cache_id = null; // compile_id public $compile_id = null; // template delimiters public $left_delimiter = "{"; public $right_delimiter = "}"; // security public $security_class = 'Smarty_Security'; public $security_policy = null; public $php_handling = self::PHP_PASSTHRU; public $allow_php_tag = false; public $allow_php_templates = false; public $direct_access_security = true; public $trusted_dir = array(); // debug mode public $debugging = false; public $debugging_ctrl = 'NONE'; public $smarty_debug_id = 'SMARTY_DEBUG'; public $debug_tpl = null; // When set, smarty does uses this value as error_reporting-level. public $error_reporting = null; // config var settings public $config_overwrite = true; //Controls whether variables with the same name overwrite each other. public $config_booleanize = true; //Controls whether config values of on/true/yes and off/false/no get converted to boolean public $config_read_hidden = true; //Controls whether hidden config sections/vars are read from the file. // config vars public $config_vars = array(); // assigned tpl vars public $tpl_vars = array(); // dummy parent object public $parent = null; // global template functions public $template_functions = array(); // resource type used if none given public $default_resource_type = 'file'; // caching type public $caching_type = 'file'; // internal cache resource types public $cache_resource_types = array('file'); // internal config properties public $properties = array(); // config type public $default_config_type = 'file'; // cached template objects public $template_objects = null; // check If-Modified-Since headers public $cache_modified_check = false; // registered plugins public $registered_plugins = array(); // plugin search order public $plugin_search_order = array('function', 'block', 'compiler', 'class'); // registered objects public $registered_objects = array(); // registered classes public $registered_classes = array(); // registered filters public $registered_filters = array(); // registered resources public $registered_resources = array(); // autoload filter public $autoload_filters = array(); // status of filter on variable output public $variable_filter = true; // default modifier public $default_modifiers = array(); // global internal smarty vars static $_smarty_vars = array(); // start time for execution time calculation public $start_time = 0; // default file permissions public $_file_perms = 0644; // default dir permissions public $_dir_perms = 0771; // block tag hierarchy public $_tag_stack = array(); // flag if {block} tag is compiled for template inheritance public $inheritance = false; // generate deprecated function call notices? public $deprecation_notices = true; // Smarty 2 BC public $_version = self::SMARTY_VERSION; // self pointer to Smarty object public $smarty; /** * Class constructor, initializes basic smarty properties */ public function __construct() { // selfpointer need by some other class methods $this->smarty = $this; if (is_callable('mb_internal_encoding')) { mb_internal_encoding(SMARTY_RESOURCE_CHAR_SET); } $this->start_time = microtime(true); // set default dirs $this->template_dir = array('.' . DS . 'templates' . DS); $this->compile_dir = '.' . DS . 'templates_c' . DS; $this->plugins_dir = array(SMARTY_PLUGINS_DIR); $this->cache_dir = '.' . DS . 'cache' . DS; $this->config_dir = '.' . DS . 'configs' . DS; $this->debug_tpl = SMARTY_DIR . 'debug.tpl'; if (!$this->debugging && $this->debugging_ctrl == 'URL') { if (isset($_SERVER['QUERY_STRING'])) { $_query_string = $_SERVER['QUERY_STRING']; } else { $_query_string = ''; } if (false !== strpos($_query_string, $this->smarty_debug_id)) { if (false !== strpos($_query_string, $this->smarty_debug_id . '=on')) { // enable debugging for this browser session setcookie('SMARTY_DEBUG', true); $this->debugging = true; } elseif (false !== strpos($_query_string, $this->smarty_debug_id . '=off')) { // disable debugging for this browser session setcookie('SMARTY_DEBUG', false); $this->debugging = false; } else { // enable debugging for this page $this->debugging = true; } } else { if (isset($_COOKIE['SMARTY_DEBUG'])) { $this->debugging = true; } } } if (isset($_SERVER['SCRIPT_NAME'])) { $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']); } } /** * Class destructor */ public function __destruct() { } /** * fetches a rendered Smarty template * * @param string $template the resource handle of the template file or template object * @param mixed $cache_id cache id to be used with this template * @param mixed $compile_id compile id to be used with this template * @param object $ |null $parent next higher level of Smarty variables * @return string rendered template output */ public function fetch($template, $cache_id = null, $compile_id = null, $parent = null, $display = false) { if (!empty($cache_id) && is_object($cache_id)) { $parent = $cache_id; $cache_id = null; } if ($parent === null) { // get default Smarty data object $parent = $this; } // create template object if necessary ($template instanceof $this->template_class)? $_template = $template : $_template = $this->createTemplate ($template, $cache_id, $compile_id, $parent); if (isset($this->error_reporting)) { $_smarty_old_error_level = error_reporting($this->error_reporting); } // obtain data for cache modified check if ($this->cache_modified_check && $this->caching && $display) { $_isCached = $_template->isCached() && !$_template->has_nocache_code; if ($_isCached) { $_gmt_mtime = gmdate('D, d M Y H:i:s', $_template->getCachedTimestamp()) . ' GMT'; } else { $_gmt_mtime = ''; } } // return redered template if ((!$this->caching || $_template->resource_object->isEvaluated) && (isset($this->autoload_filters['output']) || isset($this->registered_filters['output']))) { $_output = Smarty_Internal_Filter_Handler::runFilter('output', $_template->getRenderedTemplate(), $_template); } else { $_output = $_template->getRenderedTemplate(); } $_template->rendered_content = null; if (isset($this->error_reporting)) { error_reporting($_smarty_old_error_level); } // display or fetch if ($display) { if ($this->caching && $this->cache_modified_check) { $_last_modified_date = @substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_SERVER['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3); if ($_isCached && $_gmt_mtime == $_last_modified_date) { if (php_sapi_name() == 'cgi') header('Status: 304 Not Modified'); else header('HTTP/1.1 304 Not Modified'); } else { header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $_template->getCachedTimestamp()) . ' GMT'); echo $_output; } } else { echo $_output; } // debug output if ($this->debugging) { Smarty_Internal_Debug::display_debug($this); } return; } else { // return fetched content return $_output; } } /** * displays a Smarty template * * @param string $ |object $template the resource handle of the template file or template object * @param mixed $cache_id cache id to be used with this template * @param mixed $compile_id compile id to be used with this template * @param object $parent next higher level of Smarty variables */ public function display($template, $cache_id = null, $compile_id = null, $parent = null) { // display template $this->fetch ($template, $cache_id, $compile_id, $parent, true); } /** * test if cache i valid * * @param string $ |object $template the resource handle of the template file or template object * @param mixed $cache_id cache id to be used with this template * @param mixed $compile_id compile id to be used with this template * @param object $parent next higher level of Smarty variables * @return boolean cache status */ public function isCached($template, $cache_id = null, $compile_id = null, $parent = null) { if ($parent === null) { $parent = $this; } if (!($template instanceof $this->template_class)) { $template = $this->createTemplate ($template, $cache_id, $compile_id, $parent); } // return cache status of template return $template->isCached(); } /** * creates a data object * * @param object $parent next higher level of Smarty variables * @returns object data object */ public function createData($parent = null) { return new Smarty_Data($parent, $this); } /** * creates a template object * * @param string $template the resource handle of the template file * @param object $parent next higher level of Smarty variables * @param mixed $cache_id cache id to be used with this template * @param mixed $compile_id compile id to be used with this template * @returns object template object */ public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null) { if (!empty($cache_id) && (is_object($cache_id) || is_array($cache_id))) { $parent = $cache_id; $cache_id = null; } if (!empty($parent) && is_array($parent)) { $data = $parent; $parent = null; } else { $data = null; } if (!is_object($template)) { // we got a template resource // already in template cache? $_templateId = sha1($template . $cache_id . $compile_id); if (isset($this->template_objects[$_templateId]) && $this->caching) { // return cached template object $tpl = $this->template_objects[$_templateId]; } else { // create new template object $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id); } } else { // just return a copy of template class $tpl = $template; } // fill data if present if (!empty($data) && is_array($data)) { // set up variable values foreach ($data as $_key => $_val) { $tpl->tpl_vars[$_key] = new Smarty_variable($_val); } } return $tpl; } /** * Check if a template resource exists * * @param string $resource_name template name * @return boolean status */ function templateExists($resource_name) { // create template object $save = $this->template_objects; $tpl = new $this->template_class($resource_name, $this); // check if it does exists $result = $tpl->isExisting(); $this->template_objects = $save; return $result; } /** * Returns a single or all global variables * * @param object $smarty * @param string $varname variable name or null * @return string variable value or or array of variables */ function getGlobal($varname = null) { if (isset($varname)) { if (isset(self::$global_tpl_vars[$varname])) { return self::$global_tpl_vars[$varname]->value; } else { return ''; } } else { $_result = array(); foreach (self::$global_tpl_vars AS $key => $var) { $_result[$key] = $var->value; } return $_result; } } /** * Empty cache folder * * @param integer $exp_time expiration time * @param string $type resource type * @return integer number of cache files deleted */ function clearAllCache($exp_time = null, $type = null) { // load cache resource and call clearAll return $this->loadCacheResource($type)->clearAll($exp_time); } /** * Empty cache for a specific template * * @param string $template_name template name * @param string $cache_id cache id * @param string $compile_id compile id * @param integer $exp_time expiration time * @param string $type resource type * @return integer number of cache files deleted */ function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null) { // load cache resource and call clear return $this->loadCacheResource($type)->clear($template_name, $cache_id, $compile_id, $exp_time); } /** * Loads security class and enables security */ public function enableSecurity($security_class = null) { if ($security_class instanceof Smarty_Security) { $this->security_policy = $security_class; return; } if ($security_class == null) { $security_class = $this->security_class; } if (class_exists($security_class)) { $this->security_policy = new $security_class($this); } else { throw new SmartyException("Security class '$security_class' is not defined"); } } /** * Disable security */ public function disableSecurity() { $this->security_policy = null; } /** * Loads cache resource. * * @param string $type cache resource type * @return object of cache resource */ public function loadCacheResource($type = null) { if (!isset($type)) { $type = $this->caching_type; } if (in_array($type, $this->cache_resource_types)) { $cache_resource_class = 'Smarty_Internal_CacheResource_' . ucfirst($type); return new $cache_resource_class($this); } else { // try plugins dir $cache_resource_class = 'Smarty_CacheResource_' . ucfirst($type); if ($this->loadPlugin($cache_resource_class)) { return new $cache_resource_class($this); } else { throw new SmartyException("Unable to load cache resource '{$type}'"); } } } /** * Set template directory * * @param string $ |array $template_dir folder(s) of template sorces */ public function setTemplateDir($template_dir) { $this->template_dir = (array)$template_dir; return; } /** * Adds template directory(s) to existing ones * * @param string $ |array $template_dir folder(s) of template sources */ public function addTemplateDir($template_dir) { $this->template_dir = array_unique(array_merge((array)$this->template_dir, (array)$template_dir)); return; } /** * Adds directory of plugin files * * @param object $smarty * @param string $ |array $ plugins folder * @return */ function addPluginsDir($plugins_dir) { $this->plugins_dir = array_unique(array_merge((array)$this->plugins_dir, (array)$plugins_dir)); return; } /** * return a reference to a registered object * * @param string $name object name * @return object */ function getRegisteredObject($name) { if (!isset($this->registered_objects[$name])) throw new SmartyException("'$name' is not a registered object"); if (!is_object($this->registered_objects[$name][0])) throw new SmartyException("registered '$name' is not an object"); return $this->registered_objects[$name][0]; } /** * return name of debugging template * * @return string */ function getDebugTemplate() { return $this->debug_tpl; } /** * set the debug template * * @param string $tpl_name * @return bool */ function setDebugTemplate($tpl_name) { return $this->debug_tpl = $tpl_name; } /** * Takes unknown classes and loads plugin files for them * class name format: Smarty_PluginType_PluginName * plugin filename format: plugintype.pluginname.php * * @param string $plugin_name class plugin name to load * @return string |boolean filepath of loaded file or false */ public function loadPlugin($plugin_name, $check = true) { // if function or class exists, exit silently (already loaded) if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) return true; // Plugin name is expected to be: Smarty_[Type]_[Name] $_plugin_name = strtolower($plugin_name); $_name_parts = explode('_', $_plugin_name, 3); // class name must have three parts to be valid plugin if (count($_name_parts) < 3 || $_name_parts[0] !== 'smarty') { throw new SmartyException("plugin {$plugin_name} is not a valid name format"); return false; } // if type is "internal", get plugin from sysplugins if ($_name_parts[1] == 'internal') { $file = SMARTY_SYSPLUGINS_DIR . $_plugin_name . '.php'; if (file_exists($file)) { require_once($file); return $file; } else { return false; } } // plugin filename is expected to be: [type].[name].php $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php"; // loop through plugin dirs and find the plugin foreach((array)$this->plugins_dir as $_plugin_dir) { if (strpos('/\\', substr($_plugin_dir, -1)) === false) { $_plugin_dir .= DS; } $file = $_plugin_dir . $_plugin_filename; if (file_exists($file)) { require_once($file); return $file; } } // no plugin loaded return false; } /** * clean up properties on cloned object */ public function __clone() { // clear config vars $this->config_vars = array(); // clear assigned tpl vars $this->tpl_vars = array(); // clear objects for external methods unset($this->register); unset($this->filter); } /** * Handle unknown class methods * * @param string $name unknown methode name * @param array $args aurgument array */ public function __call($name, $args) { static $camel_func; if (!isset($camel_func)) $camel_func = create_function('$c', 'return "_" . strtolower($c[1]);'); // see if this is a set/get for a property $first3 = strtolower(substr($name, 0, 3)); if (in_array($first3, array('set', 'get')) && substr($name, 3, 1) !== '_') { // try to keep case correct for future PHP 6.0 case-sensitive class methods // lcfirst() not available < PHP 5.3.0, so improvise $property_name = strtolower(substr($name, 3, 1)) . substr($name, 4); // convert camel case to underscored name $property_name = preg_replace_callback('/([A-Z])/', $camel_func, $property_name); if (!property_exists($this, $property_name)) { throw new SmartyException("property '$property_name' does not exist."); return false; } if ($first3 == 'get') return $this->$property_name; else return $this->$property_name = $args[0]; } // Smarty Backward Compatible wrapper if (strpos($name,'_') !== false) { if (!isset($this->wrapper)) { $this->wrapper = new Smarty_Internal_Wrapper($this); } return $this->wrapper->convert($name, $args); } // external Smarty methods ? foreach(array('filter','register') as $external) { if (method_exists("Smarty_Internal_{$external}",$name)) { if (!isset($this->$external)) { $class = "Smarty_Internal_{$external}"; $this->$external = new $class($this); } return call_user_func_array(array($this->$external,$name), $args); } } if (in_array($name,array('clearCompiledTemplate','compileAllTemplates','compileAllConfig','testInstall','getTags'))) { if (!isset($this->utility)) { $this->utility = new Smarty_Internal_Utility($this); } return call_user_func_array(array($this->utility,$name), $args); } // PHP4 call to constructor? if (strtolower($name) == 'smarty') { throw new SmartyException('Please use parent::__construct() to call parent constuctor'); return false; } throw new SmartyException("Call of unknown function '$name'."); } } /** * Autoloader */ function smartyAutoload($class) { $_class = strtolower($class); if (substr($_class, 0, 16) === 'smarty_internal_' || $_class == 'smarty_security') { include SMARTY_SYSPLUGINS_DIR . $_class . '.php'; } } /** * Smarty exception class */ Class SmartyException extends Exception { } /** * Smarty compiler exception class */ Class SmartyCompilerException extends SmartyException { } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/Smarty.class.php
PHP
asf20
27,805
{capture name='_smarty_debug' assign=debug_output} <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>Smarty Debug Console</title> <style type="text/css"> {literal} body, h1, h2, td, th, p { font-family: sans-serif; font-weight: normal; font-size: 0.9em; margin: 1px; padding: 0; } h1 { margin: 0; text-align: left; padding: 2px; background-color: #f0c040; color: black; font-weight: bold; font-size: 1.2em; } h2 { background-color: #9B410E; color: white; text-align: left; font-weight: bold; padding: 2px; border-top: 1px solid black; } body { background: black; } p, table, div { background: #f0ead8; } p { margin: 0; font-style: italic; text-align: center; } table { width: 100%; } th, td { font-family: monospace; vertical-align: top; text-align: left; width: 50%; } td { color: green; } .odd { background-color: #eeeeee; } .even { background-color: #fafafa; } .exectime { font-size: 0.8em; font-style: italic; } #table_assigned_vars th { color: blue; } #table_config_vars th { color: maroon; } {/literal} </style> </head> <body> <h1>Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}</h1> {if !empty($template_data)} <h2>included templates &amp; config files (load time in seconds)</h2> <div> {foreach $template_data as $template} <font color=brown>{$template.name}</font> <span class="exectime"> (compile {$template['compile_time']|string_format:"%.5f"}) (render {$template['render_time']|string_format:"%.5f"}) (cache {$template['cache_time']|string_format:"%.5f"}) </span> <br> {/foreach} </div> {/if} <h2>assigned template variables</h2> <table id="table_assigned_vars"> {foreach $assigned_vars as $vars} <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <th>${$vars@key|escape:'html'}</th> <td>{$vars|debug_print_var}</td></tr> {/foreach} </table> <h2>assigned config file variables (outer template scope)</h2> <table id="table_config_vars"> {foreach $config_vars as $vars} <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <th>{$vars@key|escape:'html'}</th> <td>{$vars|debug_print_var}</td></tr> {/foreach} </table> </body> </html> {/capture} <script type="text/javascript"> {$id = $template_name|default:''|md5} _smarty_console = window.open("","console{$id}","width=680,height=600,resizable,scrollbars=yes"); _smarty_console.document.write("{$debug_output|escape:'javascript'}"); _smarty_console.document.close(); </script>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/debug.tpl
Smarty
asf20
2,827
<?php /** * Smarty Internal Plugin Debug * * Class to collect data for the Smarty Debugging Consol * * @package Smarty * @subpackage Debug * @author Uwe Tews */ /** * Smarty Internal Plugin Debug Class */ class Smarty_Internal_Debug extends Smarty_Internal_Data { // template data static $template_data = array(); /** * Start logging of compile time */ public static function start_compile($template) { $key = self::get_key($template); self::$template_data[$key]['start_time'] = microtime(true); } /** * End logging of compile time */ public static function end_compile($template) { $key = self::get_key($template); self::$template_data[$key]['compile_time'] += microtime(true) - self::$template_data[$key]['start_time']; } /** * Start logging of render time */ public static function start_render($template) { $key = self::get_key($template); self::$template_data[$key]['start_time'] = microtime(true); } /** * End logging of compile time */ public static function end_render($template) { $key = self::get_key($template); self::$template_data[$key]['render_time'] += microtime(true) - self::$template_data[$key]['start_time']; } /** * Start logging of cache time */ public static function start_cache($template) { $key = self::get_key($template); self::$template_data[$key]['start_time'] = microtime(true); } /** * End logging of cache time */ public static function end_cache($template) { $key = self::get_key($template); self::$template_data[$key]['cache_time'] += microtime(true) - self::$template_data[$key]['start_time']; } /** * Opens a window for the Smarty Debugging Consol and display the data */ public static function display_debug($obj) { // prepare information of assigned variables $ptr = self::get_debug_vars($obj); if ($obj instanceof Smarty) { $smarty = $obj; } else { $smarty = $obj->smarty; } $_assigned_vars = $ptr->tpl_vars; ksort($_assigned_vars); $_config_vars = $ptr->config_vars; ksort($_config_vars); $ldelim = $smarty->left_delimiter; $rdelim = $smarty->right_delimiter; $smarty->left_delimiter = '{'; $smarty->right_delimiter = '}'; $_template = new Smarty_Internal_Template ($smarty->debug_tpl, $smarty); $_template->caching = false; $_template->force_compile = false; $_template->disableSecurity(); $_template->cache_id = null; $_template->compile_id = null; if ($obj instanceof Smarty_Internal_Template) { $_template->assign('template_name',$obj->resource_type.':'.$obj->resource_name); } if ($obj instanceof Smarty) { $_template->assign('template_data', self::$template_data); } else { $_template->assign('template_data', null); } $_template->assign('assigned_vars', $_assigned_vars); $_template->assign('config_vars', $_config_vars); $_template->assign('execution_time', microtime(true) - $smarty->start_time); echo $_template->getRenderedTemplate(); $smarty->left_delimiter = $ldelim; $smarty->right_delimiter = $rdelim; } /* * Recursively gets variables from all template/data scopes */ public static function get_debug_vars($obj) { $config_vars = $obj->config_vars; $tpl_vars = array(); foreach ($obj->tpl_vars as $key => $var) { $tpl_vars[$key] = clone $var; if ($obj instanceof Smarty_Internal_Template) { $tpl_vars[$key]->scope = $obj->resource_type.':'.$obj->resource_name; } elseif ($obj instanceof Smarty_Data) { $tpl_vars[$key]->scope = 'Data object'; } else { $tpl_vars[$key]->scope = 'Smarty root'; } } if (isset($obj->parent)) { $parent = self::get_debug_vars($obj->parent); $tpl_vars = array_merge($parent->tpl_vars, $tpl_vars); $config_vars = array_merge($parent->config_vars, $config_vars); } else { foreach (Smarty::$global_tpl_vars as $name => $var) { if (!array_key_exists($name, $tpl_vars)) { $clone = clone $var; $clone->scope = 'Global'; $tpl_vars[$name] = $clone; } } } return (object) array('tpl_vars' => $tpl_vars, 'config_vars' => $config_vars); } /** * get_key */ static function get_key($template) { // calculate Uid if not already done if ($template->templateUid == '') { $template->getTemplateFilepath(); } $key = $template->templateUid; if (isset(self::$template_data[$key])) { return $key; } else { self::$template_data[$key]['name'] = $template->getTemplateFilepath(); self::$template_data[$key]['compile_time'] = 0; self::$template_data[$key]['render_time'] = 0; self::$template_data[$key]['cache_time'] = 0; return $key; } } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_debug.php
PHP
asf20
4,580
<?php /** * Smarty Internal Plugin Compile Modifier * * Compiles code for modifier execution * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Modifier Class */ class Smarty_Internal_Compile_Private_Modifier extends Smarty_Internal_CompileBase { /** * Compiles code for modifier execution * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; $this->smarty = $this->compiler->smarty; // check and get attributes $_attr = $this->_get_attributes($args); $output = $parameter['value']; // loop over list of modifiers foreach ($parameter['modifierlist'] as $single_modifier) { $modifier = $single_modifier[0]; $single_modifier[0] = $output; $params = implode(',', $single_modifier); // check for registered modifier if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier])) { $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier][0]; if (!is_array($function)) { $output = "{$function}({$params})"; } else { if (is_object($function[0])) { $output = '$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][\'' . $modifier . '\'][0][0]->' . $function[1] . '(' . $params . ')'; } else { $output = $function[0] . '::' . $function[1] . '(' . $params . ')'; } } // check for plugin modifiercompiler } else if ($compiler->smarty->loadPlugin('smarty_modifiercompiler_' . $modifier)) { $plugin = 'smarty_modifiercompiler_' . $modifier; $output = $plugin($single_modifier, $compiler); // check for plugin modifier } else if ($function = $this->compiler->getPlugin($modifier, Smarty::PLUGIN_MODIFIER)) { $output = "{$function}({$params})"; // check if trusted PHP function } else if (is_callable($modifier)) { // check if modifier allowed if (!is_object($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedModifier($modifier, $this->compiler)) { $output = "{$modifier}({$params})"; } } else { $this->compiler->trigger_template_error ("unknown modifier \"" . $modifier . "\"", $this->compiler->lex->taglineno); } } return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_modifier.php
PHP
asf20
2,992
<?php /** * Smarty Internal Plugin Compile Rdelim * * Compiles the {rdelim} tag * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Rdelim Class */ class Smarty_Internal_Compile_Rdelim extends Smarty_Internal_CompileBase { /** * Compiles code for the {rdelim} tag * * This tag does output the right delimiter * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } // this tag does not return compiled code $this->compiler->has_code = true; return $this->compiler->smarty->right_delimiter; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_rdelim.php
PHP
asf20
1,005
<?php /** * Smarty Internal Plugin Resource Stream * * Implements the streams as resource for Smarty template * * @package Smarty * @subpackage TemplateResources * @author Uwe Tews */ /** * Smarty Internal Plugin Resource Stream */ class Smarty_Internal_Resource_Stream { public function __construct($smarty) { $this->smarty = $smarty; } // classes used for compiling Smarty templates from file resource public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler'; public $template_lexer_class = 'Smarty_Internal_Templatelexer'; public $template_parser_class = 'Smarty_Internal_Templateparser'; // properties public $usesCompiler = true; public $isEvaluated = true; /** * Return flag if template source is existing * * @return boolean true */ public function isExisting($template) { if ($template->getTemplateSource() == '') { return false; } else { return true; } } /** * Get filepath to template source * * @param object $_template template object * @return string return 'string' as template source is not a file */ public function getTemplateFilepath($_template) { // no filepath for strings // return resource name for compiler error messages return str_replace(':', '://', $_template->template_resource); } /** * Get timestamp to template source * * @param object $_template template object * @return boolean false as string resources have no timestamp */ public function getTemplateTimestamp($_template) { // strings must always be compiled and have no timestamp return false; } /** * Retuen template source from resource name * * @param object $_template template object * @return string content of template source */ public function getTemplateSource($_template) { // return template string $_template->template_source = ''; $fp = fopen(str_replace(':', '://', $_template->template_resource),'r+'); while (!feof($fp)) { $_template->template_source .= fgets($fp); } fclose($fp); return true; } /** * Get filepath to compiled template * * @param object $_template template object * @return boolean return false as compiled template is not stored */ public function getCompiledFilepath($_template) { // no filepath for strings return false; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_stream.php
PHP
asf20
2,619
<?php /** * Smarty Internal Plugin Compile Eval * * Compiles the {eval} tag * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Eval Class */ class Smarty_Internal_Compile_Eval extends Smarty_Internal_CompileBase { public $required_attributes = array('var'); public $optional_attributes = array('assign'); public $shorttag_order = array('var','assign'); /** * Compiles code for the {eval} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $this->required_attributes = array('var'); $this->optional_attributes = array('assign'); // check and get attributes $_attr = $this->_get_attributes($args); if (isset($_attr['assign'])) { // output will be stored in a smarty variable instead of beind displayed $_assign = $_attr['assign']; } // create template object $_output = "\$_template = new {$compiler->smarty->template_class}('eval:'.".$_attr['var'].", \$_smarty_tpl->smarty, \$_smarty_tpl);"; //was there an assign attribute? if (isset($_assign)) { $_output .= "\$_smarty_tpl->assign($_assign,\$_template->getRenderedTemplate());"; } else { $_output .= "echo \$_template->getRenderedTemplate();"; } return "<?php $_output ?>"; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_eval.php
PHP
asf20
1,587
<?php /** * Smarty Internal Plugin Compile Nocache * * Compiles the {nocache} {/nocache} tags * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Nocache Class */ class Smarty_Internal_Compile_Nocache extends Smarty_Internal_CompileBase { /** * Compiles code for the {nocache} tag * * This tag does not generate compiled output. It only sets a compiler flag * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } // enter nocache mode $this->compiler->nocache = true; // this tag does not return compiled code $this->compiler->has_code = false; return true; } } /** * Smarty Internal Plugin Compile Nocacheclose Class */ class Smarty_Internal_Compile_Nocacheclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/nocache} tag * * This tag does not generate compiled output. It only sets a compiler flag * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $_attr = $this->_get_attributes($args); // leave nocache mode $this->compiler->nocache = false; // this tag does not return compiled code $this->compiler->has_code = false; return true; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_nocache.php
PHP
asf20
1,860
<?php /** * Smarty Internal Plugin Template * * This file contains the Smarty template engine * * @package Smarty * @subpackage Templates * @author Uwe Tews */ /** * Main class with template data structures and methods */ class Smarty_Internal_Template extends Smarty_Internal_Data { // object cache public $compiler_object = null; public $cacher_object = null; // Smarty parameter public $cache_id = null; public $compile_id = null; public $caching = null; public $cache_lifetime = null; public $cacher_class = null; public $caching_type = null; public $forceNocache = false; // Template resource public $template_resource = null; public $resource_type = null; public $resource_name = null; // public $resource_object = null; private $isExisting = null; public $templateUid = ''; // Template source public $template_filepath = null; public $template_source = null; private $template_timestamp = null; // Compiled template private $compiled_filepath = null; public $compiled_template = null; private $compiled_timestamp = null; public $mustCompile = null; public $suppressHeader = false; public $suppressFileDependency = false; public $has_nocache_code = false; public $write_compiled_code = true; // Rendered content public $rendered_content = null; // Cache file private $cached_filepath = null; public $cached_timestamp = null; private $isCached = null; // private $cache_resource_object = null; private $cacheFileChecked = false; // template variables public $tpl_vars = array(); public $parent = null; public $config_vars = array(); // storage for plugin public $plugin_data = array(); // special properties public $properties = array ('file_dependency' => array(), 'nocache_hash' => '', 'function' => array()); // required plugins public $required_plugins = array('compiled' => array(), 'nocache' => array()); public $saved_modifier = null; public $smarty = null; // blocks for template inheritance public $block_data = array(); public $wrapper = null; /** * Create template data object * * Some of the global Smarty settings copied to template scope * It load the required template resources and cacher plugins * * @param string $template_resource template resource string * @param object $_parent back pointer to parent object with variables or null * @param mixed $_cache_id cache id or null * @param mixed $_compile_id compile id or null */ public function __construct($template_resource, $smarty, $_parent = null, $_cache_id = null, $_compile_id = null, $_caching = null, $_cache_lifetime = null) { $this->smarty = &$smarty; // Smarty parameter $this->cache_id = $_cache_id === null ? $this->smarty->cache_id : $_cache_id; $this->compile_id = $_compile_id === null ? $this->smarty->compile_id : $_compile_id; $this->caching = $_caching === null ? $this->smarty->caching : $_caching; if ($this->caching === true) $this->caching = Smarty::CACHING_LIFETIME_CURRENT; $this->cache_lifetime = $_cache_lifetime === null ?$this->smarty->cache_lifetime : $_cache_lifetime; $this->parent = $_parent; // dummy local smarty variable $this->tpl_vars['smarty'] = new Smarty_Variable; // Template resource $this->template_resource = $template_resource; // copy block data of template inheritance if ($this->parent instanceof Smarty_Internal_Template) { $this->block_data = $this->parent->block_data; } } /** * Returns the template filepath * * The template filepath is determined by the actual resource handler * * @return string the template filepath */ public function getTemplateFilepath () { return $this->template_filepath === null ? $this->template_filepath = $this->resource_object->getTemplateFilepath($this) : $this->template_filepath; } /** * Returns the timpestamp of the template source * * The template timestamp is determined by the actual resource handler * * @return integer the template timestamp */ public function getTemplateTimestamp () { return $this->template_timestamp === null ? $this->template_timestamp = $this->resource_object->getTemplateTimestamp($this) : $this->template_timestamp; } /** * Returns the template source code * * The template source is being read by the actual resource handler * * @return string the template source */ public function getTemplateSource () { if ($this->template_source === null) { if (!$this->resource_object->getTemplateSource($this)) { throw new SmartyException("Unable to read template {$this->resource_type} '{$this->resource_name}'"); } } return $this->template_source; } /** * Returns if the template is existing * * The status is determined by the actual resource handler * * @return boolean true if the template exists */ public function isExisting ($error = false) { if ($this->isExisting === null) { $this->isExisting = $this->resource_object->isExisting($this); } if (!$this->isExisting && $error) { throw new SmartyException("Unable to load template {$this->resource_type} '{$this->resource_name}'"); } return $this->isExisting; } /** * Returns if the current template must be compiled by the Smarty compiler * * It does compare the timestamps of template source and the compiled templates and checks the force compile configuration * * @return boolean true if the template must be compiled */ public function mustCompile () { $this->isExisting(true); if ($this->mustCompile === null) { $this->mustCompile = ($this->resource_object->usesCompiler && ($this->smarty->force_compile || $this->resource_object->isEvaluated || $this->getCompiledTimestamp () === false || // ($this->smarty->compile_check && $this->getCompiledTimestamp () !== $this->getTemplateTimestamp ()))); ($this->smarty->compile_check && $this->getCompiledTimestamp () < $this->getTemplateTimestamp ()))); } return $this->mustCompile; } /** * Returns the compiled template filepath * * @return string the template filepath */ public function getCompiledFilepath () { return $this->compiled_filepath === null ? ($this->compiled_filepath = !$this->resource_object->isEvaluated ? $this->resource_object->getCompiledFilepath($this) : false) : $this->compiled_filepath; } /** * Returns the timpestamp of the compiled template * * @return integer the template timestamp */ public function getCompiledTimestamp () { return $this->compiled_timestamp === null ? ($this->compiled_timestamp = (!$this->resource_object->isEvaluated && file_exists($this->getCompiledFilepath())) ? filemtime($this->getCompiledFilepath()) : false) : $this->compiled_timestamp; } /** * Returns the compiled template * * It checks if the template must be compiled or just read from the template resource * * @return string the compiled template */ public function getCompiledTemplate () { if ($this->compiled_template === null) { // see if template needs compiling. if ($this->mustCompile()) { $this->compileTemplateSource(); } else { if ($this->compiled_template === null) { $this->compiled_template = !$this->resource_object->isEvaluated && $this->resource_object->usesCompiler ? file_get_contents($this->getCompiledFilepath()) : false; } } } return $this->compiled_template; } /** * Compiles the template * * If the template is not evaluated the compiled template is saved on disk */ public function compileTemplateSource () { if (!$this->resource_object->isEvaluated) { $this->properties['file_dependency'] = array(); $this->properties['file_dependency'][$this->templateUid] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp(),$this->resource_type); } if ($this->smarty->debugging) { Smarty_Internal_Debug::start_compile($this); } // compile template if (!is_object($this->compiler_object)) { // load compiler $this->smarty->loadPlugin($this->resource_object->compiler_class); $this->compiler_object = new $this->resource_object->compiler_class($this->resource_object->template_lexer_class, $this->resource_object->template_parser_class, $this->smarty); } // compile locking if ($this->smarty->compile_locking && !$this->resource_object->isEvaluated) { if ($saved_timestamp = $this->getCompiledTimestamp()) { touch($this->getCompiledFilepath()); } } // call compiler try { $this->compiler_object->compileTemplate($this); } catch (Exception $e) { // restore old timestamp in case of error if ($this->smarty->compile_locking && !$this->resource_object->isEvaluated && $saved_timestamp) { touch($this->getCompiledFilepath(), $saved_timestamp); } throw $e; } // compiling succeded if (!$this->resource_object->isEvaluated && $this->write_compiled_code) { // write compiled template Smarty_Internal_Write_File::writeFile($this->getCompiledFilepath(), $this->compiled_template, $this->smarty); } if ($this->smarty->debugging) { Smarty_Internal_Debug::end_compile($this); } } /** * Returns the filepath of the cached template output * * The filepath is determined by the actual cache resource * * @return string the cache filepath */ public function getCachedFilepath () { return $this->cached_filepath === null ? $this->cached_filepath = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedFilepath($this) : $this->cached_filepath; } /** * Returns the timpestamp of the cached template output * * The timestamp is determined by the actual cache resource * * @return integer the template timestamp */ public function getCachedTimestamp () { return $this->cached_timestamp === null ? $this->cached_timestamp = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedTimestamp($this) : $this->cached_timestamp; } /** * Returns the cached template output * * @return string |booelan the template content or false if the file does not exist */ public function getCachedContent () { return $this->rendered_content === null ? $this->rendered_content = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedContents($this) : $this->rendered_content; } /** * Writes the cached template output */ public function writeCachedContent ($content) { if ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) { // don't write cache file return false; } $this->properties['cache_lifetime'] = $this->cache_lifetime; return $this->cache_resource_object->writeCachedContent($this, $this->createPropertyHeader(true) .$content); } /** * Checks of a valid version redered HTML output is in the cache * * If the cache is valid the contents is stored in the template object * * @return boolean true if cache is valid */ public function isCached ($template = null, $cache_id = null, $compile_id = null, $parent = null) { if ($template === null) { $no_render = true; } elseif ($template === false) { $no_render = false; } else { if ($parent === null) { $parent = $this; } $this->smarty->isCached ($template, $cache_id, $compile_id, $parent); } if ($this->isCached === null) { $this->isCached = false; if (($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED) && !$this->resource_object->isEvaluated) { $cachedTimestamp = $this->getCachedTimestamp(); if ($cachedTimestamp === false || $this->smarty->force_compile || $this->smarty->force_cache) { return $this->isCached; } if ($this->caching === Smarty::CACHING_LIFETIME_SAVED || ($this->caching == Smarty::CACHING_LIFETIME_CURRENT && (time() <= ($cachedTimestamp + $this->cache_lifetime) || $this->cache_lifetime < 0))) { if ($this->smarty->debugging) { Smarty_Internal_Debug::start_cache($this); } $this->rendered_content = $this->cache_resource_object->getCachedContents($this, $no_render); if ($this->smarty->debugging) { Smarty_Internal_Debug::end_cache($this); } if ($this->cacheFileChecked) { $this->isCached = true; return $this->isCached; } $this->cacheFileChecked = true; if ($this->caching === Smarty::CACHING_LIFETIME_SAVED && $this->properties['cache_lifetime'] >= 0 && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']))) { $this->tpl_vars = array(); $this->rendered_content = null; return $this->isCached; } if (!empty($this->properties['file_dependency']) && $this->smarty->compile_check) { $resource_type = null; $resource_name = null; foreach ($this->properties['file_dependency'] as $_file_to_check) { If ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'extends' || $_file_to_check[2] == 'php') { $mtime = filemtime($_file_to_check[0]); } else { $this->getResourceTypeName($_file_to_check[0], $resource_type, $resource_name); $resource_handler = $this->loadTemplateResourceHandler($resource_type); $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name); } // If ($mtime > $this->getCachedTimestamp()) { If ($mtime > $_file_to_check[1]) { $this->tpl_vars = array(); $this->rendered_content = null; return $this->isCached; } } } $this->isCached = true; } } } return $this->isCached; } /** * Render the output using the compiled template or the PHP template source * * The rendering process is accomplished by just including the PHP files. * The only exceptions are evaluated templates (string template). Their code has * to be evaluated */ public function renderTemplate () { if ($this->resource_object->usesCompiler) { if ($this->mustCompile() && $this->compiled_template === null) { $this->compileTemplateSource(); } if ($this->smarty->debugging) { Smarty_Internal_Debug::start_render($this); } $_smarty_tpl = $this; ob_start(); if ($this->resource_object->isEvaluated) { eval("?>" . $this->compiled_template); } else { include($this->getCompiledFilepath ()); // check file dependencies at compiled code if ($this->smarty->compile_check) { if (!empty($this->properties['file_dependency'])) { $this->mustCompile = false; $resource_type = null; $resource_name = null; foreach ($this->properties['file_dependency'] as $_file_to_check) { If ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'extends' || $_file_to_check[2] == 'php') { $mtime = filemtime($_file_to_check[0]); } else { $this->getResourceTypeName($_file_to_check[0], $resource_type, $resource_name); $resource_handler = $this->loadTemplateResourceHandler($resource_type); $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name); } // If ($mtime != $_file_to_check[1]) { If ($mtime > $_file_to_check[1]) { $this->mustCompile = true; break; } } if ($this->mustCompile) { // recompile and render again ob_get_clean(); $this->compileTemplateSource(); ob_start(); include($this->getCompiledFilepath ()); } } } } } else { if (is_callable(array($this->resource_object, 'renderUncompiled'))) { if ($this->smarty->debugging) { Smarty_Internal_Debug::start_render($this); } ob_start(); $this->resource_object->renderUncompiled($this); } else { throw new SmartyException("Resource '$this->resource_type' must have 'renderUncompiled' methode"); } } $this->rendered_content = ob_get_clean(); if (!$this->resource_object->isEvaluated && empty($this->properties['file_dependency'][$this->templateUid])) { $this->properties['file_dependency'][$this->templateUid] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp(),$this->resource_type); } if ($this->parent instanceof Smarty_Internal_Template) { $this->parent->properties['file_dependency'] = array_merge($this->parent->properties['file_dependency'], $this->properties['file_dependency']); foreach($this->required_plugins as $code => $tmp1) { foreach($tmp1 as $name => $tmp) { foreach($tmp as $type => $data) { $this->parent->required_plugins[$code][$name][$type] = $data; } } } } if ($this->smarty->debugging) { Smarty_Internal_Debug::end_render($this); } // write to cache when nessecary if (!$this->resource_object->isEvaluated && ($this->caching == Smarty::CACHING_LIFETIME_SAVED || $this->caching == Smarty::CACHING_LIFETIME_CURRENT)) { if ($this->smarty->debugging) { Smarty_Internal_Debug::start_cache($this); } $this->properties['has_nocache_code'] = false; // get text between non-cached items $cache_split = preg_split("!/\*%%SmartyNocache:{$this->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!s", $this->rendered_content); // get non-cached items preg_match_all("!/\*%%SmartyNocache:{$this->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!s", $this->rendered_content, $cache_parts); $output = ''; // loop over items, stitch back together foreach($cache_split as $curr_idx => $curr_split) { // escape PHP tags in template content $output .= preg_replace('/(<%|%>|<\?php|<\?|\?>)/', '<?php echo \'$1\'; ?>', $curr_split); if (isset($cache_parts[0][$curr_idx])) { $this->properties['has_nocache_code'] = true; // remove nocache tags from cache output $output .= preg_replace("!/\*/?%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!", '', $cache_parts[0][$curr_idx]); } } if (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output'])) { $output = Smarty_Internal_Filter_Handler::runFilter('output', $output, $this); } // rendering (must be done before writing cache file because of {function} nocache handling) $_smarty_tpl = $this; ob_start(); eval("?>" . $output); $this->rendered_content = ob_get_clean(); // write cache file content $this->writeCachedContent('<?php if (!$no_render) {?>'. $output. '<?php } ?>'); if ($this->smarty->debugging) { Smarty_Internal_Debug::end_cache($this); } } else { // var_dump('renderTemplate', $this->has_nocache_code, $this->template_resource, $this->properties['nocache_hash'], $this->parent->properties['nocache_hash'], $this->rendered_content); if ($this->has_nocache_code && !empty($this->properties['nocache_hash']) && !empty($this->parent->properties['nocache_hash'])) { // replace nocache_hash $this->rendered_content = preg_replace("/{$this->properties['nocache_hash']}/", $this->parent->properties['nocache_hash'], $this->rendered_content); $this->parent->has_nocache_code = $this->has_nocache_code; } } } /** * Returns the rendered HTML output * * If the cache is valid the cached content is used, otherwise * the output is rendered from the compiled template or PHP template source * * @return string rendered HTML output */ public function getRenderedTemplate () { // disable caching for evaluated code if ($this->resource_object->isEvaluated) { $this->caching = false; } // checks if template exists $this->isExisting(true); // read from cache or render if ($this->rendered_content === null) { if ($this->isCached) { if ($this->smarty->debugging) { Smarty_Internal_Debug::start_cache($this); } $this->rendered_content = $this->cache_resource_object->getCachedContents($this, false); if ($this->smarty->debugging) { Smarty_Internal_Debug::end_cache($this); } } if ($this->isCached === null) { $this->isCached(false); } if (!$this->isCached) { // render template (not loaded and not in cache) $this->renderTemplate(); } } $this->updateParentVariables(); $this->isCached = null; return $this->rendered_content; } /** * Parse a template resource in its name and type * Load required resource handler * * @param string $template_resource template resource specification * @param string $resource_type return resource type * @param string $resource_name return resource name * @param object $resource_handler return resource handler object */ public function parseResourceName($template_resource, &$resource_type, &$resource_name, &$resource_handler) { if (empty($template_resource)) return false; $this->getResourceTypeName($template_resource, $resource_type, $resource_name); $resource_handler = $this->loadTemplateResourceHandler($resource_type); // cache template object under a unique ID // do not cache eval resources if ($resource_type != 'eval') { $this->smarty->template_objects[sha1($this->template_resource . $this->cache_id . $this->compile_id)] = $this; } return true; } /** * get system filepath to template */ public function buildTemplateFilepath ($file = null) { if ($file == null) { $file = $this->resource_name; } foreach((array)$this->smarty->template_dir as $_template_dir) { if (strpos('/\\', substr($_template_dir, -1)) === false) { $_template_dir .= DS; } $_filepath = $_template_dir . $file; if (file_exists($_filepath)) return $_filepath; } if (file_exists($file)) return $file; // no tpl file found if (!empty($this->smarty->default_template_handler_func)) { if (!is_callable($this->smarty->default_template_handler_func)) { throw new SmartyException("Default template handler not callable"); } else { $_return = call_user_func_array($this->smarty->default_template_handler_func, array($this->resource_type, $this->resource_name, &$this->template_source, &$this->template_timestamp, $this)); if (is_string($_return)) { return $_return; } elseif ($_return === true) { return $file; } } } return false; } /** * Update Smarty variables in other scopes */ public function updateParentVariables ($scope = Smarty::SCOPE_LOCAL) { $has_root = false; foreach ($this->tpl_vars as $_key => $_variable) { $_variable_scope = $this->tpl_vars[$_key]->scope; if ($scope == Smarty::SCOPE_LOCAL && $_variable_scope == Smarty::SCOPE_LOCAL) { continue; } if (isset($this->parent) && ($scope == Smarty::SCOPE_PARENT || $_variable_scope == Smarty::SCOPE_PARENT)) { if (isset($this->parent->tpl_vars[$_key])) { // variable is already defined in parent, copy value $this->parent->tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value; } else { // create variable in parent $this->parent->tpl_vars[$_key] = clone $_variable; $this->parent->tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL; } } if ($scope == Smarty::SCOPE_ROOT || $_variable_scope == Smarty::SCOPE_ROOT) { if ($this->parent == null) { continue; } if (!$has_root) { // find root $root_ptr = $this; while ($root_ptr->parent != null) { $root_ptr = $root_ptr->parent; $has_root = true; } } if (isset($root_ptr->tpl_vars[$_key])) { // variable is already defined in root, copy value $root_ptr->tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value; } else { // create variable in root $root_ptr->tpl_vars[$_key] = clone $_variable; $root_ptr->tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL; } } if ($scope == Smarty::SCOPE_GLOBAL || $_variable_scope == Smarty::SCOPE_GLOBAL) { if (isset(Smarty::$global_tpl_vars[$_key])) { // variable is already defined in root, copy value Smarty::$global_tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value; } else { // create global variable Smarty::$global_tpl_vars[$_key] = clone $_variable; } Smarty::$global_tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL; } } } /** * Split a template resource in its name and type * * @param string $template_resource template resource specification * @param string $resource_type return resource type * @param string $resource_name return resource name */ protected function getResourceTypeName ($template_resource, &$resource_type, &$resource_name) { if (strpos($template_resource, ':') === false) { // no resource given, use default $resource_type = $this->smarty->default_resource_type; $resource_name = $template_resource; } else { // get type and name from path list($resource_type, $resource_name) = explode(':', $template_resource, 2); if (strlen($resource_type) == 1) { // 1 char is not resource type, but part of filepath $resource_type = 'file'; $resource_name = $template_resource; } } } /** * Load template resource handler by type * * @param string $resource_type template resource type * @return object resource handler object */ protected function loadTemplateResourceHandler ($resource_type) { // try registered resource if (isset($this->smarty->registered_resources[$resource_type])) { return new Smarty_Internal_Resource_Registered($this); } else { // try sysplugins dir if (in_array($resource_type, array('file', 'string', 'extends', 'php', 'stream', 'eval'))) { $_resource_class = 'Smarty_Internal_Resource_' . ucfirst($resource_type); return new $_resource_class($this->smarty); } else { // try plugins dir $_resource_class = 'Smarty_Resource_' . ucfirst($resource_type); if ($this->smarty->loadPlugin($_resource_class)) { if (class_exists($_resource_class, false)) { return new $_resource_class($this->smarty); } else { return new Smarty_Internal_Resource_Registered($this, $resource_type); } } else { // try streams $_known_stream = stream_get_wrappers(); if (in_array($resource_type, $_known_stream)) { // is known stream if (is_object($this->smarty->security_policy)) { $this->smarty->security_policy->isTrustedStream($resource_type); } return new Smarty_Internal_Resource_Stream($this->smarty); } else { throw new SmartyException('Unkown resource type \'' . $resource_type . '\''); } } } } } /** * Create property header */ public function createPropertyHeader ($cache = false) { $plugins_string = ''; // include code for plugins if (!$cache) { if (!empty($this->required_plugins['compiled'])) { $plugins_string = '<?php '; foreach($this->required_plugins['compiled'] as $tmp) { foreach($tmp as $data) { $plugins_string .= "if (!is_callable('{$data['function']}')) include '{$data['file']}';\n"; } } $plugins_string .= '?>'; } if (!empty($this->required_plugins['nocache'])) { $this->has_nocache_code = true; $plugins_string .= "<?php echo '/*%%SmartyNocache:{$this->properties['nocache_hash']}%%*/<?php "; foreach($this->required_plugins['nocache'] as $tmp) { foreach($tmp as $data) { $plugins_string .= "if (!is_callable(\'{$data['function']}\')) include \'{$data['file']}\';\n"; } } $plugins_string .= "?>/*/%%SmartyNocache:{$this->properties['nocache_hash']}%%*/';?>\n"; } } // build property code $this->properties['has_nocache_code'] = $this->has_nocache_code; $properties_string = "<?php /*%%SmartyHeaderCode:{$this->properties['nocache_hash']}%%*/" ; if ($this->smarty->direct_access_security) { $properties_string .= "if(!defined('SMARTY_DIR')) exit('no direct access allowed');\n"; } if ($cache) { // remove compiled code of{function} definition unset($this->properties['function']); if (!empty($this->smarty->template_functions)) { // copy code of {function} tags called in nocache mode foreach ($this->smarty->template_functions as $name => $function_data) { if (isset($function_data['called_nocache'])) { unset($function_data['called_nocache'], $this->smarty->template_functions[$name]['called_nocache']); $this->properties['function'][$name] = $function_data; } } } } $properties_string .= "\$_smarty_tpl->decodeProperties(" . var_export($this->properties, true) . "); /*/%%SmartyHeaderCode%%*/?>\n"; return $properties_string . $plugins_string; } /** * Decode saved properties from compiled template and cache files */ public function decodeProperties ($properties) { $this->has_nocache_code = $properties['has_nocache_code']; $this->properties['nocache_hash'] = $properties['nocache_hash']; if (isset($properties['cache_lifetime'])) { $this->properties['cache_lifetime'] = $properties['cache_lifetime']; } if (isset($properties['file_dependency'])) { $this->properties['file_dependency'] = array_merge($this->properties['file_dependency'], $properties['file_dependency']); } if (!empty($properties['function'])) { $this->properties['function'] = array_merge($this->properties['function'], $properties['function']); $this->smarty->template_functions = array_merge($this->smarty->template_functions, $properties['function']); } } /** * creates a loacal Smarty variable for array assignments */ public function createLocalArrayVariable($tpl_var, $nocache = false, $scope = Smarty::SCOPE_LOCAL) { if (!isset($this->tpl_vars[$tpl_var])) { $tpl_var_inst = $this->getVariable($tpl_var, null, true, false); if ($tpl_var_inst instanceof Undefined_Smarty_Variable) { $this->tpl_vars[$tpl_var] = new Smarty_variable(array(), $nocache, $scope); } else { $this->tpl_vars[$tpl_var] = clone $tpl_var_inst; if ($scope != Smarty::SCOPE_LOCAL) { $this->tpl_vars[$tpl_var]->scope = $scope; } } } if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) { settype($this->tpl_vars[$tpl_var]->value, 'array'); } } /** * [util function] counts an array, arrayaccess/traversable or PDOStatement object * @param mixed $value * @return int the count for arrays and objects that implement countable, 1 for other objects that don't, and 0 for empty elements */ public function _count($value) { if (is_array($value) === true || $value instanceof Countable) { return count($value); } elseif ($value instanceof ArrayAccess) { if ($value->offsetExists(0)) { return 1; } } elseif ($value instanceof Iterator) { $value->rewind(); if ($value->valid()) { return 1; } } elseif ($value instanceof PDOStatement) { return $value->rowCount(); } elseif ($value instanceof Traversable) { return iterator_count($value); } elseif ($value instanceof ArrayAccess) { if ($value->offsetExists(0)) { return 1; } } elseif (is_object($value)) { return count($value); } return 0; } /** * wrapper for fetch */ public function fetch ($template = null, $cache_id = null, $compile_id = null, $parent = null, $display = false) { if ($template == null) { return $this->smarty->fetch($this); } else { if (!isset($parent)) { $parent = $this; } return $this->smarty->fetch($template, $cache_id, $compile_id, $parent, $display); } } /** * wrapper for display */ public function display ($template = null, $cache_id = null, $compile_id = null, $parent = null) { if ($template == null) { return $this->smarty->display($this); } else { if (!isset($parent)) { $parent = $this; } return $this->smarty->display($template, $cache_id, $compile_id, $parent); } } /** * set Smarty property in template context * @param string $property_name property name * @param mixed $value value */ public function __set($property_name, $value) { if ($property_name == 'resource_object' || $property_name == 'cache_resource_object') { $this->$property_name = $value; } elseif (property_exists($this->smarty, $property_name)) { $this->smarty->$property_name = $value; } else { throw new SmartyException("invalid template property '$property_name'."); } } /** * get Smarty property in template context * @param string $property_name property name */ public function __get($property_name) { if ($property_name == 'resource_object') { // load template resource $this->resource_object = null; if (!$this->parseResourceName ($this->template_resource, $this->resource_type, $this->resource_name, $this->resource_object)) { throw new SmartyException ("Unable to parse resource name \"{$template_resource}\""); } return $this->resource_object; } if ($property_name == 'cache_resource_object') { // load cache resource $this->cache_resource_object = $this->loadCacheResource(); return $this->cache_resource_object; } if (property_exists($this->smarty, $property_name)) { return $this->smarty->$property_name; } else { throw new SmartyException("template property '$property_name' does not exist."); } } /** * Takes unknown class methods and lazy loads sysplugin files for them * class name format: Smarty_Method_MethodName * plugin filename format: method.methodname.php * * @param string $name unknown methode name * @param array $args aurgument array */ public function __call($name, $args) { static $camel_func; if (!isset($camel_func)) $camel_func = create_function('$c', 'return "_" . strtolower($c[1]);'); // see if this is a set/get for a property $first3 = strtolower(substr($name, 0, 3)); if (in_array($first3, array('set', 'get')) && substr($name, 3, 1) !== '_') { // try to keep case correct for future PHP 6.0 case-sensitive class methods // lcfirst() not available < PHP 5.3.0, so improvise $property_name = strtolower(substr($name, 3, 1)) . substr($name, 4); // convert camel case to underscored name $property_name = preg_replace_callback('/([A-Z])/', $camel_func, $property_name); if (property_exists($this, $property_name)) { if ($first3 == 'get') return $this->$property_name; else return $this->$property_name = $args[0]; } } // Smarty Backward Compatible wrapper if (strpos($name,'_') !== false) { if (!isset($this->wrapper)) { $this->wrapper = new Smarty_Internal_Wrapper($this); } return $this->wrapper->convert($name, $args); } // pass call to Smarty object return call_user_func_array(array($this->smarty,$name),$args); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_template.php
PHP
asf20
42,109
<?php /** * Smarty Internal Plugin Compile Function Plugin * * Compiles code for the execution of function plugin * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Function Plugin Class */ class Smarty_Internal_Compile_Private_Function_Plugin extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array(); public $optional_attributes = array('_any'); /** * Compiles code for the execution of function plugin * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @param string $tag name of function plugin * @param string $function PHP function name * @return string compiled code */ public function compile($args, $compiler, $parameter, $tag, $function) { $this->compiler = $compiler; // This tag does create output $this->compiler->has_output = true; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->tag_nocache = true; } unset($_attr['nocache']); // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { if (is_int($_key)) { $_paramsArray[] = "$_key=>$_value"; } else { $_paramsArray[] = "'$_key'=>$_value"; } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; // compile code $output = "<?php echo {$function}({$_params},\$_smarty_tpl);?>\n"; return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php
PHP
asf20
1,804
<?php /** * Smarty Internal Plugin CacheResource File * * Implements the file system as resource for the HTML cache * Version ussing nocache inserts * * @package Smarty * @subpackage Cacher * @author Uwe Tews */ /** * This class does contain all necessary methods for the HTML cache on file system */ class Smarty_Internal_CacheResource_File { function __construct($smarty) { $this->smarty = $smarty; } /** * Returns the filepath of the cached template output * * @param object $_template current template * @return string the cache filepath */ public function getCachedFilepath($_template) { $_source_file_path = str_replace(':', '.', $_template->getTemplateFilepath()); $_cache_id = isset($_template->cache_id) ? preg_replace('![^\w\|]+!', '_', $_template->cache_id) : null; $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null; $_filepath = $_template->templateUid; // if use_sub_dirs, break file into directories if ($this->smarty->use_sub_dirs) { $_filepath = substr($_filepath, 0, 2) . DS . substr($_filepath, 2, 2) . DS . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $this->smarty->use_sub_dirs ? DS : '^'; if (isset($_cache_id)) { $_cache_id = str_replace('|', $_compile_dir_sep, $_cache_id) . $_compile_dir_sep; } else { $_cache_id = ''; } if (isset($_compile_id)) { $_compile_id = $_compile_id . $_compile_dir_sep; } else { $_compile_id = ''; } $_cache_dir = $this->smarty->cache_dir; if (strpos('/\\', substr($_cache_dir, -1)) === false) { $_cache_dir .= DS; } return $_cache_dir . $_cache_id . $_compile_id . $_filepath . '.' . basename($_source_file_path) . '.php'; } /** * Returns the timpestamp of the cached template output * * @param object $_template current template * @return integer |booelan the template timestamp or false if the file does not exist */ public function getCachedTimestamp($_template) { // return @filemtime ($_template->getCachedFilepath()); return ($_template->getCachedFilepath() && file_exists($_template->getCachedFilepath())) ? filemtime($_template->getCachedFilepath()) : false ; } /** * Returns the cached template output * * @param object $_template current template * @return string |booelan the template content or false if the file does not exist */ public function getCachedContents($_template, $no_render = false) { if (!$no_render) { ob_start(); } $_smarty_tpl = $_template; include $_template->getCachedFilepath(); if ($no_render) { return null; } else { return ob_get_clean(); } } /** * Writes the rendered template output to cache file * * @param object $_template current template * @return boolean status */ public function writeCachedContent($_template, $content) { if (!$_template->resource_object->isEvaluated) { if (Smarty_Internal_Write_File::writeFile($_template->getCachedFilepath(), $content, $this->smarty) === true) { $_template->cached_timestamp = filemtime($_template->getCachedFilepath()); return true; } } return false; } /** * Empty cache folder * * @param integer $exp_time expiration time * @return integer number of cache files deleted */ public function clearAll($exp_time = null) { return $this->clear(null, null, null, $exp_time); } /** * Empty cache for a specific template * * @param string $resource_name template name * @param string $cache_id cache id * @param string $compile_id compile id * @param integer $exp_time expiration time * @return integer number of cache files deleted */ public function clear($resource_name, $cache_id, $compile_id, $exp_time) { $_cache_id = isset($cache_id) ? preg_replace('![^\w\|]+!', '_', $cache_id) : null; $_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null; $_dir_sep = $this->smarty->use_sub_dirs ? '/' : '^'; $_compile_id_offset = $this->smarty->use_sub_dirs ? 3 : 0; $_dir = rtrim($this->smarty->cache_dir, '/\\') . DS; $_dir_length = strlen($_dir); if (isset($_cache_id)) { $_cache_id_parts = explode('|', $_cache_id); $_cache_id_parts_count = count($_cache_id_parts); if ($this->smarty->use_sub_dirs) { foreach ($_cache_id_parts as $id_part) { $_dir .= $id_part . DS; } } } if (isset($resource_name)) { $_save_stat = $this->smarty->caching; $this->smarty->caching = true; $tpl = new $this->smarty->template_class($resource_name, $this->smarty); // remove from template cache unset($this->smarty->template_objects[crc32($tpl->template_resource . $tpl->cache_id . $tpl->compile_id)]); $this->smarty->caching = $_save_stat; if ($tpl->isExisting()) { $_resourcename_parts = basename(str_replace('^', '/', $tpl->getCachedFilepath())); } else { return 0; } } $_count = 0; if (file_exists($_dir)) { $_cacheDirs = new RecursiveDirectoryIterator($_dir); $_cache = new RecursiveIteratorIterator($_cacheDirs, RecursiveIteratorIterator::CHILD_FIRST); foreach ($_cache as $_file) { if (strpos($_file, '.svn') !== false) continue; // directory ? if ($_file->isDir()) { if (!$_cache->isDot()) { // delete folder if empty @rmdir($_file->getPathname()); } } else { $_parts = explode($_dir_sep, str_replace('\\', '/', substr((string)$_file, $_dir_length))); $_parts_count = count($_parts); // check name if (isset($resource_name)) { if ($_parts[$_parts_count-1] != $_resourcename_parts) { continue; } } // check compile id if (isset($_compile_id) && (!isset($_parts[$_parts_count-2 - $_compile_id_offset]) || $_parts[$_parts_count-2 - $_compile_id_offset] != $_compile_id)) { continue; } // check cache id if (isset($_cache_id)) { // count of cache id parts $_parts_count = (isset($_compile_id)) ? $_parts_count - 2 - $_compile_id_offset : $_parts_count - 1 - $_compile_id_offset; if ($_parts_count < $_cache_id_parts_count) { continue; } for ($i = 0; $i < $_cache_id_parts_count; $i++) { if ($_parts[$i] != $_cache_id_parts[$i]) continue 2; } } // expired ? if (isset($exp_time) && time() - @filemtime($_file) < $exp_time) { continue; } $_count += @unlink((string) $_file) ? 1 : 0; } } } return $_count; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_cacheresource_file.php
PHP
asf20
7,905
<?php /** * Smarty Internal Plugin Filter Handler * * Smarty filter handler class * * @package Smarty * @subpackage PluginsInternal * @author Uwe Tews */ /** * Class for filter processing */ class Smarty_Internal_Filter_Handler { /** * Run filters over content * * The filters will be lazy loaded if required * class name format: Smarty_FilterType_FilterName * plugin filename format: filtertype.filtername.php * Smarty2 filter plugins could be used * * @param string $type the type of filter ('pre','post','output' or 'variable') which shall run * @param string $content the content which shall be processed by the filters * @return string the filtered content */ static function runFilter($type, $content, $template, $flag = null) { $output = $content; if ($type != 'variable' || ($template->smarty->variable_filter && $flag !== false) || $flag === true) { // loop over autoload filters of specified type if (!empty($template->smarty->autoload_filters[$type])) { foreach ((array)$template->smarty->autoload_filters[$type] as $name) { $plugin_name = "Smarty_{$type}filter_{$name}"; if ($template->smarty->loadPlugin($plugin_name)) { if (function_exists($plugin_name)) { // use loaded Smarty2 style plugin $output = $plugin_name($output, $template); } elseif (class_exists($plugin_name, false)) { // loaded class of filter plugin $output = call_user_func(array($plugin_name, 'execute'), $output, $template); } } else { // nothing found, throw exception throw new SmartyException("Unable to load filter {$plugin_name}"); } } } // loop over registerd filters of specified type if (!empty($template->smarty->registered_filters[$type])) { foreach ($template->smarty->registered_filters[$type] as $key => $name) { if (is_array($template->smarty->registered_filters[$type][$key])) { $output = call_user_func($template->smarty->registered_filters[$type][$key], $output, $template); } else { $output = $template->smarty->registered_filters[$type][$key]($output, $template); } } } } // return filtered output return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_filter_handler.php
PHP
asf20
2,717
<?php /** * Smarty Internal Plugin Templateparser * * This is the template parser. * It is generated from the internal.templateparser.y file * @package Smarty * @subpackage Compiler * @author Uwe Tews */ class TP_yyToken implements ArrayAccess { public $string = ''; public $metadata = array(); function __construct($s, $m = array()) { if ($s instanceof TP_yyToken) { $this->string = $s->string; $this->metadata = $s->metadata; } else { $this->string = (string) $s; if ($m instanceof TP_yyToken) { $this->metadata = $m->metadata; } elseif (is_array($m)) { $this->metadata = $m; } } } function __toString() { return $this->_string; } function offsetExists($offset) { return isset($this->metadata[$offset]); } function offsetGet($offset) { return $this->metadata[$offset]; } function offsetSet($offset, $value) { if ($offset === null) { if (isset($value[0])) { $x = ($value instanceof TP_yyToken) ? $value->metadata : $value; $this->metadata = array_merge($this->metadata, $x); return; } $offset = count($this->metadata); } if ($value === null) { return; } if ($value instanceof TP_yyToken) { if ($value->metadata) { $this->metadata[$offset] = $value->metadata; } } elseif ($value) { $this->metadata[$offset] = $value; } } function offsetUnset($offset) { unset($this->metadata[$offset]); } } class TP_yyStackEntry { public $stateno; /* The state-number */ public $major; /* The major token value. This is the code ** number for the token at this stack level */ public $minor; /* The user-supplied minor token value. This ** is the value of the token */ }; #line 12 "smarty_internal_templateparser.y" class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php" { #line 14 "smarty_internal_templateparser.y" const Err1 = "Security error: Call to private object member not allowed"; const Err2 = "Security error: Call to dynamic object member not allowed"; // states whether the parse was successful or not public $successful = true; public $retvalue = 0; private $lex; private $internalError = false; function __construct($lex, $compiler) { // set instance object self::instance($this); $this->lex = $lex; $this->compiler = $compiler; $this->smarty = $this->compiler->smarty; $this->template = $this->compiler->template; $this->compiler->has_variable_string = false; $this->compiler->prefix_code = array(); $this->prefix_number = 0; $this->block_nesting_level = 0; if ($this->security = isset($this->smarty->security_policy)) { $this->php_handling = $this->smarty->security_policy->php_handling; } else { $this->php_handling = $this->smarty->php_handling; } $this->is_xml = false; $this->asp_tags = (ini_get('asp_tags') != '0'); $this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this); } public static function &instance($new_instance = null) { static $instance = null; if (isset($new_instance) && is_object($new_instance)) $instance = $new_instance; return $instance; } public static function escape_start_tag($tag_text) { $tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag assert($tag !== false && $count === 1); return $tag; } public static function escape_end_tag($tag_text) { assert($tag_text === '?>'); return '?<?php ?>>'; } #line 132 "smarty_internal_templateparser.php" const TP_VERT = 1; const TP_COLON = 2; const TP_COMMENT = 3; const TP_PHPSTARTTAG = 4; const TP_PHPENDTAG = 5; const TP_ASPSTARTTAG = 6; const TP_ASPENDTAG = 7; const TP_FAKEPHPSTARTTAG = 8; const TP_XMLTAG = 9; const TP_OTHER = 10; const TP_LINEBREAK = 11; const TP_LITERALSTART = 12; const TP_LITERALEND = 13; const TP_LITERAL = 14; const TP_LDEL = 15; const TP_RDEL = 16; const TP_DOLLAR = 17; const TP_ID = 18; const TP_EQUAL = 19; const TP_PTR = 20; const TP_LDELIF = 21; const TP_SPACE = 22; const TP_LDELFOR = 23; const TP_SEMICOLON = 24; const TP_INCDEC = 25; const TP_TO = 26; const TP_STEP = 27; const TP_LDELFOREACH = 28; const TP_AS = 29; const TP_APTR = 30; const TP_SMARTYBLOCKCHILD = 31; const TP_LDELSLASH = 32; const TP_INTEGER = 33; const TP_COMMA = 34; const TP_OPENP = 35; const TP_CLOSEP = 36; const TP_MATH = 37; const TP_UNIMATH = 38; const TP_ANDSYM = 39; const TP_ISIN = 40; const TP_ISDIVBY = 41; const TP_ISNOTDIVBY = 42; const TP_ISEVEN = 43; const TP_ISNOTEVEN = 44; const TP_ISEVENBY = 45; const TP_ISNOTEVENBY = 46; const TP_ISODD = 47; const TP_ISNOTODD = 48; const TP_ISODDBY = 49; const TP_ISNOTODDBY = 50; const TP_INSTANCEOF = 51; const TP_QMARK = 52; const TP_NOT = 53; const TP_TYPECAST = 54; const TP_HEX = 55; const TP_DOT = 56; const TP_SINGLEQUOTESTRING = 57; const TP_DOUBLECOLON = 58; const TP_AT = 59; const TP_HATCH = 60; const TP_OPENB = 61; const TP_CLOSEB = 62; const TP_EQUALS = 63; const TP_NOTEQUALS = 64; const TP_GREATERTHAN = 65; const TP_LESSTHAN = 66; const TP_GREATEREQUAL = 67; const TP_LESSEQUAL = 68; const TP_IDENTITY = 69; const TP_NONEIDENTITY = 70; const TP_MOD = 71; const TP_LAND = 72; const TP_LOR = 73; const TP_LXOR = 74; const TP_QUOTE = 75; const TP_BACKTICK = 76; const TP_DOLLARID = 77; const YY_NO_ACTION = 584; const YY_ACCEPT_ACTION = 583; const YY_ERROR_ACTION = 582; const YY_SZ_ACTTAB = 2566; static public $yy_action = array( /* 0 */ 218, 272, 271, 275, 274, 278, 277, 276, 270, 262, /* 10 */ 260, 264, 268, 196, 298, 285, 42, 22, 159, 265, /* 20 */ 19, 29, 222, 374, 237, 29, 294, 29, 280, 149, /* 30 */ 243, 19, 378, 225, 374, 244, 52, 47, 50, 45, /* 40 */ 38, 37, 331, 332, 40, 39, 340, 337, 30, 25, /* 50 */ 292, 299, 291, 290, 295, 190, 123, 342, 196, 279, /* 60 */ 293, 135, 335, 322, 321, 308, 309, 310, 307, 306, /* 70 */ 302, 303, 304, 305, 218, 242, 319, 175, 199, 133, /* 80 */ 138, 19, 248, 72, 374, 124, 19, 288, 448, 374, /* 90 */ 41, 14, 339, 311, 448, 29, 348, 329, 376, 320, /* 100 */ 34, 583, 95, 273, 271, 275, 219, 3, 301, 3, /* 110 */ 52, 47, 50, 45, 38, 37, 331, 332, 40, 39, /* 120 */ 340, 337, 30, 25, 7, 231, 17, 108, 134, 167, /* 130 */ 140, 35, 140, 143, 336, 192, 335, 322, 321, 308, /* 140 */ 309, 310, 307, 306, 302, 303, 304, 305, 218, 334, /* 150 */ 319, 193, 353, 10, 138, 3, 248, 55, 3, 119, /* 160 */ 136, 36, 31, 371, 218, 19, 339, 311, 374, 29, /* 170 */ 348, 329, 29, 320, 199, 27, 223, 258, 140, 372, /* 180 */ 224, 140, 254, 220, 52, 47, 50, 45, 38, 37, /* 190 */ 331, 332, 40, 39, 340, 337, 30, 25, 341, 179, /* 200 */ 32, 159, 106, 323, 29, 194, 379, 342, 218, 288, /* 210 */ 335, 322, 321, 308, 309, 310, 307, 306, 302, 303, /* 220 */ 304, 305, 218, 366, 319, 199, 186, 218, 138, 190, /* 230 */ 248, 72, 445, 124, 218, 266, 288, 364, 445, 123, /* 240 */ 339, 311, 447, 29, 348, 329, 19, 320, 447, 374, /* 250 */ 23, 3, 199, 16, 211, 29, 297, 170, 52, 47, /* 260 */ 50, 45, 38, 37, 331, 332, 40, 39, 340, 337, /* 270 */ 30, 25, 218, 172, 140, 183, 104, 46, 19, 189, /* 280 */ 379, 374, 41, 288, 335, 322, 321, 308, 309, 310, /* 290 */ 307, 306, 302, 303, 304, 305, 344, 188, 444, 199, /* 300 */ 218, 235, 249, 216, 29, 191, 379, 342, 52, 47, /* 310 */ 50, 45, 38, 37, 331, 332, 40, 39, 340, 337, /* 320 */ 30, 25, 242, 19, 142, 43, 374, 130, 245, 28, /* 330 */ 29, 159, 107, 346, 335, 322, 321, 308, 309, 310, /* 340 */ 307, 306, 302, 303, 304, 305, 218, 347, 319, 27, /* 350 */ 46, 257, 138, 198, 248, 62, 164, 119, 240, 218, /* 360 */ 267, 252, 228, 126, 339, 311, 288, 205, 348, 329, /* 370 */ 103, 320, 8, 261, 444, 357, 180, 376, 376, 29, /* 380 */ 29, 29, 52, 47, 50, 45, 38, 37, 331, 332, /* 390 */ 40, 39, 340, 337, 30, 25, 184, 349, 361, 365, /* 400 */ 27, 284, 358, 29, 29, 29, 288, 29, 335, 322, /* 410 */ 321, 308, 309, 310, 307, 306, 302, 303, 304, 305, /* 420 */ 218, 319, 202, 221, 181, 138, 154, 248, 72, 171, /* 430 */ 124, 313, 9, 162, 288, 289, 163, 339, 311, 288, /* 440 */ 320, 348, 329, 288, 320, 376, 288, 281, 269, 370, /* 450 */ 376, 214, 6, 29, 29, 29, 52, 47, 50, 45, /* 460 */ 38, 37, 331, 332, 40, 39, 340, 337, 30, 25, /* 470 */ 218, 178, 239, 283, 373, 19, 226, 238, 374, 29, /* 480 */ 29, 288, 335, 322, 321, 308, 309, 310, 307, 306, /* 490 */ 302, 303, 304, 305, 177, 205, 286, 202, 227, 377, /* 500 */ 8, 166, 29, 376, 288, 29, 52, 47, 50, 45, /* 510 */ 38, 37, 331, 332, 40, 39, 340, 337, 30, 25, /* 520 */ 202, 218, 363, 375, 380, 315, 235, 296, 29, 29, /* 530 */ 29, 29, 335, 322, 321, 308, 309, 310, 307, 306, /* 540 */ 302, 303, 304, 305, 197, 369, 352, 19, 327, 218, /* 550 */ 236, 29, 29, 165, 234, 156, 174, 52, 47, 50, /* 560 */ 45, 38, 37, 331, 332, 40, 39, 340, 337, 30, /* 570 */ 25, 26, 344, 5, 19, 314, 199, 212, 19, 199, /* 580 */ 159, 241, 218, 335, 322, 321, 308, 309, 310, 307, /* 590 */ 306, 302, 303, 304, 305, 218, 319, 300, 100, 46, /* 600 */ 138, 19, 248, 76, 233, 124, 6, 218, 110, 351, /* 610 */ 201, 338, 339, 311, 115, 168, 348, 329, 123, 320, /* 620 */ 182, 338, 287, 234, 105, 288, 324, 338, 235, 240, /* 630 */ 288, 52, 47, 50, 45, 38, 37, 331, 332, 40, /* 640 */ 39, 340, 337, 30, 25, 218, 333, 144, 263, 33, /* 650 */ 13, 342, 312, 156, 29, 355, 97, 335, 322, 321, /* 660 */ 308, 309, 310, 307, 306, 302, 303, 304, 305, 338, /* 670 */ 141, 32, 325, 121, 195, 131, 356, 229, 127, 2, /* 680 */ 250, 52, 47, 50, 45, 38, 37, 331, 332, 40, /* 690 */ 39, 340, 337, 30, 25, 318, 228, 11, 330, 94, /* 700 */ 129, 282, 218, 253, 159, 29, 323, 335, 322, 321, /* 710 */ 308, 309, 310, 307, 306, 302, 303, 304, 305, 218, /* 720 */ 218, 319, 18, 101, 148, 122, 114, 248, 54, 44, /* 730 */ 124, 202, 99, 158, 316, 367, 376, 339, 311, 338, /* 740 */ 29, 348, 329, 376, 320, 338, 338, 354, 169, 368, /* 750 */ 321, 321, 321, 321, 321, 52, 47, 50, 45, 38, /* 760 */ 37, 331, 332, 40, 39, 340, 337, 30, 25, 218, /* 770 */ 46, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 780 */ 113, 335, 322, 321, 308, 309, 310, 307, 306, 302, /* 790 */ 303, 304, 305, 338, 321, 321, 321, 321, 321, 321, /* 800 */ 321, 321, 321, 321, 256, 52, 47, 50, 45, 38, /* 810 */ 37, 331, 332, 40, 39, 340, 337, 30, 25, 218, /* 820 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 830 */ 321, 335, 322, 321, 308, 309, 310, 307, 306, 302, /* 840 */ 303, 304, 305, 321, 321, 321, 321, 321, 321, 321, /* 850 */ 321, 321, 321, 321, 321, 52, 47, 50, 45, 38, /* 860 */ 37, 331, 332, 40, 39, 340, 337, 30, 25, 218, /* 870 */ 12, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 880 */ 382, 335, 322, 321, 308, 309, 310, 307, 306, 302, /* 890 */ 303, 304, 305, 321, 321, 321, 321, 321, 321, 321, /* 900 */ 321, 321, 321, 321, 321, 52, 47, 50, 45, 38, /* 910 */ 37, 331, 332, 40, 39, 340, 337, 30, 25, 321, /* 920 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 930 */ 321, 335, 322, 321, 308, 309, 310, 307, 306, 302, /* 940 */ 303, 304, 305, 218, 319, 321, 321, 321, 138, 321, /* 950 */ 248, 61, 321, 124, 321, 98, 132, 321, 200, 321, /* 960 */ 339, 311, 321, 321, 348, 329, 321, 320, 338, 338, /* 970 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 52, /* 980 */ 47, 50, 45, 38, 37, 331, 332, 40, 39, 340, /* 990 */ 337, 30, 25, 218, 321, 321, 321, 321, 321, 321, /* 1000 */ 321, 321, 321, 321, 321, 335, 322, 321, 308, 309, /* 1010 */ 310, 307, 306, 302, 303, 304, 305, 321, 321, 321, /* 1020 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 52, /* 1030 */ 47, 50, 45, 38, 37, 331, 332, 40, 39, 340, /* 1040 */ 337, 30, 25, 321, 321, 321, 321, 321, 321, 321, /* 1050 */ 321, 321, 321, 321, 321, 335, 322, 321, 308, 309, /* 1060 */ 310, 307, 306, 302, 303, 304, 305, 52, 47, 50, /* 1070 */ 45, 38, 37, 331, 332, 40, 39, 340, 337, 30, /* 1080 */ 25, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 1090 */ 321, 321, 321, 335, 322, 321, 308, 309, 310, 307, /* 1100 */ 306, 302, 303, 304, 305, 321, 321, 321, 321, 42, /* 1110 */ 321, 139, 207, 321, 319, 222, 321, 237, 138, 321, /* 1120 */ 248, 78, 149, 124, 321, 378, 225, 232, 321, 15, /* 1130 */ 339, 311, 49, 321, 348, 329, 321, 320, 321, 321, /* 1140 */ 321, 321, 321, 321, 321, 321, 321, 51, 48, 317, /* 1150 */ 247, 328, 321, 319, 103, 1, 255, 145, 321, 248, /* 1160 */ 321, 321, 124, 321, 42, 321, 139, 209, 321, 96, /* 1170 */ 222, 321, 237, 348, 329, 321, 320, 149, 345, 321, /* 1180 */ 378, 225, 232, 24, 15, 321, 321, 49, 321, 222, /* 1190 */ 321, 237, 321, 321, 321, 321, 149, 321, 321, 378, /* 1200 */ 225, 321, 51, 48, 317, 247, 328, 321, 319, 103, /* 1210 */ 1, 321, 146, 321, 248, 321, 321, 124, 321, 42, /* 1220 */ 161, 130, 209, 193, 96, 222, 321, 237, 348, 329, /* 1230 */ 288, 320, 149, 36, 31, 378, 225, 232, 321, 21, /* 1240 */ 321, 321, 49, 350, 20, 343, 199, 319, 218, 321, /* 1250 */ 321, 155, 321, 248, 321, 321, 124, 51, 48, 317, /* 1260 */ 247, 328, 321, 450, 103, 1, 321, 348, 329, 450, /* 1270 */ 320, 321, 321, 321, 42, 321, 125, 209, 321, 96, /* 1280 */ 222, 321, 237, 321, 321, 321, 321, 149, 345, 321, /* 1290 */ 378, 225, 232, 24, 4, 321, 321, 49, 46, 222, /* 1300 */ 321, 237, 321, 321, 321, 321, 149, 321, 321, 378, /* 1310 */ 225, 321, 51, 48, 317, 247, 328, 321, 319, 103, /* 1320 */ 1, 321, 151, 321, 248, 321, 321, 124, 321, 42, /* 1330 */ 176, 139, 204, 193, 96, 222, 321, 237, 348, 329, /* 1340 */ 288, 320, 149, 36, 31, 378, 225, 215, 321, 15, /* 1350 */ 321, 321, 49, 362, 20, 343, 199, 319, 218, 321, /* 1360 */ 321, 150, 321, 248, 321, 321, 124, 51, 48, 317, /* 1370 */ 247, 328, 321, 259, 103, 1, 321, 348, 329, 29, /* 1380 */ 320, 321, 321, 321, 42, 173, 128, 92, 193, 96, /* 1390 */ 222, 321, 237, 321, 218, 288, 321, 149, 36, 31, /* 1400 */ 378, 225, 232, 321, 15, 321, 321, 49, 46, 381, /* 1410 */ 321, 199, 319, 230, 321, 29, 152, 321, 248, 321, /* 1420 */ 321, 124, 51, 48, 317, 247, 328, 321, 3, 103, /* 1430 */ 1, 321, 348, 329, 321, 320, 321, 321, 321, 42, /* 1440 */ 185, 139, 208, 102, 96, 222, 321, 237, 321, 321, /* 1450 */ 288, 140, 149, 36, 31, 378, 225, 232, 321, 15, /* 1460 */ 321, 321, 49, 321, 321, 321, 199, 319, 321, 321, /* 1470 */ 321, 147, 321, 248, 321, 321, 124, 51, 48, 317, /* 1480 */ 247, 328, 321, 321, 103, 1, 321, 348, 329, 321, /* 1490 */ 320, 321, 321, 321, 42, 187, 139, 203, 193, 96, /* 1500 */ 222, 321, 237, 321, 321, 288, 321, 149, 36, 31, /* 1510 */ 378, 225, 232, 321, 15, 321, 160, 49, 321, 193, /* 1520 */ 321, 199, 321, 321, 321, 321, 288, 321, 321, 36, /* 1530 */ 31, 321, 51, 48, 317, 247, 328, 321, 321, 103, /* 1540 */ 1, 321, 199, 321, 321, 321, 321, 321, 321, 42, /* 1550 */ 321, 139, 206, 218, 96, 222, 321, 237, 321, 321, /* 1560 */ 321, 321, 149, 321, 321, 378, 225, 232, 450, 15, /* 1570 */ 321, 321, 49, 321, 450, 321, 321, 321, 321, 321, /* 1580 */ 321, 246, 321, 321, 321, 321, 321, 51, 48, 317, /* 1590 */ 247, 328, 321, 321, 103, 1, 321, 321, 321, 321, /* 1600 */ 321, 321, 321, 46, 42, 321, 137, 209, 321, 96, /* 1610 */ 222, 321, 237, 321, 321, 321, 321, 149, 321, 321, /* 1620 */ 378, 225, 232, 321, 15, 321, 321, 49, 321, 321, /* 1630 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 1640 */ 321, 321, 51, 48, 317, 247, 328, 321, 321, 103, /* 1650 */ 1, 321, 321, 321, 321, 321, 321, 321, 321, 42, /* 1660 */ 321, 130, 210, 321, 96, 222, 321, 237, 321, 321, /* 1670 */ 321, 321, 149, 321, 321, 378, 225, 232, 321, 21, /* 1680 */ 321, 321, 49, 321, 321, 321, 321, 321, 321, 321, /* 1690 */ 321, 321, 321, 321, 321, 321, 321, 51, 48, 317, /* 1700 */ 247, 328, 321, 321, 103, 321, 321, 321, 321, 321, /* 1710 */ 321, 321, 321, 321, 42, 321, 130, 209, 321, 96, /* 1720 */ 222, 321, 237, 321, 321, 321, 321, 149, 321, 321, /* 1730 */ 378, 225, 232, 321, 21, 321, 321, 49, 321, 321, /* 1740 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 1750 */ 321, 321, 51, 48, 317, 247, 328, 321, 321, 103, /* 1760 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 493, /* 1770 */ 321, 321, 321, 321, 96, 493, 321, 493, 321, 493, /* 1780 */ 493, 321, 493, 321, 321, 321, 321, 493, 3, 493, /* 1790 */ 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, /* 1800 */ 321, 321, 321, 319, 493, 321, 321, 117, 321, 248, /* 1810 */ 82, 140, 124, 321, 321, 493, 321, 321, 321, 339, /* 1820 */ 311, 321, 321, 348, 329, 321, 320, 321, 321, 493, /* 1830 */ 321, 321, 321, 321, 321, 321, 319, 217, 360, 321, /* 1840 */ 117, 321, 248, 82, 321, 124, 321, 321, 321, 321, /* 1850 */ 321, 321, 339, 311, 321, 321, 348, 329, 319, 320, /* 1860 */ 321, 321, 138, 321, 248, 90, 321, 124, 321, 321, /* 1870 */ 321, 359, 321, 321, 339, 311, 321, 321, 348, 329, /* 1880 */ 321, 320, 321, 321, 321, 321, 319, 321, 321, 321, /* 1890 */ 138, 321, 248, 69, 321, 124, 321, 321, 321, 321, /* 1900 */ 321, 321, 339, 311, 321, 321, 348, 329, 321, 320, /* 1910 */ 321, 321, 319, 321, 321, 321, 138, 321, 248, 67, /* 1920 */ 321, 124, 321, 321, 321, 321, 321, 321, 339, 311, /* 1930 */ 321, 321, 348, 329, 321, 320, 319, 321, 321, 321, /* 1940 */ 138, 321, 248, 58, 321, 124, 321, 321, 321, 321, /* 1950 */ 321, 321, 339, 311, 319, 321, 348, 329, 138, 320, /* 1960 */ 248, 62, 321, 124, 321, 321, 321, 321, 321, 321, /* 1970 */ 339, 311, 321, 321, 348, 329, 319, 320, 321, 321, /* 1980 */ 138, 321, 248, 56, 321, 124, 321, 321, 321, 321, /* 1990 */ 321, 321, 339, 311, 321, 321, 348, 329, 321, 320, /* 2000 */ 321, 319, 321, 321, 321, 112, 321, 248, 71, 321, /* 2010 */ 124, 321, 321, 321, 321, 321, 321, 339, 311, 319, /* 2020 */ 321, 348, 329, 111, 320, 248, 81, 321, 124, 321, /* 2030 */ 321, 321, 321, 321, 321, 339, 311, 319, 321, 348, /* 2040 */ 329, 138, 320, 248, 74, 321, 124, 321, 321, 321, /* 2050 */ 321, 321, 321, 339, 311, 321, 321, 348, 329, 319, /* 2060 */ 320, 321, 321, 138, 321, 248, 91, 321, 124, 321, /* 2070 */ 321, 321, 321, 321, 321, 339, 311, 321, 321, 348, /* 2080 */ 329, 321, 320, 321, 319, 321, 321, 321, 138, 321, /* 2090 */ 248, 64, 321, 124, 321, 321, 321, 321, 321, 321, /* 2100 */ 339, 311, 319, 321, 348, 329, 138, 320, 248, 63, /* 2110 */ 321, 124, 321, 321, 321, 321, 321, 321, 339, 311, /* 2120 */ 319, 321, 348, 329, 138, 320, 248, 83, 321, 124, /* 2130 */ 321, 321, 321, 321, 321, 321, 339, 311, 321, 321, /* 2140 */ 348, 329, 319, 320, 321, 321, 138, 321, 248, 79, /* 2150 */ 321, 124, 321, 321, 321, 321, 321, 321, 339, 311, /* 2160 */ 321, 321, 348, 329, 321, 320, 321, 319, 321, 321, /* 2170 */ 321, 138, 321, 248, 75, 321, 124, 321, 321, 321, /* 2180 */ 321, 321, 321, 339, 311, 319, 321, 348, 329, 138, /* 2190 */ 320, 248, 70, 321, 124, 321, 321, 321, 321, 321, /* 2200 */ 321, 339, 311, 319, 321, 348, 329, 109, 320, 248, /* 2210 */ 68, 321, 124, 321, 321, 321, 321, 321, 321, 339, /* 2220 */ 311, 321, 321, 348, 329, 319, 320, 321, 321, 138, /* 2230 */ 321, 248, 77, 321, 124, 321, 321, 321, 321, 321, /* 2240 */ 321, 339, 311, 321, 321, 348, 329, 321, 320, 321, /* 2250 */ 319, 321, 321, 321, 138, 321, 248, 73, 321, 124, /* 2260 */ 321, 321, 321, 321, 321, 321, 339, 311, 319, 321, /* 2270 */ 348, 329, 138, 320, 213, 65, 321, 124, 321, 321, /* 2280 */ 321, 321, 321, 321, 339, 311, 319, 321, 348, 329, /* 2290 */ 138, 320, 248, 86, 321, 124, 321, 321, 321, 321, /* 2300 */ 321, 321, 339, 311, 321, 321, 348, 329, 319, 320, /* 2310 */ 321, 321, 138, 321, 248, 88, 321, 124, 321, 321, /* 2320 */ 321, 321, 321, 321, 339, 311, 321, 321, 348, 329, /* 2330 */ 321, 320, 321, 319, 321, 321, 321, 93, 321, 120, /* 2340 */ 59, 321, 116, 321, 321, 321, 321, 321, 321, 339, /* 2350 */ 311, 319, 321, 348, 329, 138, 320, 248, 57, 321, /* 2360 */ 124, 321, 321, 321, 321, 321, 321, 339, 311, 319, /* 2370 */ 321, 348, 329, 138, 320, 248, 60, 321, 124, 321, /* 2380 */ 321, 321, 321, 321, 321, 339, 311, 321, 321, 348, /* 2390 */ 329, 319, 320, 321, 321, 138, 321, 248, 89, 321, /* 2400 */ 124, 321, 321, 321, 321, 321, 321, 339, 311, 321, /* 2410 */ 321, 348, 329, 321, 320, 321, 319, 321, 321, 321, /* 2420 */ 138, 321, 248, 85, 321, 124, 321, 321, 321, 321, /* 2430 */ 321, 321, 339, 311, 319, 321, 348, 329, 138, 320, /* 2440 */ 248, 80, 321, 124, 321, 321, 321, 321, 321, 321, /* 2450 */ 339, 311, 319, 321, 348, 329, 138, 320, 248, 84, /* 2460 */ 321, 124, 321, 321, 321, 321, 321, 321, 339, 311, /* 2470 */ 321, 321, 348, 329, 319, 320, 321, 321, 138, 321, /* 2480 */ 248, 66, 321, 124, 321, 321, 321, 321, 321, 321, /* 2490 */ 339, 311, 321, 321, 348, 329, 321, 320, 321, 319, /* 2500 */ 321, 321, 321, 138, 321, 248, 87, 321, 124, 321, /* 2510 */ 321, 321, 321, 321, 321, 339, 311, 319, 321, 348, /* 2520 */ 329, 93, 320, 118, 53, 321, 116, 321, 321, 321, /* 2530 */ 321, 321, 321, 339, 311, 319, 321, 348, 329, 153, /* 2540 */ 320, 248, 319, 321, 124, 321, 157, 321, 248, 321, /* 2550 */ 321, 124, 326, 321, 321, 348, 329, 321, 320, 251, /* 2560 */ 321, 321, 348, 329, 321, 320, ); static public $yy_lookahead = array( /* 0 */ 1, 81, 82, 83, 3, 4, 5, 6, 7, 8, /* 10 */ 9, 10, 11, 12, 22, 16, 15, 19, 20, 16, /* 20 */ 15, 22, 21, 18, 23, 22, 83, 22, 85, 28, /* 30 */ 94, 15, 31, 32, 18, 30, 37, 38, 39, 40, /* 40 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, /* 50 */ 4, 5, 6, 7, 8, 90, 58, 25, 12, 13, /* 60 */ 14, 17, 63, 64, 65, 66, 67, 68, 69, 70, /* 70 */ 71, 72, 73, 74, 1, 59, 82, 87, 113, 35, /* 80 */ 86, 15, 88, 89, 18, 91, 15, 97, 16, 18, /* 90 */ 19, 19, 98, 99, 22, 22, 102, 103, 108, 105, /* 100 */ 27, 79, 80, 81, 82, 83, 112, 35, 76, 35, /* 110 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, /* 120 */ 47, 48, 49, 50, 34, 59, 15, 84, 17, 18, /* 130 */ 58, 15, 58, 17, 18, 114, 63, 64, 65, 66, /* 140 */ 67, 68, 69, 70, 71, 72, 73, 74, 1, 33, /* 150 */ 82, 90, 62, 30, 86, 35, 88, 89, 35, 91, /* 160 */ 92, 100, 101, 16, 1, 15, 98, 99, 18, 22, /* 170 */ 102, 103, 22, 105, 113, 34, 56, 36, 58, 16, /* 180 */ 30, 58, 62, 20, 37, 38, 39, 40, 41, 42, /* 190 */ 43, 44, 45, 46, 47, 48, 49, 50, 16, 87, /* 200 */ 19, 20, 90, 107, 22, 109, 110, 25, 1, 97, /* 210 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, /* 220 */ 73, 74, 1, 16, 82, 113, 87, 1, 86, 90, /* 230 */ 88, 89, 16, 91, 1, 13, 97, 16, 22, 58, /* 240 */ 98, 99, 16, 22, 102, 103, 15, 105, 22, 18, /* 250 */ 19, 35, 113, 94, 112, 22, 25, 106, 37, 38, /* 260 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 270 */ 49, 50, 1, 87, 58, 106, 90, 51, 15, 109, /* 280 */ 110, 18, 19, 97, 63, 64, 65, 66, 67, 68, /* 290 */ 69, 70, 71, 72, 73, 74, 82, 114, 16, 113, /* 300 */ 1, 91, 92, 93, 22, 109, 110, 25, 37, 38, /* 310 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, /* 320 */ 49, 50, 59, 15, 17, 19, 18, 17, 18, 30, /* 330 */ 22, 20, 118, 119, 63, 64, 65, 66, 67, 68, /* 340 */ 69, 70, 71, 72, 73, 74, 1, 76, 82, 34, /* 350 */ 51, 36, 86, 24, 88, 89, 87, 91, 92, 1, /* 360 */ 36, 16, 56, 34, 98, 99, 97, 56, 102, 103, /* 370 */ 60, 105, 61, 16, 16, 16, 106, 108, 108, 22, /* 380 */ 22, 22, 37, 38, 39, 40, 41, 42, 43, 44, /* 390 */ 45, 46, 47, 48, 49, 50, 87, 16, 16, 16, /* 400 */ 34, 16, 36, 22, 22, 22, 97, 22, 63, 64, /* 410 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, /* 420 */ 1, 82, 113, 88, 87, 86, 91, 88, 89, 87, /* 430 */ 91, 18, 15, 87, 97, 16, 87, 98, 99, 97, /* 440 */ 105, 102, 103, 97, 105, 108, 97, 16, 16, 16, /* 450 */ 108, 112, 35, 22, 22, 22, 37, 38, 39, 40, /* 460 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, /* 470 */ 1, 87, 59, 16, 16, 15, 17, 18, 18, 22, /* 480 */ 22, 97, 63, 64, 65, 66, 67, 68, 69, 70, /* 490 */ 71, 72, 73, 74, 87, 56, 16, 113, 29, 16, /* 500 */ 61, 106, 22, 108, 97, 22, 37, 38, 39, 40, /* 510 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, /* 520 */ 113, 1, 16, 16, 16, 16, 91, 92, 22, 22, /* 530 */ 22, 22, 63, 64, 65, 66, 67, 68, 69, 70, /* 540 */ 71, 72, 73, 74, 24, 16, 16, 15, 104, 1, /* 550 */ 18, 22, 22, 90, 2, 111, 90, 37, 38, 39, /* 560 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, /* 570 */ 50, 19, 82, 35, 15, 18, 113, 18, 15, 113, /* 580 */ 20, 18, 1, 63, 64, 65, 66, 67, 68, 69, /* 590 */ 70, 71, 72, 73, 74, 1, 82, 16, 95, 51, /* 600 */ 86, 15, 88, 89, 18, 91, 35, 1, 95, 119, /* 610 */ 16, 108, 98, 99, 95, 87, 102, 103, 58, 105, /* 620 */ 87, 108, 16, 2, 22, 97, 18, 108, 91, 92, /* 630 */ 97, 37, 38, 39, 40, 41, 42, 43, 44, 45, /* 640 */ 46, 47, 48, 49, 50, 1, 104, 17, 16, 26, /* 650 */ 52, 25, 33, 111, 22, 60, 95, 63, 64, 65, /* 660 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 108, /* 670 */ 17, 19, 18, 18, 18, 17, 60, 18, 17, 22, /* 680 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, /* 690 */ 46, 47, 48, 49, 50, 33, 56, 2, 18, 18, /* 700 */ 18, 97, 1, 62, 20, 22, 107, 63, 64, 65, /* 710 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 1, /* 720 */ 1, 82, 22, 106, 96, 86, 95, 88, 89, 2, /* 730 */ 91, 113, 95, 95, 110, 16, 108, 98, 99, 108, /* 740 */ 22, 102, 103, 108, 105, 108, 108, 111, 106, 115, /* 750 */ 120, 120, 120, 120, 120, 37, 38, 39, 40, 41, /* 760 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 1, /* 770 */ 51, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 780 */ 95, 63, 64, 65, 66, 67, 68, 69, 70, 71, /* 790 */ 72, 73, 74, 108, 120, 120, 120, 120, 120, 120, /* 800 */ 120, 120, 120, 120, 36, 37, 38, 39, 40, 41, /* 810 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 1, /* 820 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 830 */ 120, 63, 64, 65, 66, 67, 68, 69, 70, 71, /* 840 */ 72, 73, 74, 120, 120, 120, 120, 120, 120, 120, /* 850 */ 120, 120, 120, 120, 120, 37, 38, 39, 40, 41, /* 860 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 1, /* 870 */ 2, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 880 */ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, /* 890 */ 72, 73, 74, 120, 120, 120, 120, 120, 120, 120, /* 900 */ 120, 120, 120, 120, 120, 37, 38, 39, 40, 41, /* 910 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 120, /* 920 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 930 */ 120, 63, 64, 65, 66, 67, 68, 69, 70, 71, /* 940 */ 72, 73, 74, 1, 82, 120, 120, 120, 86, 120, /* 950 */ 88, 89, 120, 91, 120, 95, 95, 120, 16, 120, /* 960 */ 98, 99, 120, 120, 102, 103, 120, 105, 108, 108, /* 970 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 37, /* 980 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 990 */ 48, 49, 50, 1, 120, 120, 120, 120, 120, 120, /* 1000 */ 120, 120, 120, 120, 120, 63, 64, 65, 66, 67, /* 1010 */ 68, 69, 70, 71, 72, 73, 74, 120, 120, 120, /* 1020 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 37, /* 1030 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 1040 */ 48, 49, 50, 120, 120, 120, 120, 120, 120, 120, /* 1050 */ 120, 120, 120, 120, 120, 63, 64, 65, 66, 67, /* 1060 */ 68, 69, 70, 71, 72, 73, 74, 37, 38, 39, /* 1070 */ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, /* 1080 */ 50, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 1090 */ 120, 120, 120, 63, 64, 65, 66, 67, 68, 69, /* 1100 */ 70, 71, 72, 73, 74, 120, 120, 120, 120, 15, /* 1110 */ 120, 17, 18, 120, 82, 21, 120, 23, 86, 120, /* 1120 */ 88, 89, 28, 91, 120, 31, 32, 33, 120, 35, /* 1130 */ 98, 99, 38, 120, 102, 103, 120, 105, 120, 120, /* 1140 */ 120, 120, 120, 120, 120, 120, 120, 53, 54, 55, /* 1150 */ 56, 57, 120, 82, 60, 61, 62, 86, 120, 88, /* 1160 */ 120, 120, 91, 120, 15, 120, 17, 18, 120, 75, /* 1170 */ 21, 120, 23, 102, 103, 120, 105, 28, 10, 120, /* 1180 */ 31, 32, 33, 15, 35, 120, 120, 38, 120, 21, /* 1190 */ 120, 23, 120, 120, 120, 120, 28, 120, 120, 31, /* 1200 */ 32, 120, 53, 54, 55, 56, 57, 120, 82, 60, /* 1210 */ 61, 120, 86, 120, 88, 120, 120, 91, 120, 15, /* 1220 */ 87, 17, 18, 90, 75, 21, 120, 23, 102, 103, /* 1230 */ 97, 105, 28, 100, 101, 31, 32, 33, 120, 35, /* 1240 */ 120, 120, 38, 75, 76, 77, 113, 82, 1, 120, /* 1250 */ 120, 86, 120, 88, 120, 120, 91, 53, 54, 55, /* 1260 */ 56, 57, 120, 16, 60, 61, 120, 102, 103, 22, /* 1270 */ 105, 120, 120, 120, 15, 120, 17, 18, 120, 75, /* 1280 */ 21, 120, 23, 120, 120, 120, 120, 28, 10, 120, /* 1290 */ 31, 32, 33, 15, 35, 120, 120, 38, 51, 21, /* 1300 */ 120, 23, 120, 120, 120, 120, 28, 120, 120, 31, /* 1310 */ 32, 120, 53, 54, 55, 56, 57, 120, 82, 60, /* 1320 */ 61, 120, 86, 120, 88, 120, 120, 91, 120, 15, /* 1330 */ 87, 17, 18, 90, 75, 21, 120, 23, 102, 103, /* 1340 */ 97, 105, 28, 100, 101, 31, 32, 33, 120, 35, /* 1350 */ 120, 120, 38, 75, 76, 77, 113, 82, 1, 120, /* 1360 */ 120, 86, 120, 88, 120, 120, 91, 53, 54, 55, /* 1370 */ 56, 57, 120, 16, 60, 61, 120, 102, 103, 22, /* 1380 */ 105, 120, 120, 120, 15, 87, 17, 18, 90, 75, /* 1390 */ 21, 120, 23, 120, 1, 97, 120, 28, 100, 101, /* 1400 */ 31, 32, 33, 120, 35, 120, 120, 38, 51, 16, /* 1410 */ 120, 113, 82, 20, 120, 22, 86, 120, 88, 120, /* 1420 */ 120, 91, 53, 54, 55, 56, 57, 120, 35, 60, /* 1430 */ 61, 120, 102, 103, 120, 105, 120, 120, 120, 15, /* 1440 */ 87, 17, 18, 90, 75, 21, 120, 23, 120, 120, /* 1450 */ 97, 58, 28, 100, 101, 31, 32, 33, 120, 35, /* 1460 */ 120, 120, 38, 120, 120, 120, 113, 82, 120, 120, /* 1470 */ 120, 86, 120, 88, 120, 120, 91, 53, 54, 55, /* 1480 */ 56, 57, 120, 120, 60, 61, 120, 102, 103, 120, /* 1490 */ 105, 120, 120, 120, 15, 87, 17, 18, 90, 75, /* 1500 */ 21, 120, 23, 120, 120, 97, 120, 28, 100, 101, /* 1510 */ 31, 32, 33, 120, 35, 120, 87, 38, 120, 90, /* 1520 */ 120, 113, 120, 120, 120, 120, 97, 120, 120, 100, /* 1530 */ 101, 120, 53, 54, 55, 56, 57, 120, 120, 60, /* 1540 */ 61, 120, 113, 120, 120, 120, 120, 120, 120, 15, /* 1550 */ 120, 17, 18, 1, 75, 21, 120, 23, 120, 120, /* 1560 */ 120, 120, 28, 120, 120, 31, 32, 33, 16, 35, /* 1570 */ 120, 120, 38, 120, 22, 120, 120, 120, 120, 120, /* 1580 */ 120, 29, 120, 120, 120, 120, 120, 53, 54, 55, /* 1590 */ 56, 57, 120, 120, 60, 61, 120, 120, 120, 120, /* 1600 */ 120, 120, 120, 51, 15, 120, 17, 18, 120, 75, /* 1610 */ 21, 120, 23, 120, 120, 120, 120, 28, 120, 120, /* 1620 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120, /* 1630 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 1640 */ 120, 120, 53, 54, 55, 56, 57, 120, 120, 60, /* 1650 */ 61, 120, 120, 120, 120, 120, 120, 120, 120, 15, /* 1660 */ 120, 17, 18, 120, 75, 21, 120, 23, 120, 120, /* 1670 */ 120, 120, 28, 120, 120, 31, 32, 33, 120, 35, /* 1680 */ 120, 120, 38, 120, 120, 120, 120, 120, 120, 120, /* 1690 */ 120, 120, 120, 120, 120, 120, 120, 53, 54, 55, /* 1700 */ 56, 57, 120, 120, 60, 120, 120, 120, 120, 120, /* 1710 */ 120, 120, 120, 120, 15, 120, 17, 18, 120, 75, /* 1720 */ 21, 120, 23, 120, 120, 120, 120, 28, 120, 120, /* 1730 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120, /* 1740 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 1750 */ 120, 120, 53, 54, 55, 56, 57, 120, 120, 60, /* 1760 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 16, /* 1770 */ 120, 120, 120, 120, 75, 22, 120, 24, 120, 26, /* 1780 */ 27, 120, 29, 120, 120, 120, 120, 34, 35, 36, /* 1790 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, /* 1800 */ 120, 120, 120, 82, 51, 120, 120, 86, 120, 88, /* 1810 */ 89, 58, 91, 120, 120, 62, 120, 120, 120, 98, /* 1820 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 76, /* 1830 */ 120, 120, 120, 120, 120, 120, 82, 116, 117, 120, /* 1840 */ 86, 120, 88, 89, 120, 91, 120, 120, 120, 120, /* 1850 */ 120, 120, 98, 99, 120, 120, 102, 103, 82, 105, /* 1860 */ 120, 120, 86, 120, 88, 89, 120, 91, 120, 120, /* 1870 */ 120, 117, 120, 120, 98, 99, 120, 120, 102, 103, /* 1880 */ 120, 105, 120, 120, 120, 120, 82, 120, 120, 120, /* 1890 */ 86, 120, 88, 89, 120, 91, 120, 120, 120, 120, /* 1900 */ 120, 120, 98, 99, 120, 120, 102, 103, 120, 105, /* 1910 */ 120, 120, 82, 120, 120, 120, 86, 120, 88, 89, /* 1920 */ 120, 91, 120, 120, 120, 120, 120, 120, 98, 99, /* 1930 */ 120, 120, 102, 103, 120, 105, 82, 120, 120, 120, /* 1940 */ 86, 120, 88, 89, 120, 91, 120, 120, 120, 120, /* 1950 */ 120, 120, 98, 99, 82, 120, 102, 103, 86, 105, /* 1960 */ 88, 89, 120, 91, 120, 120, 120, 120, 120, 120, /* 1970 */ 98, 99, 120, 120, 102, 103, 82, 105, 120, 120, /* 1980 */ 86, 120, 88, 89, 120, 91, 120, 120, 120, 120, /* 1990 */ 120, 120, 98, 99, 120, 120, 102, 103, 120, 105, /* 2000 */ 120, 82, 120, 120, 120, 86, 120, 88, 89, 120, /* 2010 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 82, /* 2020 */ 120, 102, 103, 86, 105, 88, 89, 120, 91, 120, /* 2030 */ 120, 120, 120, 120, 120, 98, 99, 82, 120, 102, /* 2040 */ 103, 86, 105, 88, 89, 120, 91, 120, 120, 120, /* 2050 */ 120, 120, 120, 98, 99, 120, 120, 102, 103, 82, /* 2060 */ 105, 120, 120, 86, 120, 88, 89, 120, 91, 120, /* 2070 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102, /* 2080 */ 103, 120, 105, 120, 82, 120, 120, 120, 86, 120, /* 2090 */ 88, 89, 120, 91, 120, 120, 120, 120, 120, 120, /* 2100 */ 98, 99, 82, 120, 102, 103, 86, 105, 88, 89, /* 2110 */ 120, 91, 120, 120, 120, 120, 120, 120, 98, 99, /* 2120 */ 82, 120, 102, 103, 86, 105, 88, 89, 120, 91, /* 2130 */ 120, 120, 120, 120, 120, 120, 98, 99, 120, 120, /* 2140 */ 102, 103, 82, 105, 120, 120, 86, 120, 88, 89, /* 2150 */ 120, 91, 120, 120, 120, 120, 120, 120, 98, 99, /* 2160 */ 120, 120, 102, 103, 120, 105, 120, 82, 120, 120, /* 2170 */ 120, 86, 120, 88, 89, 120, 91, 120, 120, 120, /* 2180 */ 120, 120, 120, 98, 99, 82, 120, 102, 103, 86, /* 2190 */ 105, 88, 89, 120, 91, 120, 120, 120, 120, 120, /* 2200 */ 120, 98, 99, 82, 120, 102, 103, 86, 105, 88, /* 2210 */ 89, 120, 91, 120, 120, 120, 120, 120, 120, 98, /* 2220 */ 99, 120, 120, 102, 103, 82, 105, 120, 120, 86, /* 2230 */ 120, 88, 89, 120, 91, 120, 120, 120, 120, 120, /* 2240 */ 120, 98, 99, 120, 120, 102, 103, 120, 105, 120, /* 2250 */ 82, 120, 120, 120, 86, 120, 88, 89, 120, 91, /* 2260 */ 120, 120, 120, 120, 120, 120, 98, 99, 82, 120, /* 2270 */ 102, 103, 86, 105, 88, 89, 120, 91, 120, 120, /* 2280 */ 120, 120, 120, 120, 98, 99, 82, 120, 102, 103, /* 2290 */ 86, 105, 88, 89, 120, 91, 120, 120, 120, 120, /* 2300 */ 120, 120, 98, 99, 120, 120, 102, 103, 82, 105, /* 2310 */ 120, 120, 86, 120, 88, 89, 120, 91, 120, 120, /* 2320 */ 120, 120, 120, 120, 98, 99, 120, 120, 102, 103, /* 2330 */ 120, 105, 120, 82, 120, 120, 120, 86, 120, 88, /* 2340 */ 89, 120, 91, 120, 120, 120, 120, 120, 120, 98, /* 2350 */ 99, 82, 120, 102, 103, 86, 105, 88, 89, 120, /* 2360 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 82, /* 2370 */ 120, 102, 103, 86, 105, 88, 89, 120, 91, 120, /* 2380 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102, /* 2390 */ 103, 82, 105, 120, 120, 86, 120, 88, 89, 120, /* 2400 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120, /* 2410 */ 120, 102, 103, 120, 105, 120, 82, 120, 120, 120, /* 2420 */ 86, 120, 88, 89, 120, 91, 120, 120, 120, 120, /* 2430 */ 120, 120, 98, 99, 82, 120, 102, 103, 86, 105, /* 2440 */ 88, 89, 120, 91, 120, 120, 120, 120, 120, 120, /* 2450 */ 98, 99, 82, 120, 102, 103, 86, 105, 88, 89, /* 2460 */ 120, 91, 120, 120, 120, 120, 120, 120, 98, 99, /* 2470 */ 120, 120, 102, 103, 82, 105, 120, 120, 86, 120, /* 2480 */ 88, 89, 120, 91, 120, 120, 120, 120, 120, 120, /* 2490 */ 98, 99, 120, 120, 102, 103, 120, 105, 120, 82, /* 2500 */ 120, 120, 120, 86, 120, 88, 89, 120, 91, 120, /* 2510 */ 120, 120, 120, 120, 120, 98, 99, 82, 120, 102, /* 2520 */ 103, 86, 105, 88, 89, 120, 91, 120, 120, 120, /* 2530 */ 120, 120, 120, 98, 99, 82, 120, 102, 103, 86, /* 2540 */ 105, 88, 82, 120, 91, 120, 86, 120, 88, 120, /* 2550 */ 120, 91, 99, 120, 120, 102, 103, 120, 105, 99, /* 2560 */ 120, 120, 102, 103, 120, 105, ); const YY_SHIFT_USE_DFLT = -9; const YY_SHIFT_MAX = 250; static public $yy_shift_ofst = array( /* 0 */ 1, 1424, 1259, 1149, 1259, 1149, 1149, 1424, 1094, 1149, /* 10 */ 1149, 1479, 1149, 1589, 1534, 1149, 1149, 1149, 1314, 1149, /* 20 */ 1149, 1149, 1149, 1149, 1369, 1149, 1149, 1149, 1149, 1314, /* 30 */ 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, /* 40 */ 1149, 1149, 1369, 1149, 1204, 1204, 1644, 1699, 1699, 1699, /* 50 */ 1699, 1699, 1699, 147, 221, -1, 73, 718, 718, 718, /* 60 */ 768, 818, 644, 594, 345, 271, 419, 942, 469, 520, /* 70 */ 868, 992, 992, 992, 992, 992, 992, 992, 992, 992, /* 80 */ 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, /* 90 */ 1030, 1030, 1393, 1357, 233, 1, 1278, 150, 5, 308, /* 100 */ 308, 311, 358, 310, 233, 44, 233, 1168, 46, 1552, /* 110 */ 263, 1247, 226, 231, 71, 16, -2, 299, 182, 181, /* 120 */ 282, 163, 719, 459, 560, 532, 44, 460, 559, 581, /* 130 */ 460, 460, 460, 44, 563, 460, 632, 586, 548, 532, /* 140 */ 459, 460, 460, 460, 460, 701, 701, 701, 683, 700, /* 150 */ 701, 701, 701, 701, 684, 701, 684, -9, 66, 111, /* 160 */ 3, 357, 359, 382, 381, 606, 439, 417, 509, 439, /* 170 */ 439, 530, 508, 458, 207, 431, 480, 507, 506, 483, /* 180 */ 439, 457, 432, 439, 529, 433, 385, 383, 727, 684, /* 190 */ 701, 684, 727, 701, 684, 538, 222, -8, -8, -9, /* 200 */ -9, -9, -9, 1753, 72, 116, 216, 120, 123, 74, /* 210 */ 74, 141, 552, 32, 315, 306, 329, 90, 413, 366, /* 220 */ 682, 616, 657, 659, 658, 655, 656, 661, 662, 641, /* 230 */ 681, 680, 640, 695, 654, 652, 621, 602, 571, 557, /* 240 */ 324, 538, 608, 307, 630, 595, 653, 619, 626, 623, /* 250 */ 598, ); const YY_REDUCE_USE_DFLT = -81; const YY_REDUCE_MAX = 202; static public $yy_reduce_ofst = array( /* 0 */ 22, 1721, 68, 339, 266, -6, 142, 1754, 862, 2020, /* 10 */ 514, 1977, 1776, 2103, 1919, 1872, 1804, 1830, 2121, 2392, /* 20 */ 2186, 2287, 2269, 2168, 2435, 2143, 639, 1955, 2085, 1937, /* 30 */ 1032, 2060, 2038, 1894, 1854, 2002, 2352, 2417, 2370, 2334, /* 40 */ 2204, 2226, 2251, 2309, 2460, 2453, 1071, 1126, 1275, 1385, /* 50 */ 1330, 1236, 1165, 1353, 1408, 1243, 1429, 1298, 1133, 1353, /* 60 */ 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, /* 70 */ 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, /* 80 */ 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, /* 90 */ 61, 61, 186, 139, 112, -80, 214, -10, 342, 337, /* 100 */ 269, 96, 309, 335, 384, 210, 407, 490, -57, -35, /* 110 */ 270, -35, -35, 628, 270, 270, 170, -35, 528, 170, /* 120 */ 528, 466, -35, 444, 170, 513, 435, 561, 519, 463, /* 130 */ 519, 637, 395, 537, 861, 631, 533, 519, -35, 519, /* 140 */ 542, 860, 685, 638, 503, -35, -35, -35, 346, 349, /* 150 */ -35, -35, -35, -35, 170, -35, 196, -35, 635, 636, /* 160 */ 604, 604, 604, 604, 604, 618, 599, 642, 604, 599, /* 170 */ 599, 604, 604, 604, 618, 604, 604, 604, 604, 604, /* 180 */ 599, 604, 604, 599, 604, 604, 604, 604, 634, 624, /* 190 */ 618, 624, 634, 618, 624, 617, 43, -64, 159, 21, /* 200 */ 169, 151, 183, ); static public $yyExpectedTokens = array( /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, 32, ), /* 1 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 2 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 3 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 4 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 5 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 6 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 7 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 8 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 62, 75, ), /* 9 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 10 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 11 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 12 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 13 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 14 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 15 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 16 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 17 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 18 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 19 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 20 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 21 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 22 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 23 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 24 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 25 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 26 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 27 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 28 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 29 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 30 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 31 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 32 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 33 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 34 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 35 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 36 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 37 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 38 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 39 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 40 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 41 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 42 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 43 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 44 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 45 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ), /* 46 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 47 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 48 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 49 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 50 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 51 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 52 */ array(15, 17, 18, 21, 23, 28, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ), /* 53 */ array(1, 16, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 54 */ array(1, 16, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 55 */ array(1, 16, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 56 */ array(1, 22, 27, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 57 */ array(1, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 58 */ array(1, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 59 */ array(1, 22, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 60 */ array(1, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 61 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 62 */ array(1, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 63 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 64 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 65 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, ), /* 66 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 67 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 68 */ array(1, 29, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 69 */ array(1, 24, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 70 */ array(1, 2, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 71 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 72 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 73 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 74 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 75 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 76 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 77 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 78 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 79 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 80 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 81 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 82 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 83 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 84 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 85 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 86 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 87 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 88 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 89 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 90 */ array(37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 91 */ array(37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ), /* 92 */ array(1, 16, 20, 22, 35, 58, ), /* 93 */ array(1, 16, 22, 51, ), /* 94 */ array(1, 22, ), /* 95 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 23, 28, 31, 32, ), /* 96 */ array(10, 15, 21, 23, 28, 31, 32, 75, 76, 77, ), /* 97 */ array(15, 18, 22, 30, ), /* 98 */ array(15, 18, 22, 30, ), /* 99 */ array(15, 18, 22, ), /* 100 */ array(15, 18, 22, ), /* 101 */ array(20, 56, 61, ), /* 102 */ array(1, 16, 22, ), /* 103 */ array(17, 18, 60, ), /* 104 */ array(1, 22, ), /* 105 */ array(17, 35, ), /* 106 */ array(1, 22, ), /* 107 */ array(10, 15, 21, 23, 28, 31, 32, 75, 76, 77, ), /* 108 */ array(4, 5, 6, 7, 8, 12, 13, 14, ), /* 109 */ array(1, 16, 22, 29, 51, ), /* 110 */ array(15, 18, 19, 59, ), /* 111 */ array(1, 16, 22, 51, ), /* 112 */ array(1, 16, 22, 51, ), /* 113 */ array(15, 18, 19, 25, ), /* 114 */ array(15, 18, 19, ), /* 115 */ array(15, 18, 59, ), /* 116 */ array(19, 20, 58, ), /* 117 */ array(1, 30, 51, ), /* 118 */ array(16, 22, 25, ), /* 119 */ array(19, 20, 58, ), /* 120 */ array(16, 22, 25, ), /* 121 */ array(1, 16, 20, ), /* 122 */ array(1, 16, 51, ), /* 123 */ array(17, 18, ), /* 124 */ array(20, 58, ), /* 125 */ array(15, 18, ), /* 126 */ array(17, 35, ), /* 127 */ array(15, 18, ), /* 128 */ array(15, 18, ), /* 129 */ array(1, 16, ), /* 130 */ array(15, 18, ), /* 131 */ array(15, 18, ), /* 132 */ array(15, 18, ), /* 133 */ array(17, 35, ), /* 134 */ array(15, 18, ), /* 135 */ array(15, 18, ), /* 136 */ array(16, 22, ), /* 137 */ array(15, 18, ), /* 138 */ array(1, 51, ), /* 139 */ array(15, 18, ), /* 140 */ array(17, 18, ), /* 141 */ array(15, 18, ), /* 142 */ array(15, 18, ), /* 143 */ array(15, 18, ), /* 144 */ array(15, 18, ), /* 145 */ array(1, ), /* 146 */ array(1, ), /* 147 */ array(1, ), /* 148 */ array(22, ), /* 149 */ array(22, ), /* 150 */ array(1, ), /* 151 */ array(1, ), /* 152 */ array(1, ), /* 153 */ array(1, ), /* 154 */ array(20, ), /* 155 */ array(1, ), /* 156 */ array(20, ), /* 157 */ array(), /* 158 */ array(15, 18, 59, ), /* 159 */ array(15, 17, 18, ), /* 160 */ array(16, 22, ), /* 161 */ array(16, 22, ), /* 162 */ array(16, 22, ), /* 163 */ array(16, 22, ), /* 164 */ array(16, 22, ), /* 165 */ array(1, 16, ), /* 166 */ array(56, 61, ), /* 167 */ array(15, 35, ), /* 168 */ array(16, 22, ), /* 169 */ array(56, 61, ), /* 170 */ array(56, 61, ), /* 171 */ array(16, 22, ), /* 172 */ array(16, 22, ), /* 173 */ array(16, 22, ), /* 174 */ array(1, 16, ), /* 175 */ array(16, 22, ), /* 176 */ array(16, 22, ), /* 177 */ array(16, 22, ), /* 178 */ array(16, 22, ), /* 179 */ array(16, 22, ), /* 180 */ array(56, 61, ), /* 181 */ array(16, 22, ), /* 182 */ array(16, 22, ), /* 183 */ array(56, 61, ), /* 184 */ array(16, 22, ), /* 185 */ array(16, 22, ), /* 186 */ array(16, 22, ), /* 187 */ array(16, 22, ), /* 188 */ array(2, ), /* 189 */ array(20, ), /* 190 */ array(1, ), /* 191 */ array(20, ), /* 192 */ array(2, ), /* 193 */ array(1, ), /* 194 */ array(20, ), /* 195 */ array(35, ), /* 196 */ array(13, ), /* 197 */ array(22, ), /* 198 */ array(22, ), /* 199 */ array(), /* 200 */ array(), /* 201 */ array(), /* 202 */ array(), /* 203 */ array(16, 22, 24, 26, 27, 29, 34, 35, 36, 51, 58, 62, 76, ), /* 204 */ array(16, 19, 22, 35, 58, ), /* 205 */ array(15, 17, 18, 33, ), /* 206 */ array(16, 22, 35, 58, ), /* 207 */ array(35, 56, 58, 62, ), /* 208 */ array(30, 35, 58, ), /* 209 */ array(35, 58, ), /* 210 */ array(35, 58, ), /* 211 */ array(34, 36, ), /* 212 */ array(2, 19, ), /* 213 */ array(25, 76, ), /* 214 */ array(34, 36, ), /* 215 */ array(19, 56, ), /* 216 */ array(24, 34, ), /* 217 */ array(34, 62, ), /* 218 */ array(18, 59, ), /* 219 */ array(34, 36, ), /* 220 */ array(18, ), /* 221 */ array(60, ), /* 222 */ array(22, ), /* 223 */ array(18, ), /* 224 */ array(17, ), /* 225 */ array(18, ), /* 226 */ array(18, ), /* 227 */ array(17, ), /* 228 */ array(33, ), /* 229 */ array(62, ), /* 230 */ array(18, ), /* 231 */ array(18, ), /* 232 */ array(56, ), /* 233 */ array(2, ), /* 234 */ array(18, ), /* 235 */ array(19, ), /* 236 */ array(2, ), /* 237 */ array(22, ), /* 238 */ array(35, ), /* 239 */ array(18, ), /* 240 */ array(36, ), /* 241 */ array(35, ), /* 242 */ array(18, ), /* 243 */ array(17, ), /* 244 */ array(17, ), /* 245 */ array(60, ), /* 246 */ array(17, ), /* 247 */ array(33, ), /* 248 */ array(25, ), /* 249 */ array(26, ), /* 250 */ array(52, ), /* 251 */ array(), /* 252 */ array(), /* 253 */ array(), /* 254 */ array(), /* 255 */ array(), /* 256 */ array(), /* 257 */ array(), /* 258 */ array(), /* 259 */ array(), /* 260 */ array(), /* 261 */ array(), /* 262 */ array(), /* 263 */ array(), /* 264 */ array(), /* 265 */ array(), /* 266 */ array(), /* 267 */ array(), /* 268 */ array(), /* 269 */ array(), /* 270 */ array(), /* 271 */ array(), /* 272 */ array(), /* 273 */ array(), /* 274 */ array(), /* 275 */ array(), /* 276 */ array(), /* 277 */ array(), /* 278 */ array(), /* 279 */ array(), /* 280 */ array(), /* 281 */ array(), /* 282 */ array(), /* 283 */ array(), /* 284 */ array(), /* 285 */ array(), /* 286 */ array(), /* 287 */ array(), /* 288 */ array(), /* 289 */ array(), /* 290 */ array(), /* 291 */ array(), /* 292 */ array(), /* 293 */ array(), /* 294 */ array(), /* 295 */ array(), /* 296 */ array(), /* 297 */ array(), /* 298 */ array(), /* 299 */ array(), /* 300 */ array(), /* 301 */ array(), /* 302 */ array(), /* 303 */ array(), /* 304 */ array(), /* 305 */ array(), /* 306 */ array(), /* 307 */ array(), /* 308 */ array(), /* 309 */ array(), /* 310 */ array(), /* 311 */ array(), /* 312 */ array(), /* 313 */ array(), /* 314 */ array(), /* 315 */ array(), /* 316 */ array(), /* 317 */ array(), /* 318 */ array(), /* 319 */ array(), /* 320 */ array(), /* 321 */ array(), /* 322 */ array(), /* 323 */ array(), /* 324 */ array(), /* 325 */ array(), /* 326 */ array(), /* 327 */ array(), /* 328 */ array(), /* 329 */ array(), /* 330 */ array(), /* 331 */ array(), /* 332 */ array(), /* 333 */ array(), /* 334 */ array(), /* 335 */ array(), /* 336 */ array(), /* 337 */ array(), /* 338 */ array(), /* 339 */ array(), /* 340 */ array(), /* 341 */ array(), /* 342 */ array(), /* 343 */ array(), /* 344 */ array(), /* 345 */ array(), /* 346 */ array(), /* 347 */ array(), /* 348 */ array(), /* 349 */ array(), /* 350 */ array(), /* 351 */ array(), /* 352 */ array(), /* 353 */ array(), /* 354 */ array(), /* 355 */ array(), /* 356 */ array(), /* 357 */ array(), /* 358 */ array(), /* 359 */ array(), /* 360 */ array(), /* 361 */ array(), /* 362 */ array(), /* 363 */ array(), /* 364 */ array(), /* 365 */ array(), /* 366 */ array(), /* 367 */ array(), /* 368 */ array(), /* 369 */ array(), /* 370 */ array(), /* 371 */ array(), /* 372 */ array(), /* 373 */ array(), /* 374 */ array(), /* 375 */ array(), /* 376 */ array(), /* 377 */ array(), /* 378 */ array(), /* 379 */ array(), /* 380 */ array(), /* 381 */ array(), /* 382 */ array(), ); static public $yy_default = array( /* 0 */ 386, 565, 582, 536, 582, 536, 536, 582, 582, 582, /* 10 */ 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, /* 20 */ 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, /* 30 */ 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, /* 40 */ 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, /* 50 */ 582, 582, 582, 582, 582, 582, 444, 444, 444, 444, /* 60 */ 582, 582, 582, 582, 582, 582, 582, 582, 449, 582, /* 70 */ 582, 446, 535, 428, 534, 566, 567, 478, 477, 468, /* 80 */ 465, 449, 568, 455, 469, 474, 473, 470, 454, 451, /* 90 */ 482, 481, 493, 457, 444, 383, 582, 444, 444, 444, /* 100 */ 444, 548, 464, 582, 444, 582, 444, 582, 582, 457, /* 110 */ 509, 457, 457, 582, 509, 509, 502, 457, 483, 502, /* 120 */ 483, 582, 457, 582, 502, 582, 582, 582, 582, 582, /* 130 */ 582, 582, 509, 582, 582, 582, 582, 582, 457, 582, /* 140 */ 582, 582, 582, 582, 582, 480, 461, 484, 444, 444, /* 150 */ 486, 485, 462, 467, 502, 460, 545, 543, 510, 582, /* 160 */ 582, 582, 582, 582, 582, 582, 527, 509, 582, 526, /* 170 */ 529, 582, 582, 582, 582, 582, 582, 582, 582, 582, /* 180 */ 507, 582, 582, 528, 582, 582, 582, 582, 537, 523, /* 190 */ 501, 546, 538, 464, 549, 509, 401, 581, 581, 542, /* 200 */ 509, 509, 542, 459, 493, 582, 493, 493, 493, 493, /* 210 */ 479, 582, 521, 483, 582, 489, 582, 582, 582, 582, /* 220 */ 582, 582, 582, 582, 582, 582, 582, 582, 491, 582, /* 230 */ 582, 582, 489, 521, 582, 582, 521, 582, 547, 582, /* 240 */ 582, 521, 582, 582, 582, 582, 582, 582, 483, 452, /* 250 */ 495, 544, 514, 516, 515, 518, 495, 531, 532, 409, /* 260 */ 395, 431, 394, 425, 396, 430, 398, 456, 397, 426, /* 270 */ 393, 387, 385, 384, 388, 389, 392, 391, 390, 399, /* 280 */ 400, 435, 442, 436, 410, 423, 424, 441, 443, 522, /* 290 */ 408, 407, 404, 403, 402, 405, 453, 429, 580, 406, /* 300 */ 440, 573, 558, 559, 560, 561, 557, 556, 553, 554, /* 310 */ 555, 463, 492, 540, 539, 411, 525, 488, 490, 500, /* 320 */ 504, 552, 551, 508, 503, 459, 466, 499, 496, 497, /* 330 */ 511, 471, 472, 498, 513, 550, 512, 476, 519, 458, /* 340 */ 475, 576, 487, 575, 578, 579, 572, 574, 494, 434, /* 350 */ 570, 571, 433, 562, 530, 505, 506, 427, 533, 564, /* 360 */ 563, 432, 569, 421, 415, 416, 439, 414, 541, 412, /* 370 */ 413, 577, 438, 417, 521, 422, 520, 420, 437, 524, /* 380 */ 418, 419, 517, ); const YYNOCODE = 121; const YYSTACKDEPTH = 100; const YYNSTATE = 383; const YYNRULE = 199; const YYERRORSYMBOL = 78; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( ); static function Trace($TraceFILE, $zTracePrompt) { if (!$TraceFILE) { $zTracePrompt = 0; } elseif (!$zTracePrompt) { $TraceFILE = 0; } self::$yyTraceFILE = $TraceFILE; self::$yyTracePrompt = $zTracePrompt; } static function PrintTrace() { self::$yyTraceFILE = fopen('php://output', 'w'); self::$yyTracePrompt = '<br>'; } static public $yyTraceFILE; static public $yyTracePrompt; public $yyidx; /* Index of top element in stack */ public $yyerrcnt; /* Shifts left before out of the error */ public $yystack = array(); /* The parser's stack */ public $yyTokenName = array( '$', 'VERT', 'COLON', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', 'ASPSTARTTAG', 'ASPENDTAG', 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LINEBREAK', 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', 'RDEL', 'DOLLAR', 'ID', 'EQUAL', 'PTR', 'LDELIF', 'SPACE', 'LDELFOR', 'SEMICOLON', 'INCDEC', 'TO', 'STEP', 'LDELFOREACH', 'AS', 'APTR', 'SMARTYBLOCKCHILD', 'LDELSLASH', 'INTEGER', 'COMMA', 'OPENP', 'CLOSEP', 'MATH', 'UNIMATH', 'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', 'QMARK', 'NOT', 'TYPECAST', 'HEX', 'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT', 'HATCH', 'OPENB', 'CLOSEB', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', 'LXOR', 'QUOTE', 'BACKTICK', 'DOLLARID', 'error', 'start', 'template', 'template_element', 'smartytag', 'literal', 'literal_elements', 'literal_element', 'value', 'attributes', 'variable', 'expr', 'modifierlist', 'varindexed', 'statement', 'statements', 'optspace', 'varvar', 'foraction', 'attribute', 'ternary', 'array', 'ifcond', 'lop', 'function', 'doublequoted_with_quotes', 'static_class_access', 'object', 'arrayindex', 'indexdef', 'varvarele', 'objectchain', 'objectelement', 'method', 'params', 'modifier', 'modparameters', 'modparameter', 'arrayelements', 'arrayelement', 'doublequoted', 'doublequotedcontent', ); static public $yyRuleName = array( /* 0 */ "start ::= template", /* 1 */ "template ::= template_element", /* 2 */ "template ::= template template_element", /* 3 */ "template ::=", /* 4 */ "template_element ::= smartytag", /* 5 */ "template_element ::= COMMENT", /* 6 */ "template_element ::= literal", /* 7 */ "template_element ::= PHPSTARTTAG", /* 8 */ "template_element ::= PHPENDTAG", /* 9 */ "template_element ::= ASPSTARTTAG", /* 10 */ "template_element ::= ASPENDTAG", /* 11 */ "template_element ::= FAKEPHPSTARTTAG", /* 12 */ "template_element ::= XMLTAG", /* 13 */ "template_element ::= OTHER", /* 14 */ "template_element ::= LINEBREAK", /* 15 */ "literal ::= LITERALSTART LITERALEND", /* 16 */ "literal ::= LITERALSTART literal_elements LITERALEND", /* 17 */ "literal_elements ::= literal_elements literal_element", /* 18 */ "literal_elements ::=", /* 19 */ "literal_element ::= literal", /* 20 */ "literal_element ::= LITERAL", /* 21 */ "literal_element ::= PHPSTARTTAG", /* 22 */ "literal_element ::= FAKEPHPSTARTTAG", /* 23 */ "literal_element ::= PHPENDTAG", /* 24 */ "literal_element ::= ASPSTARTTAG", /* 25 */ "literal_element ::= ASPENDTAG", /* 26 */ "smartytag ::= LDEL value RDEL", /* 27 */ "smartytag ::= LDEL value attributes RDEL", /* 28 */ "smartytag ::= LDEL variable attributes RDEL", /* 29 */ "smartytag ::= LDEL expr modifierlist attributes RDEL", /* 30 */ "smartytag ::= LDEL expr attributes RDEL", /* 31 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL", /* 32 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL", /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL", /* 34 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", /* 35 */ "smartytag ::= LDEL ID attributes RDEL", /* 36 */ "smartytag ::= LDEL ID RDEL", /* 37 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", /* 38 */ "smartytag ::= LDEL ID modifierlist attributes RDEL", /* 39 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL", /* 40 */ "smartytag ::= LDELIF SPACE expr RDEL", /* 41 */ "smartytag ::= LDELIF SPACE expr attributes RDEL", /* 42 */ "smartytag ::= LDELIF SPACE statement RDEL", /* 43 */ "smartytag ::= LDELIF SPACE statement attributes RDEL", /* 44 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes RDEL", /* 45 */ "foraction ::= EQUAL expr", /* 46 */ "foraction ::= INCDEC", /* 47 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL", /* 48 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr attributes RDEL", /* 49 */ "smartytag ::= LDELFOREACH attributes RDEL", /* 50 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes RDEL", /* 51 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", /* 52 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes RDEL", /* 53 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL", /* 54 */ "smartytag ::= SMARTYBLOCKCHILD", /* 55 */ "smartytag ::= LDELSLASH ID RDEL", /* 56 */ "smartytag ::= LDELSLASH ID modifierlist RDEL", /* 57 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", /* 58 */ "smartytag ::= LDELSLASH ID PTR ID modifierlist RDEL", /* 59 */ "attributes ::= attributes attribute", /* 60 */ "attributes ::= attribute", /* 61 */ "attributes ::=", /* 62 */ "attribute ::= SPACE ID EQUAL ID", /* 63 */ "attribute ::= SPACE ID EQUAL expr", /* 64 */ "attribute ::= SPACE ID EQUAL value", /* 65 */ "attribute ::= SPACE ID", /* 66 */ "attribute ::= SPACE expr", /* 67 */ "attribute ::= SPACE value", /* 68 */ "attribute ::= SPACE INTEGER EQUAL expr", /* 69 */ "statements ::= statement", /* 70 */ "statements ::= statements COMMA statement", /* 71 */ "statement ::= DOLLAR varvar EQUAL expr", /* 72 */ "statement ::= varindexed EQUAL expr", /* 73 */ "statement ::= OPENP statement CLOSEP", /* 74 */ "expr ::= value", /* 75 */ "expr ::= ternary", /* 76 */ "expr ::= DOLLAR ID COLON ID", /* 77 */ "expr ::= expr MATH value", /* 78 */ "expr ::= expr UNIMATH value", /* 79 */ "expr ::= expr ANDSYM value", /* 80 */ "expr ::= array", /* 81 */ "expr ::= expr modifierlist", /* 82 */ "expr ::= expr ifcond expr", /* 83 */ "expr ::= expr ISIN array", /* 84 */ "expr ::= expr ISIN value", /* 85 */ "expr ::= expr lop expr", /* 86 */ "expr ::= expr ISDIVBY expr", /* 87 */ "expr ::= expr ISNOTDIVBY expr", /* 88 */ "expr ::= expr ISEVEN", /* 89 */ "expr ::= expr ISNOTEVEN", /* 90 */ "expr ::= expr ISEVENBY expr", /* 91 */ "expr ::= expr ISNOTEVENBY expr", /* 92 */ "expr ::= expr ISODD", /* 93 */ "expr ::= expr ISNOTODD", /* 94 */ "expr ::= expr ISODDBY expr", /* 95 */ "expr ::= expr ISNOTODDBY expr", /* 96 */ "expr ::= value INSTANCEOF ID", /* 97 */ "expr ::= value INSTANCEOF value", /* 98 */ "ternary ::= OPENP expr CLOSEP QMARK DOLLAR ID COLON expr", /* 99 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", /* 100 */ "value ::= variable", /* 101 */ "value ::= UNIMATH value", /* 102 */ "value ::= NOT value", /* 103 */ "value ::= TYPECAST value", /* 104 */ "value ::= variable INCDEC", /* 105 */ "value ::= HEX", /* 106 */ "value ::= INTEGER", /* 107 */ "value ::= INTEGER DOT INTEGER", /* 108 */ "value ::= INTEGER DOT", /* 109 */ "value ::= DOT INTEGER", /* 110 */ "value ::= ID", /* 111 */ "value ::= function", /* 112 */ "value ::= OPENP expr CLOSEP", /* 113 */ "value ::= SINGLEQUOTESTRING", /* 114 */ "value ::= doublequoted_with_quotes", /* 115 */ "value ::= ID DOUBLECOLON static_class_access", /* 116 */ "value ::= varindexed DOUBLECOLON static_class_access", /* 117 */ "value ::= smartytag", /* 118 */ "value ::= value modifierlist", /* 119 */ "variable ::= varindexed", /* 120 */ "variable ::= DOLLAR varvar AT ID", /* 121 */ "variable ::= object", /* 122 */ "variable ::= HATCH ID HATCH", /* 123 */ "variable ::= HATCH variable HATCH", /* 124 */ "varindexed ::= DOLLAR varvar arrayindex", /* 125 */ "arrayindex ::= arrayindex indexdef", /* 126 */ "arrayindex ::=", /* 127 */ "indexdef ::= DOT DOLLAR varvar", /* 128 */ "indexdef ::= DOT DOLLAR varvar AT ID", /* 129 */ "indexdef ::= DOT ID", /* 130 */ "indexdef ::= DOT INTEGER", /* 131 */ "indexdef ::= DOT LDEL expr RDEL", /* 132 */ "indexdef ::= OPENB ID CLOSEB", /* 133 */ "indexdef ::= OPENB ID DOT ID CLOSEB", /* 134 */ "indexdef ::= OPENB expr CLOSEB", /* 135 */ "indexdef ::= OPENB CLOSEB", /* 136 */ "varvar ::= varvarele", /* 137 */ "varvar ::= varvar varvarele", /* 138 */ "varvarele ::= ID", /* 139 */ "varvarele ::= LDEL expr RDEL", /* 140 */ "object ::= varindexed objectchain", /* 141 */ "objectchain ::= objectelement", /* 142 */ "objectchain ::= objectchain objectelement", /* 143 */ "objectelement ::= PTR ID arrayindex", /* 144 */ "objectelement ::= PTR DOLLAR varvar arrayindex", /* 145 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", /* 146 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", /* 147 */ "objectelement ::= PTR method", /* 148 */ "function ::= ID OPENP params CLOSEP", /* 149 */ "method ::= ID OPENP params CLOSEP", /* 150 */ "method ::= DOLLAR ID OPENP params CLOSEP", /* 151 */ "params ::= params COMMA expr", /* 152 */ "params ::= expr", /* 153 */ "params ::=", /* 154 */ "modifierlist ::= modifierlist modifier modparameters", /* 155 */ "modifierlist ::= modifier modparameters", /* 156 */ "modifier ::= VERT AT ID", /* 157 */ "modifier ::= VERT ID", /* 158 */ "modparameters ::= modparameters modparameter", /* 159 */ "modparameters ::=", /* 160 */ "modparameter ::= COLON value", /* 161 */ "modparameter ::= COLON array", /* 162 */ "static_class_access ::= method", /* 163 */ "static_class_access ::= method objectchain", /* 164 */ "static_class_access ::= ID", /* 165 */ "static_class_access ::= DOLLAR ID arrayindex", /* 166 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", /* 167 */ "ifcond ::= EQUALS", /* 168 */ "ifcond ::= NOTEQUALS", /* 169 */ "ifcond ::= GREATERTHAN", /* 170 */ "ifcond ::= LESSTHAN", /* 171 */ "ifcond ::= GREATEREQUAL", /* 172 */ "ifcond ::= LESSEQUAL", /* 173 */ "ifcond ::= IDENTITY", /* 174 */ "ifcond ::= NONEIDENTITY", /* 175 */ "ifcond ::= MOD", /* 176 */ "lop ::= LAND", /* 177 */ "lop ::= LOR", /* 178 */ "lop ::= LXOR", /* 179 */ "array ::= OPENB arrayelements CLOSEB", /* 180 */ "arrayelements ::= arrayelement", /* 181 */ "arrayelements ::= arrayelements COMMA arrayelement", /* 182 */ "arrayelements ::=", /* 183 */ "arrayelement ::= value APTR expr", /* 184 */ "arrayelement ::= ID APTR expr", /* 185 */ "arrayelement ::= expr", /* 186 */ "doublequoted_with_quotes ::= QUOTE QUOTE", /* 187 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", /* 188 */ "doublequoted ::= doublequoted doublequotedcontent", /* 189 */ "doublequoted ::= doublequotedcontent", /* 190 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", /* 191 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", /* 192 */ "doublequotedcontent ::= DOLLARID", /* 193 */ "doublequotedcontent ::= LDEL variable RDEL", /* 194 */ "doublequotedcontent ::= LDEL expr RDEL", /* 195 */ "doublequotedcontent ::= smartytag", /* 196 */ "doublequotedcontent ::= OTHER", /* 197 */ "optspace ::= SPACE", /* 198 */ "optspace ::=", ); function tokenName($tokenType) { if ($tokenType === 0) { return 'End of Input'; } if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) { return $this->yyTokenName[$tokenType]; } else { return "Unknown"; } } static function yy_destructor($yymajor, $yypminor) { switch ($yymajor) { default: break; /* If no destructor action specified: do nothing */ } } function yy_pop_parser_stack() { if (!count($this->yystack)) { return; } $yytos = array_pop($this->yystack); if (self::$yyTraceFILE && $this->yyidx >= 0) { fwrite(self::$yyTraceFILE, self::$yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] . "\n"); } $yymajor = $yytos->major; self::yy_destructor($yymajor, $yytos->minor); $this->yyidx--; return $yymajor; } function __destruct() { while ($this->yystack !== Array()) { $this->yy_pop_parser_stack(); } if (is_resource(self::$yyTraceFILE)) { fclose(self::$yyTraceFILE); } } function yy_get_expected_tokens($token) { $state = $this->yystack[$this->yyidx]->stateno; $expected = self::$yyExpectedTokens[$state]; if (in_array($token, self::$yyExpectedTokens[$state], true)) { return $expected; } $stack = $this->yystack; $yyidx = $this->yyidx; do { $yyact = $this->yy_find_shift_action($token); if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) { // reduce action $done = 0; do { if ($done++ == 100) { $this->yyidx = $yyidx; $this->yystack = $stack; // too much recursion prevents proper detection // so give up return array_unique($expected); } $yyruleno = $yyact - self::YYNSTATE; $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, self::$yyRuleInfo[$yyruleno]['lhs']); if (isset(self::$yyExpectedTokens[$nextstate])) { $expected = array_merge($expected, self::$yyExpectedTokens[$nextstate]); if (in_array($token, self::$yyExpectedTokens[$nextstate], true)) { $this->yyidx = $yyidx; $this->yystack = $stack; return array_unique($expected); } } if ($nextstate < self::YYNSTATE) { // we need to shift a non-terminal $this->yyidx++; $x = new TP_yyStackEntry; $x->stateno = $nextstate; $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { $this->yyidx = $yyidx; $this->yystack = $stack; // the last token was just ignored, we can't accept // by ignoring input, this is in essence ignoring a // syntax error! return array_unique($expected); } elseif ($nextstate === self::YY_NO_ACTION) { $this->yyidx = $yyidx; $this->yystack = $stack; // input accepted, but not shifted (I guess) return $expected; } else { $yyact = $nextstate; } } while (true); } break; } while (true); $this->yyidx = $yyidx; $this->yystack = $stack; return array_unique($expected); } function yy_is_expected_token($token) { if ($token === 0) { return true; // 0 is not part of this } $state = $this->yystack[$this->yyidx]->stateno; if (in_array($token, self::$yyExpectedTokens[$state], true)) { return true; } $stack = $this->yystack; $yyidx = $this->yyidx; do { $yyact = $this->yy_find_shift_action($token); if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) { // reduce action $done = 0; do { if ($done++ == 100) { $this->yyidx = $yyidx; $this->yystack = $stack; // too much recursion prevents proper detection // so give up return true; } $yyruleno = $yyact - self::YYNSTATE; $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs']; $nextstate = $this->yy_find_reduce_action( $this->yystack[$this->yyidx]->stateno, self::$yyRuleInfo[$yyruleno]['lhs']); if (isset(self::$yyExpectedTokens[$nextstate]) && in_array($token, self::$yyExpectedTokens[$nextstate], true)) { $this->yyidx = $yyidx; $this->yystack = $stack; return true; } if ($nextstate < self::YYNSTATE) { // we need to shift a non-terminal $this->yyidx++; $x = new TP_yyStackEntry; $x->stateno = $nextstate; $x->major = self::$yyRuleInfo[$yyruleno]['lhs']; $this->yystack[$this->yyidx] = $x; continue 2; } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) { $this->yyidx = $yyidx; $this->yystack = $stack; if (!$token) { // end of input: this is valid return true; } // the last token was just ignored, we can't accept // by ignoring input, this is in essence ignoring a // syntax error! return false; } elseif ($nextstate === self::YY_NO_ACTION) { $this->yyidx = $yyidx; $this->yystack = $stack; // input accepted, but not shifted (I guess) return true; } else { $yyact = $nextstate; } } while (true); } break; } while (true); $this->yyidx = $yyidx; $this->yystack = $stack; return true; } function yy_find_shift_action($iLookAhead) { $stateno = $this->yystack[$this->yyidx]->stateno; /* if ($this->yyidx < 0) return self::YY_NO_ACTION; */ if (!isset(self::$yy_shift_ofst[$stateno])) { // no shift actions return self::$yy_default[$stateno]; } $i = self::$yy_shift_ofst[$stateno]; if ($i === self::YY_SHIFT_USE_DFLT) { return self::$yy_default[$stateno]; } if ($iLookAhead == self::YYNOCODE) { return self::YY_NO_ACTION; } $i += $iLookAhead; if ($i < 0 || $i >= self::YY_SZ_ACTTAB || self::$yy_lookahead[$i] != $iLookAhead) { if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback) && ($iFallback = self::$yyFallback[$iLookAhead]) != 0) { if (self::$yyTraceFILE) { fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " . $this->yyTokenName[$iLookAhead] . " => " . $this->yyTokenName[$iFallback] . "\n"); } return $this->yy_find_shift_action($iFallback); } return self::$yy_default[$stateno]; } else { return self::$yy_action[$i]; } } function yy_find_reduce_action($stateno, $iLookAhead) { /* $stateno = $this->yystack[$this->yyidx]->stateno; */ if (!isset(self::$yy_reduce_ofst[$stateno])) { return self::$yy_default[$stateno]; } $i = self::$yy_reduce_ofst[$stateno]; if ($i == self::YY_REDUCE_USE_DFLT) { return self::$yy_default[$stateno]; } if ($iLookAhead == self::YYNOCODE) { return self::YY_NO_ACTION; } $i += $iLookAhead; if ($i < 0 || $i >= self::YY_SZ_ACTTAB || self::$yy_lookahead[$i] != $iLookAhead) { return self::$yy_default[$stateno]; } else { return self::$yy_action[$i]; } } function yy_shift($yyNewState, $yyMajor, $yypMinor) { $this->yyidx++; if ($this->yyidx >= self::YYSTACKDEPTH) { $this->yyidx--; if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } #line 84 "smarty_internal_templateparser.y" $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); #line 1742 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; $yytos->stateno = $yyNewState; $yytos->major = $yyMajor; $yytos->minor = $yypMinor; array_push($this->yystack, $yytos); if (self::$yyTraceFILE && $this->yyidx > 0) { fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt, $yyNewState); fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt); for($i = 1; $i <= $this->yyidx; $i++) { fprintf(self::$yyTraceFILE, " %s", $this->yyTokenName[$this->yystack[$i]->major]); } fwrite(self::$yyTraceFILE,"\n"); } } static public $yyRuleInfo = array( array( 'lhs' => 79, 'rhs' => 1 ), array( 'lhs' => 80, 'rhs' => 1 ), array( 'lhs' => 80, 'rhs' => 2 ), array( 'lhs' => 80, 'rhs' => 0 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 81, 'rhs' => 1 ), array( 'lhs' => 83, 'rhs' => 2 ), array( 'lhs' => 83, 'rhs' => 3 ), array( 'lhs' => 84, 'rhs' => 2 ), array( 'lhs' => 84, 'rhs' => 0 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 85, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 3 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 6 ), array( 'lhs' => 82, 'rhs' => 6 ), array( 'lhs' => 82, 'rhs' => 7 ), array( 'lhs' => 82, 'rhs' => 6 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 3 ), array( 'lhs' => 82, 'rhs' => 6 ), array( 'lhs' => 82, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 7 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 13 ), array( 'lhs' => 96, 'rhs' => 2 ), array( 'lhs' => 96, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 7 ), array( 'lhs' => 82, 'rhs' => 9 ), array( 'lhs' => 82, 'rhs' => 3 ), array( 'lhs' => 82, 'rhs' => 8 ), array( 'lhs' => 82, 'rhs' => 11 ), array( 'lhs' => 82, 'rhs' => 8 ), array( 'lhs' => 82, 'rhs' => 11 ), array( 'lhs' => 82, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 3 ), array( 'lhs' => 82, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 6 ), array( 'lhs' => 87, 'rhs' => 2 ), array( 'lhs' => 87, 'rhs' => 1 ), array( 'lhs' => 87, 'rhs' => 0 ), array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 97, 'rhs' => 2 ), array( 'lhs' => 97, 'rhs' => 2 ), array( 'lhs' => 97, 'rhs' => 2 ), array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 93, 'rhs' => 1 ), array( 'lhs' => 93, 'rhs' => 3 ), array( 'lhs' => 92, 'rhs' => 4 ), array( 'lhs' => 92, 'rhs' => 3 ), array( 'lhs' => 92, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 1 ), array( 'lhs' => 89, 'rhs' => 1 ), array( 'lhs' => 89, 'rhs' => 4 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 1 ), array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 2 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 3 ), array( 'lhs' => 98, 'rhs' => 8 ), array( 'lhs' => 98, 'rhs' => 7 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 3 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 3 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 3 ), array( 'lhs' => 86, 'rhs' => 3 ), array( 'lhs' => 86, 'rhs' => 1 ), array( 'lhs' => 86, 'rhs' => 2 ), array( 'lhs' => 88, 'rhs' => 1 ), array( 'lhs' => 88, 'rhs' => 4 ), array( 'lhs' => 88, 'rhs' => 1 ), array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 3 ), array( 'lhs' => 91, 'rhs' => 3 ), array( 'lhs' => 106, 'rhs' => 2 ), array( 'lhs' => 106, 'rhs' => 0 ), array( 'lhs' => 107, 'rhs' => 3 ), array( 'lhs' => 107, 'rhs' => 5 ), array( 'lhs' => 107, 'rhs' => 2 ), array( 'lhs' => 107, 'rhs' => 2 ), array( 'lhs' => 107, 'rhs' => 4 ), array( 'lhs' => 107, 'rhs' => 3 ), array( 'lhs' => 107, 'rhs' => 5 ), array( 'lhs' => 107, 'rhs' => 3 ), array( 'lhs' => 107, 'rhs' => 2 ), array( 'lhs' => 95, 'rhs' => 1 ), array( 'lhs' => 95, 'rhs' => 2 ), array( 'lhs' => 108, 'rhs' => 1 ), array( 'lhs' => 108, 'rhs' => 3 ), array( 'lhs' => 105, 'rhs' => 2 ), array( 'lhs' => 109, 'rhs' => 1 ), array( 'lhs' => 109, 'rhs' => 2 ), array( 'lhs' => 110, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 4 ), array( 'lhs' => 110, 'rhs' => 5 ), array( 'lhs' => 110, 'rhs' => 6 ), array( 'lhs' => 110, 'rhs' => 2 ), array( 'lhs' => 102, 'rhs' => 4 ), array( 'lhs' => 111, 'rhs' => 4 ), array( 'lhs' => 111, 'rhs' => 5 ), array( 'lhs' => 112, 'rhs' => 3 ), array( 'lhs' => 112, 'rhs' => 1 ), array( 'lhs' => 112, 'rhs' => 0 ), array( 'lhs' => 90, 'rhs' => 3 ), array( 'lhs' => 90, 'rhs' => 2 ), array( 'lhs' => 113, 'rhs' => 3 ), array( 'lhs' => 113, 'rhs' => 2 ), array( 'lhs' => 114, 'rhs' => 2 ), array( 'lhs' => 114, 'rhs' => 0 ), array( 'lhs' => 115, 'rhs' => 2 ), array( 'lhs' => 115, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 1 ), array( 'lhs' => 104, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 1 ), array( 'lhs' => 104, 'rhs' => 3 ), array( 'lhs' => 104, 'rhs' => 4 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 100, 'rhs' => 1 ), array( 'lhs' => 101, 'rhs' => 1 ), array( 'lhs' => 101, 'rhs' => 1 ), array( 'lhs' => 101, 'rhs' => 1 ), array( 'lhs' => 99, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 1 ), array( 'lhs' => 116, 'rhs' => 3 ), array( 'lhs' => 116, 'rhs' => 0 ), array( 'lhs' => 117, 'rhs' => 3 ), array( 'lhs' => 117, 'rhs' => 3 ), array( 'lhs' => 117, 'rhs' => 1 ), array( 'lhs' => 103, 'rhs' => 2 ), array( 'lhs' => 103, 'rhs' => 3 ), array( 'lhs' => 118, 'rhs' => 2 ), array( 'lhs' => 118, 'rhs' => 1 ), array( 'lhs' => 119, 'rhs' => 3 ), array( 'lhs' => 119, 'rhs' => 3 ), array( 'lhs' => 119, 'rhs' => 1 ), array( 'lhs' => 119, 'rhs' => 3 ), array( 'lhs' => 119, 'rhs' => 3 ), array( 'lhs' => 119, 'rhs' => 1 ), array( 'lhs' => 119, 'rhs' => 1 ), array( 'lhs' => 94, 'rhs' => 1 ), array( 'lhs' => 94, 'rhs' => 0 ), ); static public $yyReduceMap = array( 0 => 0, 1 => 1, 2 => 1, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, 15 => 15, 18 => 15, 16 => 16, 17 => 17, 101 => 17, 103 => 17, 104 => 17, 163 => 17, 19 => 19, 20 => 19, 74 => 19, 75 => 19, 100 => 19, 105 => 19, 106 => 19, 111 => 19, 113 => 19, 114 => 19, 121 => 19, 162 => 19, 180 => 19, 21 => 21, 22 => 21, 23 => 23, 24 => 24, 25 => 25, 26 => 26, 27 => 27, 28 => 27, 30 => 27, 29 => 29, 31 => 31, 32 => 31, 33 => 33, 34 => 34, 35 => 35, 36 => 36, 37 => 37, 38 => 38, 39 => 39, 40 => 40, 42 => 40, 41 => 41, 43 => 41, 44 => 44, 45 => 45, 46 => 46, 66 => 46, 67 => 46, 164 => 46, 185 => 46, 47 => 47, 48 => 48, 49 => 49, 50 => 50, 51 => 51, 52 => 52, 53 => 53, 54 => 54, 55 => 55, 56 => 56, 57 => 57, 58 => 58, 59 => 59, 60 => 60, 69 => 60, 152 => 60, 156 => 60, 61 => 61, 153 => 61, 62 => 62, 63 => 63, 64 => 63, 65 => 65, 68 => 68, 70 => 70, 71 => 71, 72 => 71, 73 => 73, 76 => 76, 77 => 77, 78 => 77, 79 => 77, 80 => 80, 136 => 80, 197 => 80, 81 => 81, 118 => 81, 82 => 82, 85 => 82, 96 => 82, 83 => 83, 84 => 84, 86 => 86, 87 => 87, 88 => 88, 93 => 88, 89 => 89, 92 => 89, 90 => 90, 95 => 90, 91 => 91, 94 => 91, 97 => 97, 98 => 98, 99 => 99, 102 => 102, 107 => 107, 108 => 108, 109 => 109, 110 => 110, 112 => 112, 115 => 115, 116 => 116, 117 => 117, 119 => 119, 120 => 120, 122 => 122, 123 => 123, 124 => 124, 125 => 125, 126 => 126, 127 => 127, 128 => 128, 129 => 129, 130 => 130, 131 => 131, 134 => 131, 132 => 132, 133 => 133, 135 => 135, 137 => 137, 138 => 138, 139 => 139, 140 => 140, 141 => 141, 142 => 142, 143 => 143, 144 => 144, 145 => 145, 146 => 146, 147 => 147, 148 => 148, 149 => 149, 150 => 150, 151 => 151, 154 => 154, 155 => 155, 157 => 157, 158 => 158, 159 => 159, 160 => 160, 161 => 160, 165 => 165, 166 => 166, 167 => 167, 168 => 168, 169 => 169, 170 => 170, 171 => 171, 172 => 172, 173 => 173, 174 => 174, 175 => 175, 176 => 176, 177 => 177, 178 => 178, 179 => 179, 181 => 181, 182 => 182, 183 => 183, 184 => 184, 186 => 186, 187 => 187, 188 => 188, 189 => 189, 190 => 190, 191 => 190, 193 => 190, 192 => 192, 194 => 194, 195 => 195, 196 => 196, 198 => 198, ); #line 95 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); } #line 2166 "smarty_internal_templateparser.php" #line 101 "smarty_internal_templateparser.y" function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); } #line 2169 "smarty_internal_templateparser.php" #line 113 "smarty_internal_templateparser.y" function yy_r4(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true)); } else { $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } #line 2181 "smarty_internal_templateparser.php" #line 125 "smarty_internal_templateparser.y" function yy_r5(){ $this->_retvalue = new _smarty_tag($this, ''); } #line 2184 "smarty_internal_templateparser.php" #line 128 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } #line 2187 "smarty_internal_templateparser.php" #line 131 "smarty_internal_templateparser.y" function yy_r7(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } elseif ($this->php_handling == Smarty::PHP_QUOTE) { $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES)); }elseif ($this->php_handling == Smarty::PHP_ALLOW) { $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<?php', true)); }elseif ($this->php_handling == Smarty::PHP_REMOVE) { $this->_retvalue = new _smarty_text($this, ''); } } #line 2200 "smarty_internal_templateparser.php" #line 143 "smarty_internal_templateparser.y" function yy_r8(){if ($this->is_xml) { $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '?>';?>", $this->compiler, true)); }elseif ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, '?<?php ?>>'); } elseif ($this->php_handling == Smarty::PHP_QUOTE) { $this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES)); }elseif ($this->php_handling == Smarty::PHP_ALLOW) { $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('?>', true)); }elseif ($this->php_handling == Smarty::PHP_REMOVE) { $this->_retvalue = new _smarty_text($this, ''); } } #line 2216 "smarty_internal_templateparser.php" #line 159 "smarty_internal_templateparser.y" function yy_r9(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, '<<?php ?>%'); } elseif ($this->php_handling == Smarty::PHP_QUOTE) { $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES)); }elseif ($this->php_handling == Smarty::PHP_ALLOW) { if ($this->asp_tags) { $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<%', true)); } else { $this->_retvalue = new _smarty_text($this, '<<?php ?>%'); } }elseif ($this->php_handling == Smarty::PHP_REMOVE) { if ($this->asp_tags) { $this->_retvalue = new _smarty_text($this, ''); } else { $this->_retvalue = new _smarty_text($this, '<<?php ?>%'); } } } #line 2237 "smarty_internal_templateparser.php" #line 180 "smarty_internal_templateparser.y" function yy_r10(){ if ($this->php_handling == Smarty::PHP_PASSTHRU) { $this->_retvalue = new _smarty_text($this, '%<?php ?>>'); } elseif ($this->php_handling == Smarty::PHP_QUOTE) { $this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES)); }elseif ($this->php_handling == Smarty::PHP_ALLOW) { if ($this->asp_tags) { $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('%>', true)); } else { $this->_retvalue = new _smarty_text($this, '%<?php ?>>'); } }elseif ($this->php_handling == Smarty::PHP_REMOVE) { if ($this->asp_tags) { $this->_retvalue = new _smarty_text($this, ''); } else { $this->_retvalue = new _smarty_text($this, '%<?php ?>>'); } } } #line 2258 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" function yy_r11(){if ($this->lex->strip) { $this->_retvalue = new _smarty_text($this, preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor))); } else { $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } } #line 2266 "smarty_internal_templateparser.php" #line 208 "smarty_internal_templateparser.y" function yy_r12(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true)); } #line 2269 "smarty_internal_templateparser.php" #line 211 "smarty_internal_templateparser.y" function yy_r13(){if ($this->lex->strip) { $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor)); } else { $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); } } #line 2277 "smarty_internal_templateparser.php" #line 217 "smarty_internal_templateparser.y" function yy_r14(){ $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor); } #line 2282 "smarty_internal_templateparser.php" #line 222 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = ''; } #line 2285 "smarty_internal_templateparser.php" #line 223 "smarty_internal_templateparser.y" function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } #line 2288 "smarty_internal_templateparser.php" #line 225 "smarty_internal_templateparser.y" function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2291 "smarty_internal_templateparser.php" #line 228 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2294 "smarty_internal_templateparser.php" #line 230 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } #line 2297 "smarty_internal_templateparser.php" #line 232 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } #line 2300 "smarty_internal_templateparser.php" #line 233 "smarty_internal_templateparser.y" function yy_r24(){ $this->_retvalue = '<<?php ?>%'; } #line 2303 "smarty_internal_templateparser.php" #line 234 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = '%<?php ?>>'; } #line 2306 "smarty_internal_templateparser.php" #line 242 "smarty_internal_templateparser.y" function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2309 "smarty_internal_templateparser.php" #line 243 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -2]->minor)); } #line 2312 "smarty_internal_templateparser.php" #line 245 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor)); } #line 2315 "smarty_internal_templateparser.php" #line 253 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->compiler->compileTag('assign',array(array('value'=>$this->yystack[$this->yyidx + -1]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'"))); } #line 2318 "smarty_internal_templateparser.php" #line 255 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'")),$this->yystack[$this->yyidx + -1]->minor)); } #line 2321 "smarty_internal_templateparser.php" #line 256 "smarty_internal_templateparser.y" function yy_r34(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>$this->yystack[$this->yyidx + -4]->minor['var'])),$this->yystack[$this->yyidx + -1]->minor),array('smarty_internal_index'=>$this->yystack[$this->yyidx + -4]->minor['smarty_internal_index'])); } #line 2324 "smarty_internal_templateparser.php" #line 258 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } #line 2327 "smarty_internal_templateparser.php" #line 259 "smarty_internal_templateparser.y" function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } #line 2330 "smarty_internal_templateparser.php" #line 261 "smarty_internal_templateparser.y" function yy_r37(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor)); } #line 2333 "smarty_internal_templateparser.php" #line 263 "smarty_internal_templateparser.y" function yy_r38(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo '; $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } #line 2338 "smarty_internal_templateparser.php" #line 267 "smarty_internal_templateparser.y" function yy_r39(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor)).'<?php echo '; $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>'; } #line 2343 "smarty_internal_templateparser.php" #line 271 "smarty_internal_templateparser.y" function yy_r40(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2346 "smarty_internal_templateparser.php" #line 272 "smarty_internal_templateparser.y" function yy_r41(){ $tag = trim(substr($this->yystack[$this->yyidx + -4]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,$this->yystack[$this->yyidx + -1]->minor,array('if condition'=>$this->yystack[$this->yyidx + -2]->minor)); } #line 2349 "smarty_internal_templateparser.php" #line 276 "smarty_internal_templateparser.y" function yy_r44(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -10]->minor),array('ifexp'=>$this->yystack[$this->yyidx + -7]->minor),array('var'=>$this->yystack[$this->yyidx + -3]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),1); } #line 2353 "smarty_internal_templateparser.php" #line 279 "smarty_internal_templateparser.y" function yy_r45(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } #line 2356 "smarty_internal_templateparser.php" #line 280 "smarty_internal_templateparser.y" function yy_r46(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2359 "smarty_internal_templateparser.php" #line 281 "smarty_internal_templateparser.y" function yy_r47(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -4]->minor),array('to'=>$this->yystack[$this->yyidx + -2]->minor))),0); } #line 2362 "smarty_internal_templateparser.php" #line 282 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -6]->minor),array('to'=>$this->yystack[$this->yyidx + -4]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),0); } #line 2365 "smarty_internal_templateparser.php" #line 284 "smarty_internal_templateparser.y" function yy_r49(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } #line 2368 "smarty_internal_templateparser.php" #line 286 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); } #line 2372 "smarty_internal_templateparser.php" #line 288 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); } #line 2376 "smarty_internal_templateparser.php" #line 290 "smarty_internal_templateparser.y" function yy_r52(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); } #line 2380 "smarty_internal_templateparser.php" #line 292 "smarty_internal_templateparser.y" function yy_r53(){ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); } #line 2384 "smarty_internal_templateparser.php" #line 296 "smarty_internal_templateparser.y" function yy_r54(){ $this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler); } #line 2387 "smarty_internal_templateparser.php" #line 300 "smarty_internal_templateparser.y" function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } #line 2390 "smarty_internal_templateparser.php" #line 302 "smarty_internal_templateparser.y" function yy_r56(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array(),array('modifier_list'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2394 "smarty_internal_templateparser.php" #line 305 "smarty_internal_templateparser.y" function yy_r57(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2397 "smarty_internal_templateparser.php" #line 306 "smarty_internal_templateparser.y" function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor, 'modifier_list'=>$this->yystack[$this->yyidx + -1]->minor)); } #line 2400 "smarty_internal_templateparser.php" #line 312 "smarty_internal_templateparser.y" function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor; } #line 2403 "smarty_internal_templateparser.php" #line 314 "smarty_internal_templateparser.y" function yy_r60(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } #line 2406 "smarty_internal_templateparser.php" #line 316 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = array(); } #line 2409 "smarty_internal_templateparser.php" #line 319 "smarty_internal_templateparser.y" function yy_r62(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true'); } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false'); } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null'); } else $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } #line 2419 "smarty_internal_templateparser.php" #line 327 "smarty_internal_templateparser.y" function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } #line 2422 "smarty_internal_templateparser.php" #line 329 "smarty_internal_templateparser.y" function yy_r65(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } #line 2425 "smarty_internal_templateparser.php" #line 332 "smarty_internal_templateparser.y" function yy_r68(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } #line 2428 "smarty_internal_templateparser.php" #line 339 "smarty_internal_templateparser.y" function yy_r70(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } #line 2431 "smarty_internal_templateparser.php" #line 341 "smarty_internal_templateparser.y" function yy_r71(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } #line 2434 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } #line 2437 "smarty_internal_templateparser.php" #line 354 "smarty_internal_templateparser.y" function yy_r76(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } #line 2440 "smarty_internal_templateparser.php" #line 356 "smarty_internal_templateparser.y" function yy_r77(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } #line 2443 "smarty_internal_templateparser.php" #line 362 "smarty_internal_templateparser.y" function yy_r80(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2446 "smarty_internal_templateparser.php" #line 365 "smarty_internal_templateparser.y" function yy_r81(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor)); } #line 2449 "smarty_internal_templateparser.php" #line 369 "smarty_internal_templateparser.y" function yy_r82(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2452 "smarty_internal_templateparser.php" #line 370 "smarty_internal_templateparser.y" function yy_r83(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2455 "smarty_internal_templateparser.php" #line 371 "smarty_internal_templateparser.y" function yy_r84(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2458 "smarty_internal_templateparser.php" #line 373 "smarty_internal_templateparser.y" function yy_r86(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2461 "smarty_internal_templateparser.php" #line 374 "smarty_internal_templateparser.y" function yy_r87(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2464 "smarty_internal_templateparser.php" #line 375 "smarty_internal_templateparser.y" function yy_r88(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2467 "smarty_internal_templateparser.php" #line 376 "smarty_internal_templateparser.y" function yy_r89(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2470 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" function yy_r90(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2473 "smarty_internal_templateparser.php" #line 378 "smarty_internal_templateparser.y" function yy_r91(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2476 "smarty_internal_templateparser.php" #line 384 "smarty_internal_templateparser.y" function yy_r97(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } #line 2479 "smarty_internal_templateparser.php" #line 390 "smarty_internal_templateparser.y" function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? $_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'\')->value : '.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + -2]->minor', null, true, false)->nocache; } #line 2482 "smarty_internal_templateparser.php" #line 391 "smarty_internal_templateparser.y" function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } #line 2485 "smarty_internal_templateparser.php" #line 398 "smarty_internal_templateparser.y" function yy_r102(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } #line 2488 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" function yy_r107(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2491 "smarty_internal_templateparser.php" #line 405 "smarty_internal_templateparser.y" function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; } #line 2494 "smarty_internal_templateparser.php" #line 406 "smarty_internal_templateparser.y" function yy_r109(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2497 "smarty_internal_templateparser.php" #line 408 "smarty_internal_templateparser.y" function yy_r110(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'true'; } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'false'; } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'null'; } else $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } #line 2507 "smarty_internal_templateparser.php" #line 419 "smarty_internal_templateparser.y" function yy_r112(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2510 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" function yy_r115(){if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } } else { $this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting"); } } #line 2522 "smarty_internal_templateparser.php" #line 435 "smarty_internal_templateparser.y" function yy_r116(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} } #line 2526 "smarty_internal_templateparser.php" #line 438 "smarty_internal_templateparser.y" function yy_r117(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } #line 2529 "smarty_internal_templateparser.php" #line 448 "smarty_internal_templateparser.y" function yy_r119(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $smarty_var = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); $this->_retvalue = $smarty_var; } else { // used for array reset,next,prev,end,current $this->last_variable = $this->yystack[$this->yyidx + 0]->minor['var']; $this->last_index = $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache; } } #line 2546 "smarty_internal_templateparser.php" #line 464 "smarty_internal_templateparser.y" function yy_r120(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } #line 2554 "smarty_internal_templateparser.php" #line 473 "smarty_internal_templateparser.y" function yy_r122(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } #line 2557 "smarty_internal_templateparser.php" #line 474 "smarty_internal_templateparser.y" function yy_r123(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } #line 2560 "smarty_internal_templateparser.php" #line 477 "smarty_internal_templateparser.y" function yy_r124(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } #line 2563 "smarty_internal_templateparser.php" #line 483 "smarty_internal_templateparser.y" function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2566 "smarty_internal_templateparser.php" #line 485 "smarty_internal_templateparser.y" function yy_r126(){return; } #line 2569 "smarty_internal_templateparser.php" #line 489 "smarty_internal_templateparser.y" function yy_r127(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } #line 2572 "smarty_internal_templateparser.php" #line 490 "smarty_internal_templateparser.y" function yy_r128(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } #line 2575 "smarty_internal_templateparser.php" #line 491 "smarty_internal_templateparser.y" function yy_r129(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } #line 2578 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" function yy_r130(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } #line 2581 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" function yy_r131(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } #line 2584 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" function yy_r132(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } #line 2587 "smarty_internal_templateparser.php" #line 496 "smarty_internal_templateparser.y" function yy_r133(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } #line 2590 "smarty_internal_templateparser.php" #line 500 "smarty_internal_templateparser.y" function yy_r135(){$this->_retvalue = '[]'; } #line 2593 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" function yy_r137(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2596 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" function yy_r138(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } #line 2599 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" function yy_r139(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2602 "smarty_internal_templateparser.php" #line 517 "smarty_internal_templateparser.y" function yy_r140(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } #line 2606 "smarty_internal_templateparser.php" #line 520 "smarty_internal_templateparser.y" function yy_r141(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2609 "smarty_internal_templateparser.php" #line 522 "smarty_internal_templateparser.y" function yy_r142(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2612 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" function yy_r143(){if ($this->security && substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '_') { $this->compiler->trigger_template_error (self::Err1); } $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2619 "smarty_internal_templateparser.php" #line 529 "smarty_internal_templateparser.y" function yy_r144(){if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } #line 2626 "smarty_internal_templateparser.php" #line 534 "smarty_internal_templateparser.y" function yy_r145(){if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } #line 2633 "smarty_internal_templateparser.php" #line 539 "smarty_internal_templateparser.y" function yy_r146(){if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } #line 2640 "smarty_internal_templateparser.php" #line 545 "smarty_internal_templateparser.y" function yy_r147(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } #line 2643 "smarty_internal_templateparser.php" #line 551 "smarty_internal_templateparser.y" function yy_r148(){if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if (strcasecmp($this->yystack[$this->yyidx + -3]->minor,'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'array') === 0 || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $func_name = strtolower($this->yystack[$this->yyidx + -3]->minor); if ($func_name == 'isset') { if (count($this->yystack[$this->yyidx + -1]->minor) == 0) { $this->compiler->trigger_template_error ('Illegal number of paramer in "isset()"'); } $isset_par=str_replace("')->value","',null,true,false)->value",implode(',',$this->yystack[$this->yyidx + -1]->minor)); $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $isset_par .")"; } elseif (in_array($func_name,array('empty','reset','current','end','prev','next'))){ if (count($this->yystack[$this->yyidx + -1]->minor) != 1) { $this->compiler->trigger_template_error ('Illegal number of paramer in "empty()"'); } if ($func_name == 'empty') { $this->_retvalue = $func_name.'('.str_replace("')->value","',null,true,false)->value",$this->yystack[$this->yyidx + -1]->minor[0]).')'; } else { $this->_retvalue = $func_name.'('.$this->yystack[$this->yyidx + -1]->minor[0].')'; } } else { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")"; } } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } #line 2671 "smarty_internal_templateparser.php" #line 581 "smarty_internal_templateparser.y" function yy_r149(){if ($this->security && substr($this->yystack[$this->yyidx + -3]->minor,0,1) == '_') { $this->compiler->trigger_template_error (self::Err1); } $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")"; } #line 2678 "smarty_internal_templateparser.php" #line 586 "smarty_internal_templateparser.y" function yy_r150(){if ($this->security) { $this->compiler->trigger_template_error (self::Err2); } $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. implode(',',$this->yystack[$this->yyidx + -1]->minor) .')'; } #line 2685 "smarty_internal_templateparser.php" #line 594 "smarty_internal_templateparser.y" function yy_r151(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + 0]->minor)); } #line 2688 "smarty_internal_templateparser.php" #line 603 "smarty_internal_templateparser.y" function yy_r154(){$this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor))); } #line 2691 "smarty_internal_templateparser.php" #line 604 "smarty_internal_templateparser.y" function yy_r155(){$this->_retvalue = array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor)); } #line 2694 "smarty_internal_templateparser.php" #line 607 "smarty_internal_templateparser.y" function yy_r157(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } #line 2697 "smarty_internal_templateparser.php" #line 612 "smarty_internal_templateparser.y" function yy_r158(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } #line 2700 "smarty_internal_templateparser.php" #line 614 "smarty_internal_templateparser.y" function yy_r159(){$this->_retvalue = array(); } #line 2703 "smarty_internal_templateparser.php" #line 616 "smarty_internal_templateparser.y" function yy_r160(){$this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } #line 2706 "smarty_internal_templateparser.php" #line 626 "smarty_internal_templateparser.y" function yy_r165(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2709 "smarty_internal_templateparser.php" #line 628 "smarty_internal_templateparser.y" function yy_r166(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2712 "smarty_internal_templateparser.php" #line 637 "smarty_internal_templateparser.y" function yy_r167(){$this->_retvalue = '=='; } #line 2715 "smarty_internal_templateparser.php" #line 638 "smarty_internal_templateparser.y" function yy_r168(){$this->_retvalue = '!='; } #line 2718 "smarty_internal_templateparser.php" #line 639 "smarty_internal_templateparser.y" function yy_r169(){$this->_retvalue = '>'; } #line 2721 "smarty_internal_templateparser.php" #line 640 "smarty_internal_templateparser.y" function yy_r170(){$this->_retvalue = '<'; } #line 2724 "smarty_internal_templateparser.php" #line 641 "smarty_internal_templateparser.y" function yy_r171(){$this->_retvalue = '>='; } #line 2727 "smarty_internal_templateparser.php" #line 642 "smarty_internal_templateparser.y" function yy_r172(){$this->_retvalue = '<='; } #line 2730 "smarty_internal_templateparser.php" #line 643 "smarty_internal_templateparser.y" function yy_r173(){$this->_retvalue = '==='; } #line 2733 "smarty_internal_templateparser.php" #line 644 "smarty_internal_templateparser.y" function yy_r174(){$this->_retvalue = '!=='; } #line 2736 "smarty_internal_templateparser.php" #line 645 "smarty_internal_templateparser.y" function yy_r175(){$this->_retvalue = '%'; } #line 2739 "smarty_internal_templateparser.php" #line 647 "smarty_internal_templateparser.y" function yy_r176(){$this->_retvalue = '&&'; } #line 2742 "smarty_internal_templateparser.php" #line 648 "smarty_internal_templateparser.y" function yy_r177(){$this->_retvalue = '||'; } #line 2745 "smarty_internal_templateparser.php" #line 649 "smarty_internal_templateparser.y" function yy_r178(){$this->_retvalue = ' XOR '; } #line 2748 "smarty_internal_templateparser.php" #line 654 "smarty_internal_templateparser.y" function yy_r179(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2751 "smarty_internal_templateparser.php" #line 656 "smarty_internal_templateparser.y" function yy_r181(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } #line 2754 "smarty_internal_templateparser.php" #line 657 "smarty_internal_templateparser.y" function yy_r182(){ return; } #line 2757 "smarty_internal_templateparser.php" #line 658 "smarty_internal_templateparser.y" function yy_r183(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } #line 2760 "smarty_internal_templateparser.php" #line 659 "smarty_internal_templateparser.y" function yy_r184(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } #line 2763 "smarty_internal_templateparser.php" #line 666 "smarty_internal_templateparser.y" function yy_r186(){ $this->_retvalue = "''"; } #line 2766 "smarty_internal_templateparser.php" #line 667 "smarty_internal_templateparser.y" function yy_r187(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } #line 2769 "smarty_internal_templateparser.php" #line 669 "smarty_internal_templateparser.y" function yy_r188(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } #line 2772 "smarty_internal_templateparser.php" #line 670 "smarty_internal_templateparser.y" function yy_r189(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } #line 2775 "smarty_internal_templateparser.php" #line 672 "smarty_internal_templateparser.y" function yy_r190(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } #line 2778 "smarty_internal_templateparser.php" #line 674 "smarty_internal_templateparser.y" function yy_r192(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value'); } else { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'); } $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; } #line 2787 "smarty_internal_templateparser.php" #line 682 "smarty_internal_templateparser.y" function yy_r194(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } #line 2790 "smarty_internal_templateparser.php" #line 683 "smarty_internal_templateparser.y" function yy_r195(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } #line 2795 "smarty_internal_templateparser.php" #line 686 "smarty_internal_templateparser.y" function yy_r196(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } #line 2798 "smarty_internal_templateparser.php" #line 693 "smarty_internal_templateparser.y" function yy_r198(){$this->_retvalue = ''; } #line 2801 "smarty_internal_templateparser.php" private $_retvalue; function yy_reduce($yyruleno) { $yymsp = $this->yystack[$this->yyidx]; if (self::$yyTraceFILE && $yyruleno >= 0 && $yyruleno < count(self::$yyRuleName)) { fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n", self::$yyTracePrompt, $yyruleno, self::$yyRuleName[$yyruleno]); } $this->_retvalue = $yy_lefthand_side = null; if (array_key_exists($yyruleno, self::$yyReduceMap)) { // call the action $this->_retvalue = null; $this->{'yy_r' . self::$yyReduceMap[$yyruleno]}(); $yy_lefthand_side = $this->_retvalue; } $yygoto = self::$yyRuleInfo[$yyruleno]['lhs']; $yysize = self::$yyRuleInfo[$yyruleno]['rhs']; $this->yyidx -= $yysize; for($i = $yysize; $i; $i--) { // pop all of the right-hand side parameters array_pop($this->yystack); } $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto); if ($yyact < self::YYNSTATE) { if (!self::$yyTraceFILE && $yysize) { $this->yyidx++; $x = new TP_yyStackEntry; $x->stateno = $yyact; $x->major = $yygoto; $x->minor = $yy_lefthand_side; $this->yystack[$this->yyidx] = $x; } else { $this->yy_shift($yyact, $yygoto, $yy_lefthand_side); } } elseif ($yyact == self::YYNSTATE + self::YYNRULE + 1) { $this->yy_accept(); } } function yy_parse_failed() { if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } } function yy_syntax_error($yymajor, $TOKEN) { #line 77 "smarty_internal_templateparser.y" $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); #line 2864 "smarty_internal_templateparser.php" } function yy_accept() { if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt); } while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } #line 69 "smarty_internal_templateparser.y" $this->successful = !$this->internalError; $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; #line 2882 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue) { $yyerrorhit = 0; /* True if yymajor has invoked an error */ if ($this->yyidx === null || $this->yyidx < 0) { $this->yyidx = 0; $this->yyerrcnt = -1; $x = new TP_yyStackEntry; $x->stateno = 0; $x->major = 0; $this->yystack = array(); array_push($this->yystack, $x); } $yyendofinput = ($yymajor==0); if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sInput %s\n", self::$yyTracePrompt, $this->yyTokenName[$yymajor]); } do { $yyact = $this->yy_find_shift_action($yymajor); if ($yymajor < self::YYERRORSYMBOL && !$this->yy_is_expected_token($yymajor)) { // force a syntax error $yyact = self::YY_ERROR_ACTION; } if ($yyact < self::YYNSTATE) { $this->yy_shift($yyact, $yymajor, $yytokenvalue); $this->yyerrcnt--; if ($yyendofinput && $this->yyidx >= 0) { $yymajor = 0; } else { $yymajor = self::YYNOCODE; } } elseif ($yyact < self::YYNSTATE + self::YYNRULE) { $this->yy_reduce($yyact - self::YYNSTATE); } elseif ($yyact == self::YY_ERROR_ACTION) { if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sSyntax Error!\n", self::$yyTracePrompt); } if (self::YYERRORSYMBOL) { if ($this->yyerrcnt < 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } $yymx = $this->yystack[$this->yyidx]->major; if ($yymx == self::YYERRORSYMBOL || $yyerrorhit ){ if (self::$yyTraceFILE) { fprintf(self::$yyTraceFILE, "%sDiscard input token %s\n", self::$yyTracePrompt, $this->yyTokenName[$yymajor]); } $this->yy_destructor($yymajor, $yytokenvalue); $yymajor = self::YYNOCODE; } else { while ($this->yyidx >= 0 && $yymx != self::YYERRORSYMBOL && ($yyact = $this->yy_find_shift_action(self::YYERRORSYMBOL)) >= self::YYNSTATE ){ $this->yy_pop_parser_stack(); } if ($this->yyidx < 0 || $yymajor==0) { $this->yy_destructor($yymajor, $yytokenvalue); $this->yy_parse_failed(); $yymajor = self::YYNOCODE; } elseif ($yymx != self::YYERRORSYMBOL) { $u2 = 0; $this->yy_shift($yyact, self::YYERRORSYMBOL, $u2); } } $this->yyerrcnt = 3; $yyerrorhit = 1; } else { if ($this->yyerrcnt <= 0) { $this->yy_syntax_error($yymajor, $yytokenvalue); } $this->yyerrcnt = 3; $this->yy_destructor($yymajor, $yytokenvalue); if ($yyendofinput) { $this->yy_parse_failed(); } $yymajor = self::YYNOCODE; } } else { $this->yy_accept(); $yymajor = self::YYNOCODE; } } while ($yymajor != self::YYNOCODE && $this->yyidx >= 0); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_templateparser.php
PHP
asf20
167,482
<?php /** * Smarty Internal Plugin Compile Object Funtion * * Compiles code for registered objects as function * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Object Function Class */ class Smarty_Internal_Compile_Private_Object_Function extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array(); public $optional_attributes = array('_any'); /** * Compiles code for the execution of function plugin * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @param string $tag name of function * @param string $methode name of methode to call * @return string compiled code */ public function compile($args, $compiler, $parameter, $tag, $methode) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->tag_nocache = true; } unset($_attr['nocache']); $_assign = null; if (isset($_attr['assign'])) { $_assign = $_attr['assign']; unset($_attr['assign']); } // convert attributes into parameter array string if ($this->compiler->smarty->registered_objects[$tag][2]) { $_paramsArray = array(); foreach ($_attr as $_key => $_value) { if (is_int($_key)) { $_paramsArray[] = "$_key=>$_value"; } else { $_paramsArray[] = "'$_key'=>$_value"; } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$methode}({$_params},\$_smarty_tpl)"; } else { $_params = implode(",", $_attr); $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$methode}({$_params})"; } if (empty($_assign)) { // This tag does create output $this->compiler->has_output = true; $output = "<?php echo {$return};?>\n"; } else { $output = "<?php \$_smarty_tpl->assign({$_assign},{$return});?>\n"; } return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_object_function.php
PHP
asf20
2,440
<?php /** * Smarty Internal Plugin Resource String * * Implements the strings as resource for Smarty template * * @package Smarty * @subpackage TemplateResources * @author Uwe Tews */ /** * Smarty Internal Plugin Resource String */ class Smarty_Internal_Resource_String { public function __construct($smarty) { $this->smarty = $smarty; } // classes used for compiling Smarty templates from file resource public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler'; public $template_lexer_class = 'Smarty_Internal_Templatelexer'; public $template_parser_class = 'Smarty_Internal_Templateparser'; // properties public $usesCompiler = true; public $isEvaluated = false; /** * Return flag if template source is existing * * @return boolean true */ public function isExisting($template) { return true; } /** * Get filepath to template source * * @param object $_template template object * @return string return 'string' as template source is not a file */ public function getTemplateFilepath($_template) { $_template->templateUid = sha1($_template->resource_name); // no filepath for strings // return "string" for compiler error messages return 'string:'; } /** * Get timestamp to template source * * @param object $_template template object * @return boolean false as string resources have no timestamp */ public function getTemplateTimestamp($_template) { if ($this->isEvaluated) { //must always be compiled and have no timestamp return false; } else { return 0; } } /** * Get timestamp of template source by type and name * * @param object $_template template object * @return int timestamp (always 0) */ public function getTemplateTimestampTypeName($_resource_type, $_resource_name) { // return timestamp 0 return 0; } /** * Retuen template source from resource name * * @param object $_template template object * @return string content of template source */ public function getTemplateSource($_template) { // return template string $_template->template_source = $_template->resource_name; return true; } /** * Get filepath to compiled template * * @param object $_template template object * @return boolean return false as compiled template is not stored */ public function getCompiledFilepath($_template) { $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null; // calculate Uid if not already done if ($_template->templateUid == '') { $_template->getTemplateFilepath(); } $_filepath = $_template->templateUid; // if use_sub_dirs, break file into directories if ($_template->smarty->use_sub_dirs) { $_filepath = substr($_filepath, 0, 2) . DS . substr($_filepath, 2, 2) . DS . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; if (isset($_compile_id)) { $_filepath = $_compile_id . $_compile_dir_sep . $_filepath; } if ($_template->caching) { $_cache = '.cache'; } else { $_cache = ''; } $_compile_dir = $_template->smarty->compile_dir; if (strpos('/\\', substr($_compile_dir, -1)) === false) { $_compile_dir .= DS; } return $_compile_dir . $_filepath . '.' . $_template->resource_type . $_cache . '.php'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_string.php
PHP
asf20
3,860
<?php /** * Smarty Internal Plugin Compile Registered Function * * Compiles code for the execution of a registered function * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Registered Function Class */ class Smarty_Internal_Compile_Private_Registered_Function extends Smarty_Internal_CompileBase { // attribute definitions public $optional_attributes = array('_any'); /** * Compiles code for the execution of a registered function * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @param string $tag name of function * @return string compiled code */ public function compile($args, $compiler, $parameter, $tag) { $this->compiler = $compiler; // This tag does create output $this->compiler->has_output = true; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache']) { $this->compiler->tag_nocache = true; } unset($_attr['nocache']); // not cachable? $this->compiler->tag_nocache = $this->compiler->tag_nocache || !$compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag][1]; // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { if (is_int($_key)) { $_paramsArray[] = "$_key=>$_value"; } else { $_paramsArray[] = "'$_key'=>$_value"; } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag][0]; // compile code if (!is_array($function)) { $output = "<?php echo {$function}({$_params},\$_smarty_tpl);?>\n"; } else if (is_object($function[0])) { $output = "<?php echo \$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION]['{$tag}'][0][0]->{$function[1]}({$_params},\$_smarty_tpl);?>\n"; } else { $output = "<?php echo {$function[0]}::{$function[1]}({$_params},\$_smarty_tpl);?>\n"; } return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_registered_function.php
PHP
asf20
2,416
<?php /** * Smarty Internal Plugin Compile Print Expression * * Compiles any tag which will output an expression or variable * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Print Expression Class */ class Smarty_Internal_Compile_Private_Print_Expression extends Smarty_Internal_CompileBase { // attribute definitions public $optional_attributes = array('assign'); public $option_flags = array('nocache', 'nofilter'); /** * Compiles code for gererting output from any expression * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // nocache option if ($_attr['nocache'] === true) { $this->compiler->tag_nocache = true; } // filter handling if ($_attr['nofilter'] === true) { $_filter = 'false'; } else { $_filter = 'true'; } // compiled output // compiled output if (isset($_attr['assign'])) { // assign output to variable $output = "<?php \$_smarty_tpl->assign({$_attr['assign']},{$parameter['value']});?>"; } else { // display value if (!$_attr['nofilter'] && isset($this->compiler->smarty->registered_filters['variable'])) { $output = "Smarty_Internal_Filter_Handler::runFilter('variable', {$parameter['value']}, \$_smarty_tpl, {$_filter})"; } else { $output = $parameter['value']; } if (!$_attr['nofilter'] && !empty($this->compiler->smarty->default_modifiers)) { $modifierlist = array(); foreach ($this->compiler->smarty->default_modifiers as $key => $single_default_modifier) { preg_match_all('/(\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'|"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"|:|[^:]+)/', $single_default_modifier, $mod_array); for ($i = 0, $count = count($mod_array[0]);$i < $count;$i++) { if ($mod_array[0][$i] != ':') { $modifierlist[$key][] = $mod_array[0][$i]; } } } $output = $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $modifierlist, 'value' => $output)); } if (!empty($parameter['modifierlist'])) { $output = $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $parameter['modifierlist'], 'value' => $output)); } $this->compiler->has_output = true; $output = "<?php echo {$output};?>"; } return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_print_expression.php
PHP
asf20
3,069
<?php /** * Smarty Internal Plugin Compile Section * * Compiles the {section} {sectionelse} {/section} tags * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Section Class */ class Smarty_Internal_Compile_Section extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array('name', 'loop'); public $shorttag_order = array('name', 'loop'); public $optional_attributes = array('start', 'step', 'max', 'show'); /** * Compiles code for the {section} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); $this->_open_tag('section', array('section',$this->compiler->nocache)); // maybe nocache because of nocache variables $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; $output = "<?php "; $section_name = $_attr['name']; $output .= "unset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]);\n"; $section_props = "\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]"; foreach ($_attr as $attr_name => $attr_value) { switch ($attr_name) { case 'loop': $output .= "{$section_props}['loop'] = is_array(\$_loop=$attr_value) ? count(\$_loop) : max(0, (int)\$_loop); unset(\$_loop);\n"; break; case 'show': if (is_bool($attr_value)) $show_attr_value = $attr_value ? 'true' : 'false'; else $show_attr_value = "(bool)$attr_value"; $output .= "{$section_props}['show'] = $show_attr_value;\n"; break; case 'name': $output .= "{$section_props}['$attr_name'] = $attr_value;\n"; break; case 'max': case 'start': $output .= "{$section_props}['$attr_name'] = (int)$attr_value;\n"; break; case 'step': $output .= "{$section_props}['$attr_name'] = ((int)$attr_value) == 0 ? 1 : (int)$attr_value;\n"; break; } } if (!isset($_attr['show'])) $output .= "{$section_props}['show'] = true;\n"; if (!isset($_attr['loop'])) $output .= "{$section_props}['loop'] = 1;\n"; if (!isset($_attr['max'])) $output .= "{$section_props}['max'] = {$section_props}['loop'];\n"; else $output .= "if ({$section_props}['max'] < 0)\n" . " {$section_props}['max'] = {$section_props}['loop'];\n"; if (!isset($_attr['step'])) $output .= "{$section_props}['step'] = 1;\n"; if (!isset($_attr['start'])) $output .= "{$section_props}['start'] = {$section_props}['step'] > 0 ? 0 : {$section_props}['loop']-1;\n"; else { $output .= "if ({$section_props}['start'] < 0)\n" . " {$section_props}['start'] = max({$section_props}['step'] > 0 ? 0 : -1, {$section_props}['loop'] + {$section_props}['start']);\n" . "else\n" . " {$section_props}['start'] = min({$section_props}['start'], {$section_props}['step'] > 0 ? {$section_props}['loop'] : {$section_props}['loop']-1);\n"; } $output .= "if ({$section_props}['show']) {\n"; if (!isset($_attr['start']) && !isset($_attr['step']) && !isset($_attr['max'])) { $output .= " {$section_props}['total'] = {$section_props}['loop'];\n"; } else { $output .= " {$section_props}['total'] = min(ceil(({$section_props}['step'] > 0 ? {$section_props}['loop'] - {$section_props}['start'] : {$section_props}['start']+1)/abs({$section_props}['step'])), {$section_props}['max']);\n"; } $output .= " if ({$section_props}['total'] == 0)\n" . " {$section_props}['show'] = false;\n" . "} else\n" . " {$section_props}['total'] = 0;\n"; $output .= "if ({$section_props}['show']):\n"; $output .= " for ({$section_props}['index'] = {$section_props}['start'], {$section_props}['iteration'] = 1; {$section_props}['iteration'] <= {$section_props}['total']; {$section_props}['index'] += {$section_props}['step'], {$section_props}['iteration']++):\n"; $output .= "{$section_props}['rownum'] = {$section_props}['iteration'];\n"; $output .= "{$section_props}['index_prev'] = {$section_props}['index'] - {$section_props}['step'];\n"; $output .= "{$section_props}['index_next'] = {$section_props}['index'] + {$section_props}['step'];\n"; $output .= "{$section_props}['first'] = ({$section_props}['iteration'] == 1);\n"; $output .= "{$section_props}['last'] = ({$section_props}['iteration'] == {$section_props}['total']);\n"; $output .= "?>"; return $output; } } /** * Smarty Internal Plugin Compile Sectionelse Class */ class Smarty_Internal_Compile_Sectionelse extends Smarty_Internal_CompileBase { /** * Compiles code for the {sectionelse} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); list($_open_tag, $nocache) = $this->_close_tag(array('section')); $this->_open_tag('sectionelse',array('sectionelse', $nocache)); return "<?php endfor; else: ?>"; } } /** * Smarty Internal Plugin Compile Sectionclose Class */ class Smarty_Internal_Compile_Sectionclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/section} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // must endblock be nocache? if ($this->compiler->nocache) { $this->compiler->tag_nocache = true; } list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section', 'sectionelse')); if ($_open_tag == 'sectionelse') return "<?php endif; ?>"; else return "<?php endfor; endif; ?>"; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_section.php
PHP
asf20
6,931
<?php /** * Smarty Internal Plugin Function Call Handler * * @package Smarty * @subpackage PluginsInternal * @author Uwe Tews */ /** * This class does call function defined with the {function} tag */ class Smarty_Internal_Function_Call_Handler extends Smarty_Internal_Template { static function call ($_name, $_template, $_params, $_hash, $_nocache) { if ($_nocache) { $_function = "smarty_template_function_{$_name}_nocache"; $_template->smarty->template_functions[$_name]['called_nocache'] = true; } else { $_function = "smarty_template_function_{$_hash}_{$_name}"; } if (!is_callable($_function)) { $_code = "function {$_function}(\$_smarty_tpl,\$params) { \$saved_tpl_vars = \$_smarty_tpl->tpl_vars; foreach (\$_smarty_tpl->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(trim(\$value,'\''));}; foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>"; if ($_nocache) { $_code .= preg_replace(array("!<\?php echo \\'/\*%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/|/\*/%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/\\';\?>!", "!\\\'!"), array('', "'"), $_template->smarty->template_functions[$_name]['compiled']); } else { $_code .= preg_replace("/{$_template->smarty->template_functions[$_name]['nocache_hash']}/", $_template->properties['nocache_hash'], $_template->smarty->template_functions[$_name]['compiled']); } $_code .= "<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}"; eval($_code); } $_function($_template, $_params); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_function_call_handler.php
PHP
asf20
1,935
<?php /** * Project: Smarty: the PHP compiling template engine * File: smarty_internal_utility.php * SVN: $Id: $ * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * For questions, help, comments, discussion, etc., please join the * Smarty mailing list. Send a blank e-mail to * smarty-discussion-subscribe@googlegroups.com * * @link http://www.smarty.net/ * @copyright 2008 New Digital Group, Inc. * @author Monte Ohrt <monte at ohrt dot com> * @author Uwe Tews * @package Smarty * @subpackage PluginsInternal * @version 3-SVN$Rev: 3286 $ */ class Smarty_Internal_Utility { protected $smarty; function __construct($smarty) { $this->smarty = $smarty; } /** * Compile all template files * * @param string $extension file extension * @param bool $force_compile force all to recompile * @param int $time_limit * @param int $max_errors * @return integer number of template files recompiled */ function compileAllTemplates($extention = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null) { // switch off time limit if (function_exists('set_time_limit')) { @set_time_limit($time_limit); } $this->smarty->force_compile = $force_compile; $_count = 0; $_error_count = 0; // loop over array of template directories foreach((array)$this->smarty->template_dir as $_dir) { if (strpos('/\\', substr($_dir, -1)) === false) { $_dir .= DS; } $_compileDirs = new RecursiveDirectoryIterator($_dir); $_compile = new RecursiveIteratorIterator($_compileDirs); foreach ($_compile as $_fileinfo) { if (strpos($_fileinfo, '.svn') !== false) continue; $_file = $_fileinfo->getFilename(); if (!substr_compare($_file, $extention, - strlen($extention)) == 0) continue; if ($_fileinfo->getPath() == substr($_dir, 0, -1)) { $_template_file = $_file; } else { $_template_file = substr($_fileinfo->getPath(), strlen($_dir)) . DS . $_file; } echo '<br>', $_dir, '---', $_template_file; flush(); $_start_time = microtime(true); try { $_tpl = $this->smarty->createTemplate($_template_file); if ($_tpl->mustCompile()) { $_tpl->compileTemplateSource(); echo ' compiled in ', microtime(true) - $_start_time, ' seconds'; flush(); } else { echo ' is up to date'; flush(); } } catch (Exception $e) { echo 'Error: ', $e->getMessage(), "<br><br>"; $_error_count++; } if ($max_errors !== null && $_error_count == $max_errors) { echo '<br><br>too many errors'; exit(); } } } return $_count; } /** * Compile all config files * * @param string $extension file extension * @param bool $force_compile force all to recompile * @param int $time_limit * @param int $max_errors * @return integer number of template files recompiled */ function compileAllConfig($extention = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null) { // switch off time limit if (function_exists('set_time_limit')) { @set_time_limit($time_limit); } $this->smarty->force_compile = $force_compile; $_count = 0; $_error_count = 0; // loop over array of template directories foreach((array)$this->smarty->config_dir as $_dir) { if (strpos('/\\', substr($_dir, -1)) === false) { $_dir .= DS; } $_compileDirs = new RecursiveDirectoryIterator($_dir); $_compile = new RecursiveIteratorIterator($_compileDirs); foreach ($_compile as $_fileinfo) { if (strpos($_fileinfo, '.svn') !== false) continue; $_file = $_fileinfo->getFilename(); if (!substr_compare($_file, $extention, - strlen($extention)) == 0) continue; if ($_fileinfo->getPath() == substr($_dir, 0, -1)) { $_config_file = $_file; } else { $_config_file = substr($_fileinfo->getPath(), strlen($_dir)) . DS . $_file; } echo '<br>', $_dir, '---', $_config_file; flush(); $_start_time = microtime(true); try { $_config = new Smarty_Internal_Config($_config_file, $this->smarty); if ($_config->mustCompile()) { $_config->compileConfigSource(); echo ' compiled in ', microtime(true) - $_start_time, ' seconds'; flush(); } else { echo ' is up to date'; flush(); } } catch (Exception $e) { echo 'Error: ', $e->getMessage(), "<br><br>"; $_error_count++; } if ($max_errors !== null && $_error_count == $max_errors) { echo '<br><br>too many errors'; exit(); } } } return $_count; } /** * Delete compiled template file * * @param string $resource_name template name * @param string $compile_id compile id * @param integer $exp_time expiration time * @return integer number of template files deleted */ function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null) { $_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null; $_dir_sep = $this->smarty->use_sub_dirs ? DS : '^'; if (isset($resource_name)) { $_resource_part_1 = $resource_name . '.php'; $_resource_part_2 = $resource_name . '.cache' . '.php'; } else { $_resource_part = ''; } $_dir = $this->smarty->compile_dir; if ($this->smarty->use_sub_dirs && isset($_compile_id)) { $_dir .= $_compile_id . $_dir_sep; } if (isset($_compile_id)) { $_compile_id_part = $this->smarty->compile_dir . $_compile_id . $_dir_sep; } $_count = 0; $_compileDirs = new RecursiveDirectoryIterator($_dir); $_compile = new RecursiveIteratorIterator($_compileDirs, RecursiveIteratorIterator::CHILD_FIRST); foreach ($_compile as $_file) { if (strpos($_file, '.svn') !== false) continue; if ($_file->isDir()) { if (!$_compile->isDot()) { // delete folder if empty @rmdir($_file->getPathname()); } } else { if ((!isset($_compile_id) || (strlen((string)$_file) > strlen($_compile_id_part) && substr_compare((string)$_file, $_compile_id_part, 0, strlen($_compile_id_part)) == 0)) && (!isset($resource_name) || (strlen((string)$_file) > strlen($_resource_part_1) && substr_compare((string)$_file, $_resource_part_1, - strlen($_resource_part_1), strlen($_resource_part_1)) == 0) || (strlen((string)$_file) > strlen($_resource_part_2) && substr_compare((string)$_file, $_resource_part_2, - strlen($_resource_part_2), strlen($_resource_part_2)) == 0))) { if (isset($exp_time)) { if (time() - @filemtime($_file) >= $exp_time) { $_count += @unlink((string) $_file) ? 1 : 0; } } else { $_count += @unlink((string) $_file) ? 1 : 0; } } } } return $_count; } /** * Return array of tag/attributes of all tags used by an template * * @param object $templae template object * @return array of tag/attributes */ function getTags(Smarty_Internal_Template $template) { $template->smarty->get_used_tags = true; $template->compileTemplateSource(); return $template->compiler_object->used_tags; } function testInstall() { echo "<PRE>\n"; echo "Smarty Installation test...\n"; echo "Testing template directory...\n"; foreach((array)$this->smarty->template_dir as $template_dir) { if (!is_dir($template_dir)) echo "FAILED: $template_dir is not a directory.\n"; elseif (!is_readable($template_dir)) echo "FAILED: $template_dir is not readable.\n"; else echo "$template_dir is OK.\n"; } echo "Testing compile directory...\n"; if (!is_dir($this->smarty->compile_dir)) echo "FAILED: {$this->smarty->compile_dir} is not a directory.\n"; elseif (!is_readable($this->smarty->compile_dir)) echo "FAILED: {$this->smarty->compile_dir} is not readable.\n"; elseif (!is_writable($this->smarty->compile_dir)) echo "FAILED: {$this->smarty->compile_dir} is not writable.\n"; else echo "{$this->smarty->compile_dir} is OK.\n"; echo "Testing plugins directory...\n"; foreach((array)$this->smarty->plugins_dir as $plugin_dir) { if (!is_dir($plugin_dir)) echo "FAILED: $plugin_dir is not a directory.\n"; elseif (!is_readable($plugin_dir)) echo "FAILED: $plugin_dir is not readable.\n"; else echo "$plugin_dir is OK.\n"; } echo "Testing cache directory...\n"; if (!is_dir($this->smarty->cache_dir)) echo "FAILED: {$this->smarty->cache_dir} is not a directory.\n"; elseif (!is_readable($this->smarty->cache_dir)) echo "FAILED: {$this->smarty->cache_dir} is not readable.\n"; elseif (!is_writable($this->smarty->cache_dir)) echo "FAILED: {$this->smarty->cache_dir} is not writable.\n"; else echo "{$this->smarty->cache_dir} is OK.\n"; echo "Testing configs directory...\n"; if (!is_dir($this->smarty->config_dir)) echo "FAILED: {$this->smarty->config_dir} is not a directory.\n"; elseif (!is_readable($this->smarty->config_dir)) echo "FAILED: {$this->smarty->config_dir} is not readable.\n"; else echo "{$this->smarty->config_dir} is OK.\n"; echo "Tests complete.\n"; echo "</PRE>\n"; return true; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_utility.php
PHP
asf20
11,821
<?php /** * Smarty Internal Plugin Configfilelexer * * This is the lexer to break the config file source into tokens * @package Smarty * @subpackage Config * @author Uwe Tews */ /** * Smarty Internal Plugin Configfilelexer */ class Smarty_Internal_Configfilelexer { public $data; public $counter; public $token; public $value; public $node; public $line; private $state = 1; public $smarty_token_names = array ( // Text for parser error messages ); function __construct($data, $smarty) { // set instance object self::instance($this); $this->data = $data . "\n"; //now all lines are \n-terminated $this->counter = 0; $this->line = 1; $this->smarty = $smarty; } public static function &instance($new_instance = null) { static $instance = null; if (isset($new_instance) && is_object($new_instance)) $instance = $new_instance; return $instance; } private $_yy_state = 1; private $_yy_stack = array(); function yylex() { return $this->{'yylex' . $this->_yy_state}(); } function yypushstate($state) { array_push($this->_yy_stack, $this->_yy_state); $this->_yy_state = $state; } function yypopstate() { $this->_yy_state = array_pop($this->_yy_stack); } function yybegin($state) { $this->_yy_state = $state; } function yylex1() { $tokenMap = array ( 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } $yy_global_pattern = "/^(#)|^(\\[)|^(\\])|^(=)|^([ \t\r]+)|^(\n)|^([0-9]*[a-zA-Z_]\\w*)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { $yysubmatches = $yymatches; $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, $this->counter, 5) . '... state START'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number if ($tokenMap[$this->token]) { // extract sub-patterns for passing to lex function $yysubmatches = array_slice($yysubmatches, $this->token + 1, $tokenMap[$this->token]); } else { $yysubmatches = array(); } $this->value = current($yymatches); // token value $r = $this->{'yy_r1_' . $this->token}($yysubmatches); if ($r === null) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); // accept this token return true; } elseif ($r === true) { // we have changed state // process this token in the new state return $this->yylex(); } elseif ($r === false) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); if ($this->counter >= strlen($this->data)) { return false; // end of input } // skip this token continue; } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } break; } while (true); } // end function const START = 1; function yy_r1_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_COMMENTSTART; $this->yypushstate(self::COMMENT); } function yy_r1_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_OPENB; $this->yypushstate(self::SECTION); } function yy_r1_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_CLOSEB; } function yy_r1_4($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_EQUAL; $this->yypushstate(self::VALUE); } function yy_r1_5($yy_subpatterns) { return false; } function yy_r1_6($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NEWLINE; } function yy_r1_7($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_ID; } function yylex2() { $tokenMap = array ( 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } $yy_global_pattern = "/^([ \t\r]+)|^(\\d+\\.\\d+(?=[ \t\r]*[\n#]))|^(\\d+(?=[ \t\r]*[\n#]))|^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*'(?=[ \t\r]*[\n#]))|^(\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"(?=[ \t\r]*[\n#]))|^(\"\"\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"\"\"(?=[ \t\r]*[\n#]))|^([a-zA-Z]+(?=[ \t\r]*[\n#]))|^([^\n]+?(?=[ \t\r]*\n))|^(\n)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { $yysubmatches = $yymatches; $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, $this->counter, 5) . '... state VALUE'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number if ($tokenMap[$this->token]) { // extract sub-patterns for passing to lex function $yysubmatches = array_slice($yysubmatches, $this->token + 1, $tokenMap[$this->token]); } else { $yysubmatches = array(); } $this->value = current($yymatches); // token value $r = $this->{'yy_r2_' . $this->token}($yysubmatches); if ($r === null) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); // accept this token return true; } elseif ($r === true) { // we have changed state // process this token in the new state return $this->yylex(); } elseif ($r === false) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); if ($this->counter >= strlen($this->data)) { return false; // end of input } // skip this token continue; } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } break; } while (true); } // end function const VALUE = 2; function yy_r2_1($yy_subpatterns) { return false; } function yy_r2_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_FLOAT; $this->yypopstate(); } function yy_r2_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_INT; $this->yypopstate(); } function yy_r2_4($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_SINGLE_QUOTED_STRING; $this->yypopstate(); } function yy_r2_5($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_DOUBLE_QUOTED_STRING; $this->yypopstate(); } function yy_r2_6($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_DOUBLE_QUOTED_STRING; $this->yypopstate(); } function yy_r2_7($yy_subpatterns) { if (!$this->smarty->config_booleanize || !in_array(strtolower($this->value), Array("true", "false", "on", "off", "yes", "no")) ) { $this->yypopstate(); $this->yypushstate(self::NAKED_STRING_VALUE); return true; //reprocess in new state } else { $this->token = Smarty_Internal_Configfileparser::TPC_BOOL; $this->yypopstate(); } } function yy_r2_8($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; $this->yypopstate(); } function yy_r2_9($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; $this->value = ""; $this->yypopstate(); } function yylex3() { $tokenMap = array ( 1 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } $yy_global_pattern = "/^([^\n]+?(?=[ \t\r]*\n))/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { $yysubmatches = $yymatches; $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, $this->counter, 5) . '... state NAKED_STRING_VALUE'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number if ($tokenMap[$this->token]) { // extract sub-patterns for passing to lex function $yysubmatches = array_slice($yysubmatches, $this->token + 1, $tokenMap[$this->token]); } else { $yysubmatches = array(); } $this->value = current($yymatches); // token value $r = $this->{'yy_r3_' . $this->token}($yysubmatches); if ($r === null) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); // accept this token return true; } elseif ($r === true) { // we have changed state // process this token in the new state return $this->yylex(); } elseif ($r === false) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); if ($this->counter >= strlen($this->data)) { return false; // end of input } // skip this token continue; } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } break; } while (true); } // end function const NAKED_STRING_VALUE = 3; function yy_r3_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; $this->yypopstate(); } function yylex4() { $tokenMap = array ( 1 => 0, 2 => 0, 3 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } $yy_global_pattern = "/^([ \t\r]+)|^([^\n]+?(?=[ \t\r]*\n))|^(\n)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { $yysubmatches = $yymatches; $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, $this->counter, 5) . '... state COMMENT'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number if ($tokenMap[$this->token]) { // extract sub-patterns for passing to lex function $yysubmatches = array_slice($yysubmatches, $this->token + 1, $tokenMap[$this->token]); } else { $yysubmatches = array(); } $this->value = current($yymatches); // token value $r = $this->{'yy_r4_' . $this->token}($yysubmatches); if ($r === null) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); // accept this token return true; } elseif ($r === true) { // we have changed state // process this token in the new state return $this->yylex(); } elseif ($r === false) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); if ($this->counter >= strlen($this->data)) { return false; // end of input } // skip this token continue; } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } break; } while (true); } // end function const COMMENT = 4; function yy_r4_1($yy_subpatterns) { return false; } function yy_r4_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; } function yy_r4_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NEWLINE; $this->yypopstate(); } function yylex5() { $tokenMap = array ( 1 => 0, 2 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } $yy_global_pattern = "/^(\\.)|^(.*?(?=[\.=[\]\r\n]))/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { $yysubmatches = $yymatches; $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns if (!count($yymatches)) { throw new Exception('Error: lexing failed because a rule matched' . 'an empty string. Input "' . substr($this->data, $this->counter, 5) . '... state SECTION'); } next($yymatches); // skip global match $this->token = key($yymatches); // token number if ($tokenMap[$this->token]) { // extract sub-patterns for passing to lex function $yysubmatches = array_slice($yysubmatches, $this->token + 1, $tokenMap[$this->token]); } else { $yysubmatches = array(); } $this->value = current($yymatches); // token value $r = $this->{'yy_r5_' . $this->token}($yysubmatches); if ($r === null) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); // accept this token return true; } elseif ($r === true) { // we have changed state // process this token in the new state return $this->yylex(); } elseif ($r === false) { $this->counter += strlen($this->value); $this->line += substr_count($this->value, "\n"); if ($this->counter >= strlen($this->data)) { return false; // end of input } // skip this token continue; } } else { throw new Exception('Unexpected input at line' . $this->line . ': ' . $this->data[$this->counter]); } break; } while (true); } // end function const SECTION = 5; function yy_r5_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_DOT; } function yy_r5_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_SECTION; $this->yypopstate(); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_configfilelexer.php
PHP
asf20
17,833
<?php /** * Smarty write file plugin * * @package Smarty * @subpackage PluginsInternal * @author Monte Ohrt */ /** * Smarty Internal Write File Class */ class Smarty_Internal_Write_File { /** * Writes file in a save way to disk * * @param string $_filepath complete filepath * @param string $_contents file content * @return boolean true */ public static function writeFile($_filepath, $_contents, $smarty) { $old_umask = umask(0); $_dirpath = dirname($_filepath); // if subdirs, create dir structure if ($_dirpath !== '.' && !file_exists($_dirpath)) { mkdir($_dirpath, $smarty->_dir_perms, true); } // write to tmp file, then move to overt file lock race condition $_tmp_file = tempnam($_dirpath, 'wrt'); if (!($fd = @fopen($_tmp_file, 'wb'))) { $_tmp_file = $_dirpath . DS . uniqid('wrt'); if (!($fd = @fopen($_tmp_file, 'wb'))) { throw new SmartyException("unable to write file {$_tmp_file}"); return false; } } fwrite($fd, $_contents); fclose($fd); // remove original file if (file_exists($_filepath)) @unlink($_filepath); // rename tmp file rename($_tmp_file, $_filepath); // set file permissions chmod($_filepath, $smarty->_file_perms); umask($old_umask); return true; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_write_file.php
PHP
asf20
1,466
<?php /** * Smarty Internal Plugin Resource Eval * * Implements the strings as resource for Smarty template * * @package Smarty * @subpackage TemplateResources * @author Uwe Tews */ /** * Smarty Internal Plugin Resource Eval */ class Smarty_Internal_Resource_Eval { public function __construct($smarty) { $this->smarty = $smarty; } // classes used for compiling Smarty templates from file resource public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler'; public $template_lexer_class = 'Smarty_Internal_Templatelexer'; public $template_parser_class = 'Smarty_Internal_Templateparser'; // properties public $usesCompiler = true; public $isEvaluated = true; /** * Return flag if template source is existing * * @return boolean true */ public function isExisting($template) { return true; } /** * Get filepath to template source * * @param object $_template template object * @return string return 'string' as template source is not a file */ public function getTemplateFilepath($_template) { // no filepath for evaluated strings // return "string" for compiler error messages return 'eval:'; } /** * Get timestamp to template source * * @param object $_template template object * @return boolean false as string resources have no timestamp */ public function getTemplateTimestamp($_template) { // evaluated strings must always be compiled and have no timestamp return false; } /** * Retuen template source from resource name * * @param object $_template template object * @return string content of template source */ public function getTemplateSource($_template) { // return template string $_template->template_source = $_template->resource_name; return true; } /** * Get filepath to compiled template * * @param object $_template template object * @return boolean return false as compiled template is not stored */ public function getCompiledFilepath($_template) { // no filepath for strings return false; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_eval.php
PHP
asf20
2,383
<?php /** * Smarty Internal Plugin Compile Block * * Compiles the {block}{/block} tags * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Block Class */ class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array('name'); public $shorttag_order = array('name'); /** * Compiles code for the {block} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return boolean true */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); $save = array($_attr, $compiler->parser->current_buffer, $this->compiler->nocache, $this->compiler->smarty->merge_compiled_includes, $compiler->smarty->inheritance); $this->_open_tag('block', $save); if ($_attr['nocache'] == true) { $compiler->nocache = true; } // set flag for {block} tag $compiler->smarty->inheritance = true; // must merge includes $this->compiler->smarty->merge_compiled_includes = true; $compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser); $compiler->has_code = false; return true; } static function saveBlockData($block_content, $block_tag, $template, $filepath) { $_rdl = preg_quote($template->smarty->right_delimiter); $_ldl = preg_quote($template->smarty->left_delimiter); if (0 == preg_match("!({$_ldl}block\s+)(name=)?(\w+|'.*'|\".*\")(\s*?)?((append|prepend|nocache)(=true)?)?(\s*{$_rdl})!", $block_tag, $_match)) { $error_text = 'Syntax Error in template "' . $template->getTemplateFilepath() . '" "' . htmlspecialchars($block_tag) . '" illegal options'; throw new SmartyCompilerException($error_text); } else { $_name = trim($_match[3], '\'"'); // replace {$smarty.block.child} if (strpos($block_content, $template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter) !== false) { if (isset($template->block_data[$_name])) { $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter, $template->block_data[$_name]['source'], $block_content); unset($template->block_data[$_name]); } else { $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter, '', $block_content); } } if (isset($template->block_data[$_name])) { if (strpos($template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) { $template->block_data[$_name]['source'] = str_replace('%%%%SMARTY_PARENT%%%%', $block_content, $template->block_data[$_name]['source']); } elseif ($template->block_data[$_name]['mode'] == 'prepend') { $template->block_data[$_name]['source'] .= $block_content; } elseif ($template->block_data[$_name]['mode'] == 'append') { $template->block_data[$_name]['source'] = $block_content . $template->block_data[$_name]['source']; } } else { $template->block_data[$_name]['source'] = $block_content; } if ($_match[6] == 'append') { $template->block_data[$_name]['mode'] = 'append'; } elseif ($_match[6] == 'prepend') { $template->block_data[$_name]['mode'] = 'prepend'; } else { $template->block_data[$_name]['mode'] = 'replace'; } $template->block_data[$_name]['file'] = $filepath; } } static function compileChildBlock ($compiler, $_name = null) { $_output = ''; // if called by {$smarty.block.child} we must search the name of enclosing {block} if ($_name == null) { $stack_count = count($compiler->_tag_stack); while (--$stack_count >= 0) { if ($compiler->_tag_stack[$stack_count][0] == 'block') { $_name = trim($compiler->_tag_stack[$stack_count][1][0]['name'] ,"'"); break; } } // flag that child is already compile by {$smarty.block.child} inclusion $compiler->template->block_data[$_name]['compiled'] = true; } if ($_name == null) { $compiler->trigger_template_error('{$smarty.block.child} used out of context', $this->compiler->lex->taglineno); } // undefined child? if (!isset($compiler->template->block_data[$_name])) { return ''; } $_tpl = new Smarty_Internal_template ('eval:' . $compiler->template->block_data[$_name]['source'], $compiler->smarty, $compiler->template, $compiler->template->cache_id, $compiler->template->compile_id = null, $compiler->template->caching, $compiler->template->cache_lifetime); $_tpl->properties['nocache_hash'] = $compiler->template->properties['nocache_hash']; $_tpl->template_filepath = $compiler->template->block_data[$_name]['file']; if ($compiler->nocache) { $_tpl->forceNocache = 2; } else { $_tpl->forceNocache = 1; } $_tpl->suppressHeader = true; $_tpl->suppressFileDependency = true; if (strpos($compiler->template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) { $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->parser->current_buffer->to_smarty_php(), $_tpl->getCompiledTemplate()); } elseif ($compiler->template->block_data[$_name]['mode'] == 'prepend') { $_output = $_tpl->getCompiledTemplate() . $compiler->parser->current_buffer->to_smarty_php(); } elseif ($compiler->template->block_data[$_name]['mode'] == 'append') { $_output = $compiler->parser->current_buffer->to_smarty_php() . $_tpl->getCompiledTemplate(); } elseif (!empty($compiler->template->block_data[$_name])) { $_output = $_tpl->getCompiledTemplate(); } $compiler->template->properties['file_dependency'] = array_merge($compiler->template->properties['file_dependency'], $_tpl->properties['file_dependency']); $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $_tpl->properties['function']); if ($_tpl->has_nocache_code) { $compiler->template->has_nocache_code = true; } foreach($_tpl->required_plugins as $code => $tmp1) { foreach($tmp1 as $name => $tmp) { foreach($tmp as $type => $data) { $compiler->template->required_plugins[$code][$name][$type] = $data; } } } unset($_tpl); return $_output; } } /** * Smarty Internal Plugin Compile BlockClose Class */ class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/block} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $this->smarty = $compiler->smarty; $this->compiler->has_code = true; // check and get attributes $_attr = $this->_get_attributes($args); $saved_data = $this->_close_tag(array('block')); $_name = trim($saved_data[0]['name'], "\"'"); if (isset($compiler->template->block_data[$_name]) && !isset($compiler->template->block_data[$_name]['compiled'])) { $_output = Smarty_Internal_Compile_Block::compileChildBlock($compiler, $_name); } else { $_output = $compiler->parser->current_buffer->to_smarty_php(); unset ($compiler->template->block_data[$_name]['compiled']); } // reset flags $compiler->parser->current_buffer = $saved_data[1]; $compiler->nocache = $saved_data[2]; $compiler->smarty->merge_compiled_includes = $saved_data[3]; $compiler->smarty->inheritance = $saved_data[4]; // $_output content has already nocache code processed $compiler->suppressNocacheProcessing = true; return $_output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_block.php
PHP
asf20
8,490
<?php /** * Smarty Internal Plugin Config File Compiler * * This is the config file compiler class. It calls the lexer and parser to * perform the compiling. * * @package Smarty * @subpackage Config * @author Uwe Tews */ /** * Main config file compiler class */ class Smarty_Internal_Config_File_Compiler { /** * Initialize compiler */ public function __construct($smarty) { $this->smarty = $smarty; // get required plugins $this->smarty->loadPlugin('Smarty_Internal_Configfilelexer'); $this->smarty->loadPlugin('Smarty_Internal_Configfileparser'); $this->config_data['sections'] = array(); $this->config_data['vars'] = array(); } /** * Methode to compile a Smarty template * * @param $template template object to compile * @return bool true if compiling succeeded, false if it failed */ public function compileSource($config) { /* here is where the compiling takes place. Smarty tags in the templates are replaces with PHP code, then written to compiled files. */ $this->config = $config; // get config file source $_content = $config->getConfigSource() . "\n"; // on empty template just return if ($_content == '') { return true; } // init the lexer/parser to compile the config file $lex = new Smarty_Internal_Configfilelexer($_content, $this->smarty); $parser = new Smarty_Internal_Configfileparser($lex, $this); if (isset($this->smarty->_parserdebug)) $parser->PrintTrace(); // get tokens from lexer and parse them while ($lex->yylex()) { if (isset($this->smarty->_parserdebug)) echo "<br>Parsing {$parser->yyTokenName[$lex->token]} Token {$lex->value} Line {$lex->line} \n"; $parser->doParse($lex->token, $lex->value); } // finish parsing process $parser->doParse(0, 0); $config->compiled_config = '<?php $_config_vars = ' . var_export($this->config_data, true) . '; ?>'; } /** * display compiler error messages without dying * * If parameter $args is empty it is a parser detected syntax error. * In this case the parser is called to obtain information about exspected tokens. * * If parameter $args contains a string this is used as error message * * @todo output exact position of parse error in source line * @param $args string individual error message or null */ public function trigger_config_file_error($args = null) { $this->lex = Smarty_Internal_Configfilelexer::instance(); $this->parser = Smarty_Internal_Configfileparser::instance(); // get template source line which has error $line = $this->lex->line; if (isset($args)) { // $line--; } $match = preg_split("/\n/", $this->lex->data); $error_text = "Syntax error in config file '{$this->config->getConfigFilepath()}' on line {$line} '{$match[$line-1]}' "; if (isset($args)) { // individual error message $error_text .= $args; } else { // exspected token from parser foreach ($this->parser->yy_get_expected_tokens($this->parser->yymajor) as $token) { $exp_token = $this->parser->yyTokenName[$token]; if (isset($this->lex->smarty_token_names[$exp_token])) { // token type from lexer $expect[] = '"' . $this->lex->smarty_token_names[$exp_token] . '"'; } else { // otherwise internal token name $expect[] = $this->parser->yyTokenName[$token]; } } // output parser error message $error_text .= ' - Unexpected "' . $this->lex->value . '", expected one of: ' . implode(' , ', $expect); } throw new SmartyCompilerException($error_text); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_config_file_compiler.php
PHP
asf20
4,042
<?php /** * Smarty Internal Plugin Compile Special Smarty Variable * * Compiles the special $smarty variables * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile special Smarty Variable Class */ class Smarty_Internal_Compile_Private_Special_Variable extends Smarty_Internal_CompileBase { /** * Compiles code for the speical $smarty variables * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler, $parameter) { $_index = preg_split("/\]\[/",substr($parameter, 1, strlen($parameter)-2)); $compiled_ref = ' '; $variable = trim($_index[0], "'"); switch ($variable) { case 'foreach': return "\$_smarty_tpl->getVariable('smarty')->value$parameter"; case 'section': return "\$_smarty_tpl->getVariable('smarty')->value$parameter"; case 'capture': return "Smarty::\$_smarty_vars$parameter"; case 'now': return 'time()'; case 'cookies': if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_super_globals) { $compiler->trigger_template_error("(secure mode) super globals not permitted"); break; } $compiled_ref = '$_COOKIE'; break; case 'get': case 'post': case 'env': case 'server': case 'session': case 'request': if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_super_globals) { $compiler->trigger_template_error("(secure mode) super globals not permitted"); break; } $compiled_ref = '$_'.strtoupper($variable); break; case 'template': $_template_name = $compiler->template->template_resource; return "'$_template_name'"; case 'current_dir': $_template_dir_name = dirname($compiler->template->getTemplateFilepath()); return "'$_template_dir_name'"; case 'version': $_version = Smarty::SMARTY_VERSION; return "'$_version'"; case 'const': if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_constants) { $compiler->trigger_template_error("(secure mode) constants not permitted"); break; } return '@' . trim($_index[1], "'"); case 'config': return "\$_smarty_tpl->getConfigVariable($_index[1])"; case 'ldelim': $_ldelim = $compiler->smarty->left_delimiter; return "'$_ldelim'"; case 'rdelim': $_rdelim = $compiler->smarty->right_delimiter; return "'$_rdelim'"; default: $compiler->trigger_template_error('$smarty.' . trim($_index[0], "'") . ' is invalid'); break; } if (isset($_index[1])) { array_shift($_index); foreach ($_index as $_ind) { $compiled_ref = $compiled_ref . "[$_ind]"; } } return $compiled_ref; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_special_variable.php
PHP
asf20
3,589
<?php /** * Smarty Internal Plugin Compile For * * Compiles the {for} {forelse} {/for} tags * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile For Class */ class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase { /** * Compiles code for the {for} tag * * Smarty 3 does implement two different sytaxes: * * - {for $var in $array} * For looping over arrays or iterators * * - {for $x=0; $x<$y; $x++} * For general loops * * The parser is gereration different sets of attribute by which this compiler can * determin which syntax is used. * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; if ($parameter == 0) { $this->required_attributes = array('start','to'); $this->optional_attributes = array('max','step'); } else { $this->required_attributes = array('start','ifexp','var','step'); $this->optional_attributes = array(); } // check and get attributes $_attr = $this->_get_attributes($args); $local_vars = array(); $output = "<?php "; if ($parameter == 1) { foreach ($_attr['start'] as $_statement) { $output .= " \$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;"; $output .= " \$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value];\n"; $compiler->local_var[$_statement['var']] = true; $local_vars[] = $_statement['var']; } $output .= " if ($_attr[ifexp]){ for (\$_foo=true;$_attr[ifexp]; \$_smarty_tpl->tpl_vars[$_attr[var]]->value$_attr[step]){\n"; } else { $_statement = $_attr['start']; $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;"; $compiler->local_var[$_statement['var']] = true; $local_vars[] = $_statement['var']; if (isset($_attr['step'])) { $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = $_attr[step];"; } else { $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = 1;"; } if (isset($_attr['max'])) { $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)min(ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - ($_statement[value]) : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step)),$_attr[max]);\n"; } else { $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - ($_statement[value]) : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step));\n"; } $output .= "if (\$_smarty_tpl->tpl_vars[$_statement[var]]->total > 0){\n"; $output .= "for (\$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value], \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration = 1;\$_smarty_tpl->tpl_vars[$_statement[var]]->iteration <= \$_smarty_tpl->tpl_vars[$_statement[var]]->total;\$_smarty_tpl->tpl_vars[$_statement[var]]->value += \$_smarty_tpl->tpl_vars[$_statement[var]]->step, \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration++){\n"; $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->first = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == 1;"; $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->last = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == \$_smarty_tpl->tpl_vars[$_statement[var]]->total;"; } $output .= "?>"; $this->_open_tag('for', array('for', $this->compiler->nocache, $local_vars)); // maybe nocache because of nocache variables $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; // return compiled code return $output; } } /** * Smarty Internal Plugin Compile Forelse Class */ class Smarty_Internal_Compile_Forelse extends Smarty_Internal_CompileBase { /** * Compiles code for the {forelse} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); list($_open_tag, $nocache, $local_vars) = $this->_close_tag(array('for')); $this->_open_tag('forelse', array('forelse', $nocache, $local_vars)); return "<?php }} else { ?>"; } } /** * Smarty Internal Plugin Compile Forclose Class */ class Smarty_Internal_Compile_Forclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/for} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // must endblock be nocache? if ($this->compiler->nocache) { $this->compiler->tag_nocache = true; } list($_open_tag, $this->compiler->nocache, $local_vars) = $this->_close_tag(array('for', 'forelse')); foreach ($local_vars as $var) { unset($compiler->local_var[$var]); } if ($_open_tag == 'forelse') return "<?php } ?>"; else return "<?php }} ?>"; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_for.php
PHP
asf20
6,210
<?php /** * Smarty Internal Plugin Templateparser Parsetrees * * These are classes to build parsetrees in the template parser * * @package Smarty * @subpackage Compiler * @author Thue Kristensen * @author Uwe Tews */ abstract class _smarty_parsetree { abstract public function to_smarty_php(); } /** * A complete smarty tag. */ class _smarty_tag extends _smarty_parsetree { public $parser; public $data; public $saved_block_nesting; function __construct($parser, $data) { $this->parser = $parser; $this->data = $data; $this->saved_block_nesting = $parser->block_nesting_level; } public function to_smarty_php() { return $this->data; } public function assign_to_var() { $var = sprintf('$_tmp%d', ++$this->parser->prefix_number); $this->parser->compiler->prefix_code[] = sprintf('<?php ob_start();?>%s<?php %s=ob_get_clean();?>', $this->data, $var); return $var; } } /** * Code fragment inside a tag. */ class _smarty_code extends _smarty_parsetree { public $parser; public $data; function __construct($parser, $data) { $this->parser = $parser; $this->data = $data; } public function to_smarty_php() { return sprintf("(%s)", $this->data); } } /** * Double quoted string inside a tag. */ class _smarty_doublequoted extends _smarty_parsetree { public $parser; public $subtrees = Array(); function __construct($parser, _smarty_parsetree $subtree) { $this->parser = $parser; $this->subtrees[] = $subtree; if ($subtree instanceof _smarty_tag) { $this->parser->block_nesting_level = count($this->parser->compiler->_tag_stack); } } function append_subtree(_smarty_parsetree $subtree) { $last_subtree = count($this->subtrees)-1; if ($last_subtree >= 0 && $this->subtrees[$last_subtree] instanceof _smarty_tag && $this->subtrees[$last_subtree]->saved_block_nesting < $this->parser->block_nesting_level) { if ($subtree instanceof _smarty_code) { $this->subtrees[$last_subtree]->data .= '<?php echo ' . $subtree->data . ';?>'; } elseif ($subtree instanceof _smarty_dq_content) { $this->subtrees[$last_subtree]->data .= '<?php echo "' . $subtree->data . '";?>'; } else { $this->subtrees[$last_subtree]->data .= $subtree->data; } } else { $this->subtrees[] = $subtree; } if ($subtree instanceof _smarty_tag) { $this->parser->block_nesting_level = count($this->parser->compiler->_tag_stack); } } public function to_smarty_php() { $code = ''; foreach ($this->subtrees as $subtree) { if ($code !== "") { $code .= "."; } if ($subtree instanceof _smarty_tag) { $more_php = $subtree->assign_to_var(); } else { $more_php = $subtree->to_smarty_php(); } $code .= $more_php; if (!$subtree instanceof _smarty_dq_content) { $this->parser->compiler->has_variable_string = true; } } return $code; } } /** * Raw chars as part of a double quoted string. */ class _smarty_dq_content extends _smarty_parsetree { public $data; function __construct($parser, $data) { $this->parser = $parser; $this->data = $data; } public function to_smarty_php() { return '"' . $this->data . '"'; } } /** * Template element */ class _smarty_template_buffer extends _smarty_parsetree { public $subtrees = Array(); function __construct($parser) { $this->parser = $parser; } function append_subtree(_smarty_parsetree $subtree) { $this->subtrees[] = $subtree; } public function to_smarty_php() { $code = ''; for ($key = 0, $cnt = count($this->subtrees); $key < $cnt; $key++) { if ($key + 2 < $cnt) { if ($this->subtrees[$key] instanceof _smarty_linebreak && $this->subtrees[$key + 1] instanceof _smarty_tag && $this->subtrees[$key + 1]->data == '' && $this->subtrees[$key + 2] instanceof _smarty_linebreak) { $key = $key + 1; continue; } if (substr($this->subtrees[$key]->data, -1) == '<' && $this->subtrees[$key + 1]->data == '' && substr($this->subtrees[$key + 2]->data, -1) == '?') { $key = $key + 2; continue; } } if (substr($code, -1) == '<') { $subtree = $this->subtrees[$key]->to_smarty_php(); if (substr($subtree, 0, 1) == '?') { $code = substr($code, 0, strlen($code)-1) . '<<?php ?>?' . substr($subtree, 1); } elseif ($this->parser->asp_tags && substr($subtree, 0, 1) == '%') { $code = substr($code, 0, strlen($code)-1) . '<<?php ?>%' . substr($subtree, 1); } else { $code .= $subtree; } continue; } if ($this->parser->asp_tags && substr($code, -1) == '%') { $subtree = $this->subtrees[$key]->to_smarty_php(); if (substr($subtree, 0, 1) == '>') { $code = substr($code, 0, strlen($code)-1) . '%<?php ?>>' . substr($subtree, 1); } else { $code .= $subtree; } continue; } if (substr($code, -1) == '?') { $subtree = $this->subtrees[$key]->to_smarty_php(); if (substr($subtree, 0, 1) == '>') { $code = substr($code, 0, strlen($code)-1) . '?<?php ?>>' . substr($subtree, 1); } else { $code .= $subtree; } continue; } $code .= $this->subtrees[$key]->to_smarty_php(); } return $code; } } /** * template text */ class _smarty_text extends _smarty_parsetree { public $data; function __construct($parser, $data) { $this->parser = $parser; $this->data = $data; } public function to_smarty_php() { return $this->data; } } /** * template linebreaks */ class _smarty_linebreak extends _smarty_parsetree { public $data; function __construct($parser, $data) { $this->parser = $parser; $this->data = $data; } public function to_smarty_php() { return $this->data; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_parsetree.php
PHP
asf20
7,030
<?php /** * Smarty Internal Plugin Smarty Template Compiler Base * * This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Main compiler class */ class Smarty_Internal_TemplateCompilerBase { // hash for nocache sections private $nocache_hash = null; // suppress generation of nocache code public $suppressNocacheProcessing = false; // compile tag objects static $_tag_objects = array(); // tag stack public $_tag_stack = array(); // current template public $template = null; // optional log of tag/attributes public $used_tags = array(); /** * Initialize compiler */ public function __construct() { $this->nocache_hash = str_replace('.', '-', uniqid(rand(), true)); } // abstract function doCompile($_content); /** * Methode to compile a Smarty template * * @param $template template object to compile * @return bool true if compiling succeeded, false if it failed */ public function compileTemplate($template) { if (empty($template->properties['nocache_hash'])) { $template->properties['nocache_hash'] = $this->nocache_hash; } else { $this->nocache_hash = $template->properties['nocache_hash']; } // flag for nochache sections $this->nocache = false; $this->tag_nocache = false; // save template object in compiler class $this->template = $template; $this->smarty->_current_file = $this->template->getTemplateFilepath(); // template header code $template_header = ''; if (!$template->suppressHeader) { $template_header .= "<?php /* Smarty version " . Smarty::SMARTY_VERSION . ", created on " . strftime("%Y-%m-%d %H:%M:%S") . "\n"; $template_header .= " compiled from \"" . $this->template->getTemplateFilepath() . "\" */ ?>\n"; } do { // flag for aborting current and start recompile $this->abort_and_recompile = false; // get template source $_content = $template->getTemplateSource(); // run prefilter if required if (isset($this->smarty->autoload_filters['pre']) || isset($this->smarty->registered_filters['pre'])) { $template->template_source = $_content = Smarty_Internal_Filter_Handler::runFilter('pre', $_content, $template); } // on empty template just return header if ($_content == '') { if ($template->suppressFileDependency) { $template->compiled_template = ''; } else { $template->compiled_template = $template_header . $template->createPropertyHeader(); } return true; } // call compiler $_compiled_code = $this->doCompile($_content); } while ($this->abort_and_recompile); // return compiled code to template object if ($template->suppressFileDependency) { $template->compiled_template = $_compiled_code; } else { $template->compiled_template = $template_header . $template->createPropertyHeader() . $_compiled_code; } // run postfilter if required if (isset($this->smarty->autoload_filters['post']) || isset($this->smarty->registered_filters['post'])) { $template->compiled_template = Smarty_Internal_Filter_Handler::runFilter('post', $template->compiled_template, $template); } } /** * Compile Tag * * This is a call back from the lexer/parser * It executes the required compile plugin for the Smarty tag * * @param string $tag tag name * @param array $args array with tag attributes * @param array $parameter array with compilation parameter * @return string compiled code */ public function compileTag($tag, $args, $parameter = array()) { // $args contains the attributes parsed and compiled by the lexer/parser // assume that tag does compile into code, but creates no HTML output $this->has_code = true; $this->has_output = false; // log tag/attributes if (isset($this->smarty->get_used_tags) && $this->smarty->get_used_tags) { $this->used_tags[] = array($tag,$args); } // check nocache option flag if (in_array("'nocache'",$args) || in_array(array('nocache'=>'true'),$args) || in_array(array('nocache'=>'"true"'),$args) || in_array(array('nocache'=>"'true'"),$args)) { $this->tag_nocache = true; } // compile the smarty tag (required compile classes to compile the tag are autoloaded) if (($_output = $this->callTagCompiler($tag, $args, $parameter)) === false) { if (isset($this->smarty->template_functions[$tag])) { // template defined by {template} tag $args['_attr']['name'] = "'" . $tag . "'"; $_output = $this->callTagCompiler('call', $args, $parameter); } } if ($_output !== false) { if ($_output !== true) { // did we get compiled code if ($this->has_code) { // Does it create output? if ($this->has_output) { $_output .= "\n"; } // return compiled code return $_output; } } // tag did not produce compiled code return ''; } else { // map_named attributes if (isset($args['_attr'])) { foreach ($args['_attr'] as $key => $attribute) { if (is_array($attribute)) { $args = array_merge($args, $attribute); } } } // not an internal compiler tag if (strlen($tag) < 6 || substr($tag, -5) != 'close') { // check if tag is a registered object if (isset($this->smarty->registered_objects[$tag]) && isset($parameter['object_methode'])) { $methode = $parameter['object_methode']; if (!in_array($methode, $this->smarty->registered_objects[$tag][3]) && (empty($this->smarty->registered_objects[$tag][1]) || in_array($methode, $this->smarty->registered_objects[$tag][1]))) { return $this->callTagCompiler('private_object_function', $args, $parameter, $tag, $methode); } elseif (in_array($methode, $this->smarty->registered_objects[$tag][3])) { return $this->callTagCompiler('private_object_block_function', $args, $parameter, $tag, $methode); } else { return $this->trigger_template_error ('unallowed methode "' . $methode . '" in registered object "' . $tag . '"', $this->lex->taglineno); } } // check if tag is registered foreach (array(Smarty::PLUGIN_COMPILER, Smarty::PLUGIN_FUNCTION, Smarty::PLUGIN_BLOCK) as $type) { if (isset($this->smarty->registered_plugins[$type][$tag])) { // if compiler function plugin call it now if ($type == Smarty::PLUGIN_COMPILER) { $new_args = array(); foreach ($args as $mixed) { $new_args = array_merge($new_args, $mixed); } if (!$this->smarty->registered_plugins[$type][$tag][1]) { $this->tag_nocache = true; } $function = $this->smarty->registered_plugins[$type][$tag][0]; if (!is_array($function)) { return $function($new_args, $this); } else if (is_object($function[0])) { return $this->smarty->registered_plugins[$type][$tag][0][0]->$function[1]($new_args, $this); } else { return call_user_func_array($this->smarty->registered_plugins[$type][$tag][0], array($new_args, $this)); } } // compile registered function or block function if ($type == Smarty::PLUGIN_FUNCTION || $type == Smarty::PLUGIN_BLOCK) { return $this->callTagCompiler('private_registered_' . $type, $args, $parameter, $tag); } } } // check plugins from plugins folder foreach ($this->smarty->plugin_search_order as $plugin_type) { if ($plugin_type == Smarty::PLUGIN_BLOCK && $this->smarty->loadPlugin('smarty_compiler_' . $tag)) { $plugin = 'smarty_compiler_' . $tag; if (is_callable($plugin)) { return $plugin($args, $this->smarty); } if (class_exists($plugin, false)) { $plugin_object = new $plugin; if (method_exists($plugin_object, 'compile')) { return $plugin_object->compile($args, $this); } } throw new SmartyException("Plugin \"{$tag}\" not callable"); } else { if ($function = $this->getPlugin($tag, $plugin_type)) { return $this->callTagCompiler('private_' . $plugin_type . '_plugin', $args, $parameter, $tag, $function); } } } } else { // compile closing tag of block function $base_tag = substr($tag, 0, -5); // check if closing tag is a registered object if (isset($this->smarty->registered_objects[$base_tag]) && isset($parameter['object_methode'])) { $methode = $parameter['object_methode']; if (in_array($methode, $this->smarty->registered_objects[$base_tag][3])) { return $this->callTagCompiler('private_object_block_function', $args, $parameter, $tag, $methode); } else { return $this->trigger_template_error ('unallowed closing tag methode "' . $methode . '" in registered object "' . $base_tag . '"', $this->lex->taglineno); } } // registered block tag ? if (isset($this->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag])) { return $this->callTagCompiler('private_registered_block', $args, $parameter, $tag); } // block plugin? if ($function = $this->getPlugin($base_tag, Smarty::PLUGIN_BLOCK)) { return $this->callTagCompiler('private_block_plugin', $args, $parameter, $tag, $function); } if ($this->smarty->loadPlugin('smarty_compiler_' . $tag)) { $plugin = 'smarty_compiler_' . $tag; if (is_callable($plugin)) { return $plugin($args, $this->smarty); } if (class_exists($plugin, false)) { $plugin_object = new $plugin; if (method_exists($plugin_object, 'compile')) { return $plugin_object->compile($args, $this); } } throw new SmartyException("Plugin \"{$tag}\" not callable"); } } $this->trigger_template_error ("unknown tag \"" . $tag . "\"", $this->lex->taglineno); } } /** * lazy loads internal compile plugin for tag and calls the compile methode * * compile objects cached for reuse. * class name format: Smarty_Internal_Compile_TagName * plugin filename format: Smarty_Internal_Tagname.php * * @param $tag string tag name * @param $args array with tag attributes * @param $param1 optional parameter * @param $param2 optional parameter * @param $param3 optional parameter * @return string compiled code */ public function callTagCompiler($tag, $args, $param1 = null, $param2 = null, $param3 = null) { // re-use object if already exists if (isset(self::$_tag_objects[$tag])) { // compile this tag return self::$_tag_objects[$tag]->compile($args, $this, $param1, $param2, $param3); } // lazy load internal compiler plugin $class_name = 'Smarty_Internal_Compile_' . $tag; if ($this->smarty->loadPlugin($class_name)) { // use plugin if found self::$_tag_objects[$tag] = new $class_name; // compile this tag return self::$_tag_objects[$tag]->compile($args, $this, $param1, $param2, $param3); } // no internal compile plugin for this tag return false; } /** * Check for plugins and return function name * * @param $pugin_name string name of plugin or function * @param $type string type of plugin * @return string call name of function */ public function getPlugin($plugin_name, $type) { $function = null; if ($this->template->caching && ($this->nocache || $this->tag_nocache)) { if (isset($this->template->required_plugins['nocache'][$plugin_name][$type])) { $function = $this->template->required_plugins['nocache'][$plugin_name][$type]['function']; } else if (isset($this->template->required_plugins['compiled'][$plugin_name][$type])) { $this->template->required_plugins['nocache'][$plugin_name][$type] = $this->template->required_plugins['compiled'][$plugin_name][$type]; $function = $this->template->required_plugins['nocache'][$plugin_name][$type]['function']; } } else { if (isset($this->template->required_plugins['compiled'][$plugin_name][$type])) { $function = $this->template->required_plugins['compiled'][$plugin_name][$type]['function']; } else if (isset($this->template->required_plugins['compiled'][$plugin_name][$type])) { $this->template->required_plugins['compiled'][$plugin_name][$type] = $this->template->required_plugins['nocache'][$plugin_name][$type]; $function = $this->template->required_plugins['compiled'][$plugin_name][$type]['function']; } } if (isset($function)) { if ($type == 'modifier') { $this->template->saved_modifier[$plugin_name] = true; } return $function; } // loop through plugin dirs and find the plugin $function = 'smarty_' . $type . '_' . $plugin_name; $found = false; foreach((array)$this->smarty->plugins_dir as $_plugin_dir) { $file = rtrim($_plugin_dir, '/\\') . DS . $type . '.' . $plugin_name . '.php'; if (file_exists($file)) { // require_once($file); $found = true; break; } } if ($found) { if ($this->template->caching && ($this->nocache || $this->tag_nocache)) { $this->template->required_plugins['nocache'][$plugin_name][$type]['file'] = $file; $this->template->required_plugins['nocache'][$plugin_name][$type]['function'] = $function; } else { $this->template->required_plugins['compiled'][$plugin_name][$type]['file'] = $file; $this->template->required_plugins['compiled'][$plugin_name][$type]['function'] = $function; } if ($type == 'modifier') { $this->template->saved_modifier[$plugin_name] = true; } return $function; } if (is_callable($function)) { // plugin function is defined in the script return $function; } return false; } /** * Inject inline code for nocache template sections * * This method gets the content of each template element from the parser. * If the content is compiled code and it should be not cached the code is injected * into the rendered output. * * @param string $content content of template element * @param boolean $tag_nocache true if the parser detected a nocache situation * @param boolean $is_code true if content is compiled code * @return string content */ public function processNocacheCode ($content, $is_code) { // If the template is not evaluated and we have a nocache section and or a nocache tag if ($is_code && !empty($content)) { // generate replacement code if ((!$this->template->resource_object->isEvaluated || $this->template->forceNocache) && $this->template->caching && !$this->suppressNocacheProcessing && ($this->nocache || $this->tag_nocache || $this->template->forceNocache == 2)) { $this->template->has_nocache_code = true; $_output = str_replace("'", "\'", $content); $_output = "<?php echo '/*%%SmartyNocache:{$this->nocache_hash}%%*/" . $_output . "/*/%%SmartyNocache:{$this->nocache_hash}%%*/';?>"; // make sure we include modifer plugins for nocache code if (isset($this->template->saved_modifier)) { foreach ($this->template->saved_modifier as $plugin_name => $dummy) { if (isset($this->template->required_plugins['compiled'][$plugin_name]['modifier'])) { $this->template->required_plugins['nocache'][$plugin_name]['modifier'] = $this->template->required_plugins['compiled'][$plugin_name]['modifier']; } } $this->template->saved_modifier = null; } } else { $_output = $content; } } else { $_output = $content; } $this->suppressNocacheProcessing = false; $this->tag_nocache = false; return $_output; } /** * display compiler error messages without dying * * If parameter $args is empty it is a parser detected syntax error. * In this case the parser is called to obtain information about expected tokens. * * If parameter $args contains a string this is used as error message * * @param $args string individual error message or null */ public function trigger_template_error($args = null, $line = null) { // get template source line which has error if (!isset($line)) { $line = $this->lex->line; } $match = preg_split("/\n/", $this->lex->data); $error_text = 'Syntax Error in template "' . $this->template->getTemplateFilepath() . '" on line ' . $line . ' "' . htmlspecialchars(trim(preg_replace('![\t\r\n]+!',' ',$match[$line-1]))) . '" '; if (isset($args)) { // individual error message $error_text .= $args; } else { // expected token from parser $error_text .= ' - Unexpected "' . $this->lex->value.'"'; if (count($this->parser->yy_get_expected_tokens($this->parser->yymajor)) <= 4 ) { foreach ($this->parser->yy_get_expected_tokens($this->parser->yymajor) as $token) { $exp_token = $this->parser->yyTokenName[$token]; if (isset($this->lex->smarty_token_names[$exp_token])) { // token type from lexer $expect[] = '"' . $this->lex->smarty_token_names[$exp_token] . '"'; } else { // otherwise internal token name $expect[] = $this->parser->yyTokenName[$token]; } } $error_text .= ', expected one of: ' . implode(' , ', $expect); } } throw new SmartyCompilerException($error_text); } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_templatecompilerbase.php
PHP
asf20
21,276
<?php /** * Smarty Internal Plugin Resource Extends * * Implements the file system as resource for Smarty which does extend a chain of template files templates * * @package Smarty * @subpackage TemplateResources * @author Uwe Tews */ /** * Smarty Internal Plugin Resource Extends */ class Smarty_Internal_Resource_Extends { public function __construct($smarty) { $this->smarty = $smarty; $this->_rdl = preg_quote($smarty->right_delimiter); $this->_ldl = preg_quote($smarty->left_delimiter); } // classes used for compiling Smarty templates from file resource public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler'; public $template_lexer_class = 'Smarty_Internal_Templatelexer'; public $template_parser_class = 'Smarty_Internal_Templateparser'; // properties public $usesCompiler = true; public $isEvaluated = false; public $allFilepaths = array(); /** * Return flag if template source is existing * * @param object $_template template object * @return boolean result */ public function isExisting($_template) { $_template->getTemplateFilepath(); foreach ($this->allFilepaths as $_filepath) { if ($_filepath === false) { return false; } } return true; } /** * Get filepath to template source * * @param object $_template template object * @return string filepath to template source file */ public function getTemplateFilepath($_template) { $sha1String = ''; $_files = explode('|', $_template->resource_name); foreach ($_files as $_file) { $_filepath = $_template->buildTemplateFilepath ($_file); if ($_filepath !== false) { if (is_object($_template->smarty->security_policy)) { $_template->smarty->security_policy->isTrustedResourceDir($_filepath); } } $sha1String .= $_filepath; $this->allFilepaths[$_file] = $_filepath; } $_template->templateUid = sha1($sha1String); return $_filepath; } /** * Get timestamp to template source * * @param object $_template template object * @return integer timestamp of template source file */ public function getTemplateTimestamp($_template) { return filemtime($_template->getTemplateFilepath()); } /** * Read template source from file * * @param object $_template template object * @return string content of template source file */ public function getTemplateSource($_template) { $this->template = $_template; $_files = array_reverse($this->allFilepaths); $_first = reset($_files); $_last = end($_files); foreach ($_files as $_file => $_filepath) { if ($_filepath === false) { throw new SmartyException("Unable to load template 'file : {$_file}'"); } // read template file if ($_filepath != $_first) { $_template->properties['file_dependency'][sha1($_filepath)] = array($_filepath, filemtime($_filepath),'file'); } $_template->template_filepath = $_filepath; $_content = file_get_contents($_filepath); if ($_filepath != $_last) { if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $_open) != preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $_close)) { $this->smarty->triggerError("unmatched {block} {/block} pairs in file '$_filepath'"); } preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE); $_result_count = count($_result[0]); $_start = 0; while ($_start < $_result_count) { $_end = 0; $_level = 1; while ($_level != 0) { $_end++; if (!strpos($_result[0][$_start + $_end][0], '/')) { $_level++; } else { $_level--; } } $_block_content = str_replace($this->smarty->left_delimiter . '$smarty.block.parent' . $this->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%', substr($_content, $_result[0][$_start][1] + strlen($_result[0][$_start][0]), $_result[0][$_start + $_end][1] - $_result[0][$_start][1] - + strlen($_result[0][$_start][0]))); Smarty_Internal_Compile_Block::saveBlockData($_block_content, $_result[0][$_start][0], $_template, $_filepath); $_start = $_start + $_end + 1; } } else { $_template->template_source = $_content; return true; } } } /** * Get filepath to compiled template * * @param object $_template template object * @return string return path to compiled template */ public function getCompiledFilepath($_template) { $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null; $_files = explode('|', $_template->resource_name); // calculate Uid if not already done if ($_template->templateUid == '') { $_template->getTemplateFilepath(); } $_filepath = $_template->templateUid; // if use_sub_dirs, break file into directories if ($_template->smarty->use_sub_dirs) { $_filepath = substr($_filepath, 0, 2) . DS . substr($_filepath, 2, 2) . DS . substr($_filepath, 4, 2) . DS . $_filepath; } $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^'; if (isset($_compile_id)) { $_filepath = $_compile_id . $_compile_dir_sep . $_filepath; } if ($_template->caching) { $_cache = '.cache'; } else { $_cache = ''; } $_compile_dir = $_template->smarty->compile_dir; if (substr($_compile_dir, -1) != DS) { $_compile_dir .= DS; } return $_compile_dir . $_filepath . '.' . $_template->resource_type . '.' . basename($_files[count($_files)-1]) . $_cache . '.php'; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_resource_extends.php
PHP
asf20
6,616
<?php /** * Smarty Internal Plugin Compile Capture * * Compiles the {capture} tag * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Capture Class */ class Smarty_Internal_Compile_Capture extends Smarty_Internal_CompileBase { // attribute definitions public $shorttag_order = array('name'); public $optional_attributes = array('name', 'assign', 'append'); /** * Compiles code for the {capture} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); $buffer = isset($_attr['name']) ? $_attr['name'] : "'default'"; $assign = isset($_attr['assign']) ? $_attr['assign'] : null; $append = isset($_attr['append']) ? $_attr['append'] : null; $this->compiler->_capture_stack[] = array($buffer, $assign, $append, $this->compiler->nocache); // maybe nocache because of nocache variables $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; $_output = "<?php ob_start(); ?>"; return $_output; } } /** * Smarty Internal Plugin Compile Captureclose Class */ class Smarty_Internal_Compile_CaptureClose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/capture} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // must endblock be nocache? if ($this->compiler->nocache) { $this->compiler->tag_nocache = true; } list($buffer, $assign, $append, $this->compiler->nocache) = array_pop($this->compiler->_capture_stack); $_output = "<?php "; if (isset($assign)) { $_output .= " \$_smarty_tpl->assign($assign, ob_get_contents());"; } if (isset($append)) { $_output .= " \$_smarty_tpl->append($append, ob_get_contents());"; } $_output .= " Smarty::\$_smarty_vars['capture'][$buffer]=ob_get_clean();?>"; return $_output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_capture.php
PHP
asf20
2,528
<?php /** * Smarty Internal Plugin Compile Ldelim * * Compiles the {ldelim} tag * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Ldelim Class */ class Smarty_Internal_Compile_Ldelim extends Smarty_Internal_CompileBase { /** * Compiles code for the {ldelim} tag * * This tag does output the left delimiter * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } // this tag does not return compiled code $this->compiler->has_code = true; return $this->compiler->smarty->left_delimiter; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_ldelim.php
PHP
asf20
1,004
<?php /** * Smarty Internal Plugin Compile Config Load * * Compiles the {config load} tag * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Config Load Class */ class Smarty_Internal_Compile_Config_Load extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array('file'); public $shorttag_order = array('file','section'); public $optional_attributes = array('section', 'scope'); /** * Compiles code for the {config_load} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } // save posible attributes $conf_file = $_attr['file']; if (isset($_attr['section'])) { $section = $_attr['section']; } else { $section = 'null'; } $scope = 'local'; // scope setup if (isset($_attr['scope'])) { $_attr['scope'] = trim($_attr['scope'], "'\""); if (in_array($_attr['scope'],array('local','parent','root','global'))) { $scope = $_attr['scope']; } else { $this->compiler->trigger_template_error('illegal value for "scope" attribute', $this->compiler->lex->taglineno); } } // create config object $_output = "<?php \$_config = new Smarty_Internal_Config($conf_file, \$_smarty_tpl->smarty, \$_smarty_tpl);"; $_output .= "\$_config->loadConfigVars($section, '$scope'); ?>"; return $_output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_config_load.php
PHP
asf20
1,995
<?php /** * Smarty Internal Plugin Compile Debug * * Compiles the {debug} tag * It opens a window the the Smarty Debugging Console * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Debug Class */ class Smarty_Internal_Compile_Debug extends Smarty_Internal_CompileBase { /** * Compiles code for the {debug} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // compile always as nocache $this->compiler->tag_nocache = true; // display debug template $_output = "<?php \$_smarty_tpl->smarty->loadPlugin('Smarty_Internal_Debug'); Smarty_Internal_Debug::display_debug(\$_smarty_tpl); ?>"; return $_output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_debug.php
PHP
asf20
1,004
<?php /** * Smarty Internal Plugin Compile Continue * * Compiles the {continue} tag * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Continue Class */ class Smarty_Internal_Compile_Continue extends Smarty_Internal_CompileBase { // attribute definitions public $optional_attributes = array('levels'); public $shorttag_order = array('levels'); /** * Compiles code for the {continue} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return string compiled code */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; $this->smarty = $compiler->smarty; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } if (isset($_attr['levels'])) { if (!is_numeric($_attr['levels'])) { $this->compiler->trigger_template_error('level attribute must be a numeric constant', $this->compiler->lex->taglineno); } $_levels = $_attr['levels']; } else { $_levels = 1; } $level_count = $_levels; $stack_count = count($compiler->_tag_stack) - 1; while ($level_count > 0 && $stack_count >= 0) { if (in_array($compiler->_tag_stack[$stack_count][0], array('for', 'foreach', 'while', 'section'))) { $level_count--; } $stack_count--; } if ($level_count != 0) { $this->compiler->trigger_template_error("cannot continue {$_levels} level(s)", $this->compiler->lex->taglineno); } // this tag does not return compiled code $this->compiler->has_code = true; return "<?php continue {$_levels}?>"; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_continue.php
PHP
asf20
2,152
<?php /** * Smarty Internal Plugin Filter * * External Smarty filter methods * * @package Smarty * @author Uwe Tews */ /** * Class for filter methods */ class Smarty_Internal_Filter { function __construct($smarty) { $this->smarty = $smarty; } /** * Registers a filter function * * @param string $type filter type * @param callback $callback */ public function registerFilter($type, $callback) { $this->smarty->registered_filters[$type][$this->_get_filter_name($callback)] = $callback; } /** * Unregisters a filter function * * @param string $type filter type * @param callback $callback */ public function unregisterFilter($type, $callback) { $name = $this->_get_filter_name($callback); if(isset($this->smarty->registered_filters[$type][$name])) { unset($this->smarty->registered_filters[$type][$name]); } } /** * Return internal filter name * * @param callback $function_name */ public function _get_filter_name($function_name) { if (is_array($function_name)) { $_class_name = (is_object($function_name[0]) ? get_class($function_name[0]) : $function_name[0]); return $_class_name . '_' . $function_name[1]; } else { return $function_name; } } /** * load a filter of specified type and name * * @param string $type filter type * @param string $name filter name * @return bool */ function loadFilter($type, $name) { $_plugin = "smarty_{$type}filter_{$name}"; $_filter_name = $_plugin; if ($this->smarty->loadPlugin($_plugin)) { if (class_exists($_plugin, false)) { $_plugin = array($_plugin, 'execute'); } if (is_callable($_plugin)) { return $this->smarty->registered_filters[$type][$_filter_name] = $_plugin; } } throw new SmartyException("{$type}filter \"{$name}\" not callable"); return false; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_filter.php
PHP
asf20
2,137
<?php /** * Smarty Internal Plugin Smarty Template Compiler Base * * This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ require_once("smarty_internal_parsetree.php"); /** * Class SmartyTemplateCompiler */ class Smarty_Internal_SmartyTemplateCompiler extends Smarty_Internal_TemplateCompilerBase { // array of vars which can be compiled in local scope public $local_var = array(); /** * Initialize compiler */ public function __construct($lexer_class, $parser_class, $smarty) { $this->smarty = $smarty; parent::__construct(); // get required plugins $this->lexer_class = $lexer_class; $this->parser_class = $parser_class; } /** * Methode to compile a Smarty template * * @param $_content template source * @return bool true if compiling succeeded, false if it failed */ protected function doCompile($_content) { /* here is where the compiling takes place. Smarty tags in the templates are replaces with PHP code, then written to compiled files. */ // init the lexer/parser to compile the template $this->lex = new $this->lexer_class($_content, $this); $this->parser = new $this->parser_class($this->lex, $this); if (isset($this->smarty->_parserdebug)) $this->parser->PrintTrace(); // get tokens from lexer and parse them while ($this->lex->yylex() && !$this->abort_and_recompile) { if (isset($this->smarty->_parserdebug)) echo "<pre>Line {$this->lex->line} Parsing {$this->parser->yyTokenName[$this->lex->token]} Token " . htmlentities($this->lex->value) . "</pre>"; $this->parser->doParse($this->lex->token, $this->lex->value); } if ($this->abort_and_recompile) { // exit here on abort return false; } // finish parsing process $this->parser->doParse(0, 0); // check for unclosed tags if (count($this->_tag_stack) > 0) { // get stacked info list($_open_tag, $_data) = array_pop($this->_tag_stack); $this->trigger_template_error("unclosed {" . $_open_tag . "} tag"); } // return compiled code // return str_replace(array("? >\n<?php","? ><?php"), array('',''), $this->parser->retvalue); return $this->parser->retvalue; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php
PHP
asf20
2,526
<?php /** * Smarty Internal Plugin Compile Function * * Compiles the {function} {/function} tags * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Function Class */ class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase { // attribute definitions public $required_attributes = array('name'); public $shorttag_order = array('name'); public $optional_attributes = array('_any'); /** * Compiles code for the {function} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return boolean true */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno); } unset($_attr['nocache']); $save = array($_attr, $compiler->parser->current_buffer, $compiler->template->has_nocache_code, $compiler->template->required_plugins); $this->_open_tag('function', $save); $_name = trim($_attr['name'], "'\""); unset($_attr['name']); $compiler->template->properties['function'][$_name]['parameter'] = array(); foreach ($_attr as $_key => $_data) { $compiler->template->properties['function'][$_name]['parameter'][$_key] = $_data; } $compiler->smarty->template_functions[$_name]['parameter'] = $compiler->template->properties['function'][$_name]['parameter']; if ($compiler->template->caching) { $output = ''; } else { $output = "<?php if (!function_exists('smarty_template_function_{$_name}')) { function smarty_template_function_{$_name}(\$_smarty_tpl,\$params) { \$saved_tpl_vars = \$_smarty_tpl->tpl_vars; foreach (\$_smarty_tpl->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(trim(\$value,'\''));}; foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>"; } // Init temporay context $compiler->template->required_plugins = array('compiled' => array(), 'nocache' => array()); $compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser); $compiler->parser->current_buffer->append_subtree(new _smarty_tag($compiler->parser, $output)); $compiler->template->has_nocache_code = false; $compiler->has_code = false; $compiler->template->properties['function'][$_name]['compiled'] = ''; return true; } } /** * Smarty Internal Plugin Compile Functionclose Class */ class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase { /** * Compiles code for the {/function} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @return boolean true */ public function compile($args, $compiler, $parameter) { $this->compiler = $compiler; $_attr = $this->_get_attributes($args); $saved_data = $this->_close_tag(array('function')); $_name = trim($saved_data[0]['name'], "'\""); // build plugin include code $plugins_string = ''; if (!empty($compiler->template->required_plugins['compiled'])) { $plugins_string = '<?php '; foreach($compiler->template->required_plugins['compiled'] as $tmp) { foreach($tmp as $data) { $plugins_string .= "if (!is_callable('{$data['function']}')) include '{$data['file']}';\n"; } } $plugins_string .= '?>'; } if (!empty($compiler->template->required_plugins['nocache'])) { $plugins_string .= "<?php echo '/*%%SmartyNocache:{$compiler->template->properties['nocache_hash']}%%*/<?php "; foreach($compiler->template->required_plugins['nocache'] as $tmp) { foreach($tmp as $data) { $plugins_string .= "if (!is_callable(\'{$data['function']}\')) include \'{$data['file']}\';\n"; } } $plugins_string .= "?>/*/%%SmartyNocache:{$compiler->template->properties['nocache_hash']}%%*/';?>\n"; } // remove last line break from function definition $last = count($compiler->parser->current_buffer->subtrees) - 1; if ($compiler->parser->current_buffer->subtrees[$last] instanceof _smarty_linebreak) { unset($compiler->parser->current_buffer->subtrees[$last]); } // if caching save template function for possible nocache call if ($compiler->template->caching) { $compiler->template->properties['function'][$_name]['compiled'] .= $plugins_string . $compiler->parser->current_buffer->to_smarty_php(); $compiler->template->properties['function'][$_name]['nocache_hash'] = $compiler->template->properties['nocache_hash']; $compiler->template->properties['function'][$_name]['has_nocache_code'] = $compiler->template->has_nocache_code; $compiler->smarty->template_functions[$_name] = $compiler->template->properties['function'][$_name]; $compiler->has_code = false; $output = true; } else { $output = $plugins_string . $compiler->parser->current_buffer->to_smarty_php() . "<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}}?>\n"; } // restore old compiler status $compiler->parser->current_buffer = $saved_data[1]; $compiler->template->has_nocache_code = $compiler->template->has_nocache_code | $saved_data[2]; $compiler->template->required_plugins = $saved_data[3]; return $output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_function.php
PHP
asf20
6,137
<?php /** * Smarty Internal Plugin Compile Include * * Compiles the {include} tag * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Include Class */ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase { // caching mode to create nocache code but no cache file const CACHING_NOCACHE_CODE = 9999; // attribute definitions public $required_attributes = array('file'); public $shorttag_order = array('file'); public $option_flags = array('nocache','inline','caching'); public $optional_attributes = array('_any'); /** * Compiles code for the {include} tag * * @param array $args array with attributes from parser * @param object $compiler compiler object * @return string compiled code */ public function compile($args, $compiler) { $this->compiler = $compiler; // check and get attributes $_attr = $this->_get_attributes($args); // save posible attributes $include_file = $_attr['file']; $has_compiled_template = false; if ($compiler->smarty->merge_compiled_includes || $_attr['inline'] === true) { // check if compiled code can be merged (contains no variable part) if (!$compiler->has_variable_string && (substr_count($include_file, '"') == 2 or substr_count($include_file, "'") == 2) and substr_count($include_file, '(') == 0) { $tmp = null; eval("\$tmp = $include_file;"); if ($this->compiler->template->template_resource != $tmp) { $tpl = new $compiler->smarty->template_class ($tmp, $compiler->smarty, $compiler->template, $compiler->template->cache_id, $compiler->template->compile_id); // suppress writing of compiled file $tpl->write_compiled_code = false; if ($this->compiler->template->caching) { // needs code for cached page but no cache file $tpl->caching = self::CACHING_NOCACHE_CODE; } // if ($this->compiler->template->mustCompile) { // make sure whole chain gest compiled $tpl->mustCompile = true; // } if ($tpl->resource_object->usesCompiler && $tpl->isExisting()) { // get compiled code $compiled_tpl = $tpl->getCompiledTemplate(); // merge compiled code for {function} tags $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $tpl->properties['function']); // merge filedependency by evaluating header code preg_match_all("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", $compiled_tpl, $result); $saved_has_nocache_code = $compiler->template->has_nocache_code; $saved_nocache_hash = $compiler->template->properties['nocache_hash']; $_smarty_tpl = $compiler->template; eval($result[2][0]); $compiler->template->properties['nocache_hash'] = $saved_nocache_hash; $compiler->template->has_nocache_code = $saved_has_nocache_code; // remove header code $compiled_tpl = preg_replace("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", '', $compiled_tpl); if ($tpl->has_nocache_code) { // replace nocache_hash $compiled_tpl = preg_replace("/{$tpl->properties['nocache_hash']}/", $compiler->template->properties['nocache_hash'], $compiled_tpl); $compiler->template->has_nocache_code = true; } $has_compiled_template = true; } } } } if (isset($_attr['assign'])) { // output will be stored in a smarty variable instead of beind displayed $_assign = $_attr['assign']; } $_parent_scope = Smarty::SCOPE_LOCAL; if (isset($_attr['scope'])) { $_attr['scope'] = trim($_attr['scope'], "'\""); if ($_attr['scope'] == 'parent') { $_parent_scope = Smarty::SCOPE_PARENT; } elseif ($_attr['scope'] == 'root') { $_parent_scope = Smarty::SCOPE_ROOT; } elseif ($_attr['scope'] == 'global') { $_parent_scope = Smarty::SCOPE_GLOBAL; } } $_caching = 'null'; if ($this->compiler->nocache || $this->compiler->tag_nocache) { $_caching = Smarty::CACHING_OFF; } // default for included templates if ($this->compiler->template->caching && !$this->compiler->nocache && !$this->compiler->tag_nocache) { $_caching = self::CACHING_NOCACHE_CODE; } /* * if the {include} tag provides individual parameter for caching * it will not be included into the common cache file and treated like * a nocache section */ if (isset($_attr['cache_lifetime'])) { $_cache_lifetime = $_attr['cache_lifetime']; $this->compiler->tag_nocache = true; $_caching = Smarty::CACHING_LIFETIME_CURRENT; } else { $_cache_lifetime = 'null'; } if (isset($_attr['cache_id'])) { $_cache_id = $_attr['cache_id']; $this->compiler->tag_nocache = true; $_caching = Smarty::CACHING_LIFETIME_CURRENT; } else { $_cache_id = '$_smarty_tpl->cache_id'; } if (isset($_attr['compile_id'])) { $_compile_id = $_attr['compile_id']; } else { $_compile_id = '$_smarty_tpl->compile_id'; } if ($_attr['caching'] === true) { $_caching = Smarty::CACHING_LIFETIME_CURRENT; } if ($_attr['nocache'] === true) { $this->compiler->tag_nocache = true; $_caching = Smarty::CACHING_OFF; } // create template object $_output = "<?php \$_template = new {$compiler->smarty->template_class}($include_file, \$_smarty_tpl->smarty, \$_smarty_tpl, $_cache_id, $_compile_id, $_caching, $_cache_lifetime);\n"; // delete {include} standard attributes unset($_attr['file'], $_attr['assign'], $_attr['cache_id'], $_attr['compile_id'], $_attr['cache_lifetime'], $_attr['nocache'], $_attr['caching'], $_attr['scope'], $_attr['inline']); // remaining attributes must be assigned as smarty variable if (!empty($_attr)) { if ($_parent_scope == Smarty::SCOPE_LOCAL) { // create variables foreach ($_attr as $_key => $_value) { $_output .= "\$_template->assign('$_key',$_value);"; } } else { $this->compiler->trigger_template_error('variable passing not allowed in parent/global scope', $this->compiler->lex->taglineno); } } // was there an assign attribute if (isset($_assign)) { $_output .= "\$_smarty_tpl->assign($_assign,\$_template->getRenderedTemplate());?>"; } else { if ($has_compiled_template && !($compiler->template->caching && ($this->compiler->tag_nocache || $this->compiler->nocache))) { $_output .= "\$_template->properties['nocache_hash'] = '{$compiler->template->properties['nocache_hash']}';\n"; $_output .= "\$_tpl_stack[] = \$_smarty_tpl; \$_smarty_tpl = \$_template;?>\n"; $_output .= $compiled_tpl; $_output .= "<?php \$_smarty_tpl->updateParentVariables($_parent_scope);?>\n"; $_output .= "<?php /* End of included template \"" . $tpl->getTemplateFilepath() . "\" */ ?>\n"; $_output .= "<?php \$_smarty_tpl = array_pop(\$_tpl_stack);?>"; } else { $_output .= " echo \$_template->getRenderedTemplate();?>"; $_output .= "<?php \$_template->updateParentVariables($_parent_scope);?>"; } } $_output .= "<?php unset(\$_template);?>"; return $_output; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_include.php
PHP
asf20
8,609
<?php /** * Smarty Internal Plugin Compile Block Plugin * * Compiles code for the execution of block plugin * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Block Plugin Class */ class Smarty_Internal_Compile_Private_Block_Plugin extends Smarty_Internal_CompileBase { // attribute definitions public $optional_attributes = array('_any'); /** * Compiles code for the execution of block plugin * * @param array $args array with attributes from parser * @param object $compiler compiler object * @param array $parameter array with compilation parameter * @param string $tag name of block plugin * @param string $function PHP function name * @return string compiled code */ public function compile($args, $compiler, $parameter, $tag, $function) { $this->compiler = $compiler; if (strlen($tag) < 6 || substr($tag, -5) != 'close') { // opening tag of block plugin // check and get attributes $_attr = $this->_get_attributes($args); if ($_attr['nocache'] === true) { $this->compiler->tag_nocache = true; } unset($_attr['nocache']); // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { if (is_int($_key)) { $_paramsArray[] = "$_key=>$_value"; } else { $_paramsArray[] = "'$_key'=>$_value"; } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; $this->_open_tag($tag, array($_params, $this->compiler->nocache)); // maybe nocache because of nocache variables or nocache plugin $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; // compile code $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>"; } else { // must endblock be nocache? if ($this->compiler->nocache) { $this->compiler->tag_nocache = true; } // closing tag of block plugin, restore nocache list($_params, $this->compiler->nocache) = $this->_close_tag(substr($tag, 0, -5)); // This tag does create output $this->compiler->has_output = true; // compile code if (!isset($parameter['modifier_list'])) { $mod_pre = $mod_post =''; } else { $mod_pre = ' ob_start(); '; $mod_post = 'echo '.$this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';'; } $output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo {$function}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post." } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>"; } return $output . "\n"; } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php
PHP
asf20
3,264
<?php /** * Smarty Internal Plugin Data * * This file contains the basic classes and methodes for template and variable creation * * @package Smarty * @subpackage Templates * @author Uwe Tews */ /** * Base class with template and variable methodes */ class Smarty_Internal_Data { // class used for templates public $template_class = 'Smarty_Internal_Template'; /** * assigns a Smarty variable * * @param array $ |string $tpl_var the template variable name(s) * @param mixed $value the value to assign * @param boolean $nocache if true any output of this variable will be not cached * @param boolean $scope the scope the variable will have (local,parent or root) */ public function assign($tpl_var, $value = null, $nocache = false) { if (is_array($tpl_var)) { foreach ($tpl_var as $_key => $_val) { if ($_key != '') { $this->tpl_vars[$_key] = new Smarty_variable($_val, $nocache); } } } else { if ($tpl_var != '') { $this->tpl_vars[$tpl_var] = new Smarty_variable($value, $nocache); } } } /** * assigns a global Smarty variable * * @param string $varname the global variable name * @param mixed $value the value to assign * @param boolean $nocache if true any output of this variable will be not cached */ public function assignGlobal($varname, $value = null, $nocache = false) { if ($varname != '') { Smarty::$global_tpl_vars[$varname] = new Smarty_variable($value, $nocache); } } /** * assigns values to template variables by reference * * @param string $tpl_var the template variable name * @param mixed $ &$value the referenced value to assign * @param boolean $nocache if true any output of this variable will be not cached */ public function assignByRef($tpl_var, &$value, $nocache = false) { if ($tpl_var != '') { $this->tpl_vars[$tpl_var] = new Smarty_variable(null, $nocache); $this->tpl_vars[$tpl_var]->value = &$value; } } /** * wrapper function for Smarty 2 BC * * @param string $tpl_var the template variable name * @param mixed $ &$value the referenced value to assign */ public function assign_by_ref($tpl_var, &$value) { if($this->smarty->deprecation_notices) trigger_error("function call 'assign_by_ref' is unknown or deprecated, use 'assignByRef'", E_USER_NOTICE); $this->assignByRef($tpl_var, $value); } /** * appends values to template variables * * @param array $ |string $tpl_var the template variable name(s) * @param mixed $value the value to append * @param boolean $merge flag if array elements shall be merged * @param boolean $nocache if true any output of this variable will be not cached */ public function append($tpl_var, $value = null, $merge = false, $nocache = false) { if (is_array($tpl_var)) { // $tpl_var is an array, ignore $value foreach ($tpl_var as $_key => $_val) { if ($_key != '') { if (!isset($this->tpl_vars[$_key])) { $tpl_var_inst = $this->getVariable($_key, null, true, false); if ($tpl_var_inst instanceof Undefined_Smarty_Variable) { $this->tpl_vars[$_key] = new Smarty_variable(null, $nocache); } else { $this->tpl_vars[$_key] = clone $tpl_var_inst; } } if (!(is_array($this->tpl_vars[$_key]->value) || $this->tpl_vars[$_key]->value instanceof ArrayAccess)) { settype($this->tpl_vars[$_key]->value, 'array'); } if ($merge && is_array($_val)) { foreach($_val as $_mkey => $_mval) { $this->tpl_vars[$_key]->value[$_mkey] = $_mval; } } else { $this->tpl_vars[$_key]->value[] = $_val; } } } } else { if ($tpl_var != '' && isset($value)) { if (!isset($this->tpl_vars[$tpl_var])) { $tpl_var_inst = $this->getVariable($tpl_var, null, true, false); if ($tpl_var_inst instanceof Undefined_Smarty_Variable) { $this->tpl_vars[$tpl_var] = new Smarty_variable(null, $nocache); } else { $this->tpl_vars[$tpl_var] = clone $tpl_var_inst; } } if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) { settype($this->tpl_vars[$tpl_var]->value, 'array'); } if ($merge && is_array($value)) { foreach($value as $_mkey => $_mval) { $this->tpl_vars[$tpl_var]->value[$_mkey] = $_mval; } } else { $this->tpl_vars[$tpl_var]->value[] = $value; } } } } /** * appends values to template variables by reference * * @param string $tpl_var the template variable name * @param mixed $ &$value the referenced value to append * @param boolean $merge flag if array elements shall be merged */ public function appendByRef($tpl_var, &$value, $merge = false) { if ($tpl_var != '' && isset($value)) { if (!isset($this->tpl_vars[$tpl_var])) { $this->tpl_vars[$tpl_var] = new Smarty_variable(); } if (!@is_array($this->tpl_vars[$tpl_var]->value)) { settype($this->tpl_vars[$tpl_var]->value, 'array'); } if ($merge && is_array($value)) { foreach($value as $_key => $_val) { $this->tpl_vars[$tpl_var]->value[$_key] = &$value[$_key]; } } else { $this->tpl_vars[$tpl_var]->value[] = &$value; } } } /** * * @param string $tpl_var the template variable name * @param mixed $ &$value the referenced value to append * @param boolean $merge flag if array elements shall be merged */ public function append_by_ref($tpl_var, &$value, $merge = false) { if($this->smarty->deprecation_notices) trigger_error("function call 'append_by_ref' is unknown or deprecated, use 'appendByRef'", E_USER_NOTICE); $this->appendByRef($tpl_var, $value, $merge); } /** * Returns a single or all template variables * * @param string $varname variable name or null * @return string variable value or or array of variables */ function getTemplateVars($varname = null, $_ptr = null, $search_parents = true) { if (isset($varname)) { $_var = $this->getVariable($varname, $_ptr, $search_parents, false); if (is_object($_var)) { return $_var->value; } else { return null; } } else { $_result = array(); if ($_ptr === null) { $_ptr = $this; } while ($_ptr !== null) { foreach ($_ptr->tpl_vars AS $key => $var) { $_result[$key] = $var->value; } // not found, try at parent if ($search_parents) { $_ptr = $_ptr->parent; } else { $_ptr = null; } } if ($search_parents && isset(Smarty::$global_tpl_vars)) { foreach (Smarty::$global_tpl_vars AS $key => $var) { $_result[$key] = $var->value; } } return $_result; } } /** * clear the given assigned template variable. * * @param string $ |array $tpl_var the template variable(s) to clear */ public function clearAssign($tpl_var) { if (is_array($tpl_var)) { foreach ($tpl_var as $curr_var) { unset($this->tpl_vars[$curr_var]); } } else { unset($this->tpl_vars[$tpl_var]); } } /** * clear all the assigned template variables. */ public function clearAllAssign() { $this->tpl_vars = array(); } /** * load a config file, optionally load just selected sections * * @param string $config_file filename * @param mixed $sections array of section names, single section or null */ public function configLoad($config_file, $sections = null) { // load Config class $config = new Smarty_Internal_Config($config_file, $this->smarty, $this); $config->loadConfigVars($sections); } /** * gets the object of a Smarty variable * * @param string $variable the name of the Smarty variable * @param object $_ptr optional pointer to data object * @param boolean $search_parents search also in parent data * @return object the object of the variable */ public function getVariable($_variable, $_ptr = null, $search_parents = true, $error_enable = true) { if ($_ptr === null) { $_ptr = $this; } while ($_ptr !== null) { if (isset($_ptr->tpl_vars[$_variable])) { // found it, return it return $_ptr->tpl_vars[$_variable]; } // not found, try at parent if ($search_parents) { $_ptr = $_ptr->parent; } else { $_ptr = null; } } if (isset(Smarty::$global_tpl_vars[$_variable])) { // found it, return it return Smarty::$global_tpl_vars[$_variable]; } if ($this->smarty->error_unassigned && $error_enable) { throw new SmartyException('Undefined Smarty variable "' . $_variable . '"'); } else { if ($error_enable) { // force a notice $x = $$_variable; } return new Undefined_Smarty_Variable; } } /** * gets a config variable * * @param string $variable the name of the config variable * @return mixed the value of the config variable */ public function getConfigVariable($_variable) { $_ptr = $this; while ($_ptr !== null) { if (isset($_ptr->config_vars[$_variable])) { // found it, return it return $_ptr->config_vars[$_variable]; } // not found, try at parent $_ptr = $_ptr->parent; } if ($this->smarty->error_unassigned) { throw new SmartyException('Undefined config variable "' . $_variable . '"'); } else { // force a notice $x = $$_variable; return null; } } /** * gets a stream variable * * @param string $variable the stream of the variable * @return mixed the value of the stream variable */ public function getStreamVariable($variable) { $_result = ''; if ($fp = fopen($variable, 'r+')) { while (!feof($fp)) { $_result .= fgets($fp); } fclose($fp); return $_result; } if ($this->smarty->error_unassigned) { throw new SmartyException('Undefined stream variable "' . $variable . '"'); } else { return null; } } /** * Returns a single or all config variables * * @param string $varname variable name or null * @return string variable value or or array of variables */ function getConfigVars($varname = null, $search_parents = true) { // var_dump($this); $_ptr = $this; $var_array = array(); while ($_ptr !== null) { if (isset($varname)) { if (isset($_ptr->config_vars[$varname])) { return $_ptr->config_vars[$varname]; } } else { $var_array = array_merge($_ptr->config_vars, $var_array); } // not found, try at parent if ($search_parents) { $_ptr = $_ptr->parent; } else { $_ptr = null; } } if (isset($varname)) { return ''; } else { return $var_array; } } /** * Deassigns a single or all config variables * * @param string $varname variable name or null */ function clearConfig($varname = null) { if (isset($varname)) { unset($this->config_vars[$varname]); return; } else { $this->config_vars = array(); return; } } } /** * class for the Smarty data object * * The Smarty data object will hold Smarty variables in the current scope * * @param object $parent tpl_vars next higher level of Smarty variables */ class Smarty_Data extends Smarty_Internal_Data { // array of variable objects public $tpl_vars = array(); // back pointer to parent object public $parent = null; // config vars public $config_vars = array(); // Smarty object public $smarty = null; /** * create Smarty data object */ public function __construct ($_parent = null, $smarty = null) { $this->smarty = $smarty; if (is_object($_parent)) { // when object set up back pointer $this->parent = $_parent; } elseif (is_array($_parent)) { // set up variable values foreach ($_parent as $_key => $_val) { $this->tpl_vars[$_key] = new Smarty_variable($_val); } } elseif ($_parent != null) { throw new SmartyException("Wrong type for template variables"); } } } /** * class for the Smarty variable object * * This class defines the Smarty variable object */ class Smarty_Variable { // template variable public $value; public $nocache; public $scope; /** * create Smarty variable object * * @param mixed $value the value to assign * @param boolean $nocache if true any output of this variable will be not cached * @param boolean $scope the scope the variable will have (local,parent or root) */ public function __construct ($value = null, $nocache = false, $scope = Smarty::SCOPE_LOCAL) { $this->value = $value; $this->nocache = $nocache; $this->scope = $scope; } public function __toString () { return $this->value; } } /** * class for undefined variable object * * This class defines an object for undefined variable handling */ class Undefined_Smarty_Variable { // return always false public function __get ($name) { if ($name == 'nocache') { return false; } else { return null; } } } ?>
0a1b2c3d4e5
trunk/BloumGenerator/include/php/smarty/sysplugins/smarty_internal_data.php
PHP
asf20
15,534