Files
smarty/libs/sysplugins/internal.templateparser.php

2609 lines
125 KiB
PHP
Raw Normal View History

<?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
*/
/**
* This can be used to store both the string representation of
* a token, and any useful meta-data associated with the token.
*
* meta-data should be stored as an array
*/
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]);
}
}
/** The following structure represents a single element of the
* parser's stack. Information stored includes:
*
* + The state number for the parser at this level of the stack.
*
* + The value of the token stored at this level of the stack.
* (In other words, the "major" token.)
*
* + The semantic value stored at this level of the stack. This is
* the information used by the action routines in the grammar.
* It is sometimes called the "minor" token.
*/
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 */
};
// code external to the class is included here
// declare_class is output here
#line 12 "internal.templateparser.y"
class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php"
{
/* First off, code is included which follows the "include_class" declaration
** in the input file. */
#line 14 "internal.templateparser.y"
// 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->cacher = $this->template->cacher_object;
$this->nocache = false;
$this->prefix_code = array();
$this->prefix_number = 0;
}
public static function &instance($new_instance = null)
{
static $instance = null;
if (isset($new_instance) && is_object($new_instance))
$instance = $new_instance;
return $instance;
}
#line 142 "internal.templateparser.php"
/* Next is all token values, as class constants
*/
/*
** These constants (all generated automatically by the parser generator)
** specify the various kinds of tokens (terminals) that the parser
** understands.
**
** Each symbol here is a terminal symbol in the grammar.
*/
const TP_OTHER = 1;
const TP_XML = 2;
const TP_PHP = 3;
const TP_SHORTTAGSTART = 4;
const TP_SHORTTAGEND = 5;
const TP_PHPSTART = 6;
const TP_PHPEND = 7;
const TP_COMMENTEND = 8;
const TP_COMMENTSTART = 9;
const TP_SINGLEQUOTE = 10;
const TP_LITERALSTART = 11;
const TP_LITERALEND = 12;
const TP_LDELIMTAG = 13;
const TP_RDELIMTAG = 14;
const TP_LDELSLASH = 15;
const TP_LDEL = 16;
const TP_RDEL = 17;
const TP_ISIN = 18;
const TP_AS = 19;
const TP_BOOLEAN = 20;
const TP_NULL = 21;
const TP_IDENTITY = 22;
const TP_NONEIDENTITY = 23;
const TP_EQUALS = 24;
const TP_NOTEQUALS = 25;
const TP_GREATEREQUAL = 26;
const TP_LESSEQUAL = 27;
const TP_GREATERTHAN = 28;
const TP_LESSTHAN = 29;
const TP_NOT = 30;
const TP_LAND = 31;
const TP_LOR = 32;
const TP_LXOR = 33;
const TP_ISODDBY = 34;
const TP_ISNOTODDBY = 35;
const TP_ISODD = 36;
const TP_ISNOTODD = 37;
const TP_ISEVENBY = 38;
const TP_ISNOTEVENBY = 39;
const TP_ISEVEN = 40;
const TP_ISNOTEVEN = 41;
const TP_ISDIVBY = 42;
const TP_ISNOTDIVBY = 43;
const TP_OPENP = 44;
const TP_CLOSEP = 45;
const TP_OPENB = 46;
const TP_CLOSEB = 47;
const TP_PTR = 48;
const TP_APTR = 49;
const TP_EQUAL = 50;
const TP_INTEGER = 51;
const TP_INCDEC = 52;
const TP_UNIMATH = 53;
const TP_MATH = 54;
const TP_DOLLAR = 55;
const TP_COLON = 56;
const TP_DOUBLECOLON = 57;
const TP_SEMICOLON = 58;
const TP_AT = 59;
const TP_HATCH = 60;
const TP_QUOTE = 61;
const TP_BACKTICK = 62;
const TP_VERT = 63;
const TP_DOT = 64;
const TP_COMMA = 65;
const TP_ANDSYM = 66;
const TP_ID = 67;
const TP_SPACE = 68;
const YY_NO_ACTION = 438;
const YY_ACCEPT_ACTION = 437;
const YY_ERROR_ACTION = 436;
/* Next are that tables used to determine what action to take based on the
** current state and lookahead token. These tables are used to implement
** functions that take a state number and lookahead value and return an
** action integer.
**
** Suppose the action integer is N. Then the action is determined as
** follows
**
** 0 <= N < self::YYNSTATE Shift N. That is,
** push the lookahead
** token onto the stack
** and goto state N.
**
** self::YYNSTATE <= N < self::YYNSTATE+self::YYNRULE Reduce by rule N-YYNSTATE.
**
** N == self::YYNSTATE+self::YYNRULE A syntax error has occurred.
**
** N == self::YYNSTATE+self::YYNRULE+1 The parser accepts its
** input. (and concludes parsing)
**
** N == self::YYNSTATE+self::YYNRULE+2 No such action. Denotes unused
** slots in the yy_action[] table.
**
** The action table is constructed as a single large static array $yy_action.
** Given state S and lookahead X, the action is computed as
**
** self::$yy_action[self::$yy_shift_ofst[S] + X ]
**
** If the index value self::$yy_shift_ofst[S]+X is out of range or if the value
** self::$yy_lookahead[self::$yy_shift_ofst[S]+X] is not equal to X or if
** self::$yy_shift_ofst[S] is equal to self::YY_SHIFT_USE_DFLT, it means that
** the action is not in the table and that self::$yy_default[S] should be used instead.
**
** The formula above is for computing the action when the lookahead is
** a terminal symbol. If the lookahead is a non-terminal (as occurs after
** a reduce action) then the static $yy_reduce_ofst array is used in place of
** the static $yy_shift_ofst array and self::YY_REDUCE_USE_DFLT is used in place of
** self::YY_SHIFT_USE_DFLT.
**
** The following are the tables generated in this section:
**
** self::$yy_action A single table containing all actions.
** self::$yy_lookahead A table containing the lookahead for each entry in
** yy_action. Used to detect hash collisions.
** self::$yy_shift_ofst For each state, the offset into self::$yy_action for
** shifting terminals.
** self::$yy_reduce_ofst For each state, the offset into self::$yy_action for
** shifting non-terminals after a reduce.
** self::$yy_default Default action for each state.
*/
const YY_SZ_ACTTAB = 1086;
static public $yy_action = array(
/* 0 */ 57, 202, 115, 57, 22, 163, 27, 223, 163, 27,
/* 10 */ 234, 236, 183, 234, 236, 31, 203, 34, 182, 176,
/* 20 */ 4, 270, 273, 266, 256, 258, 276, 255, 257, 67,
/* 30 */ 66, 37, 154, 41, 10, 45, 12, 25, 26, 12,
/* 40 */ 198, 143, 156, 35, 143, 58, 35, 158, 66, 202,
/* 50 */ 45, 39, 164, 45, 39, 269, 124, 141, 240, 199,
/* 60 */ 133, 233, 142, 31, 203, 38, 239, 231, 230, 9,
/* 70 */ 8, 252, 251, 6, 11, 244, 243, 2, 5, 185,
/* 80 */ 196, 41, 196, 7, 250, 437, 50, 208, 205, 142,
/* 90 */ 118, 13, 190, 148, 163, 18, 163, 18, 239, 231,
/* 100 */ 230, 9, 8, 252, 251, 6, 11, 244, 243, 2,
/* 110 */ 5, 264, 89, 32, 238, 22, 259, 57, 22, 260,
/* 120 */ 57, 22, 163, 27, 202, 163, 27, 234, 236, 241,
/* 130 */ 234, 236, 142, 66, 139, 212, 139, 4, 45, 203,
/* 140 */ 226, 42, 195, 42, 187, 165, 204, 247, 174, 113,
/* 150 */ 129, 10, 66, 12, 25, 26, 12, 45, 143, 268,
/* 160 */ 35, 143, 62, 35, 173, 58, 269, 45, 39, 269,
/* 170 */ 45, 39, 269, 112, 134, 142, 271, 40, 22, 192,
/* 180 */ 164, 160, 71, 239, 231, 230, 9, 8, 252, 251,
/* 190 */ 6, 11, 244, 243, 2, 5, 57, 227, 164, 57,
/* 200 */ 17, 163, 27, 180, 163, 27, 234, 236, 188, 234,
/* 210 */ 236, 98, 30, 109, 272, 239, 231, 230, 9, 8,
/* 220 */ 252, 251, 6, 11, 244, 243, 2, 5, 111, 269,
/* 230 */ 25, 21, 12, 25, 224, 12, 202, 143, 268, 35,
/* 240 */ 143, 58, 35, 201, 58, 191, 45, 39, 72, 45,
/* 250 */ 39, 203, 57, 141, 142, 57, 40, 163, 27, 15,
/* 260 */ 163, 27, 234, 236, 127, 234, 236, 202, 17, 233,
/* 270 */ 182, 176, 167, 38, 57, 20, 249, 159, 71, 163,
/* 280 */ 27, 109, 203, 37, 234, 236, 25, 142, 12, 25,
/* 290 */ 101, 12, 1, 143, 46, 35, 143, 66, 35, 180,
/* 300 */ 66, 17, 45, 39, 197, 45, 39, 19, 25, 137,
/* 310 */ 12, 142, 136, 153, 109, 143, 164, 35, 23, 58,
/* 320 */ 182, 176, 55, 53, 45, 39, 178, 271, 275, 71,
/* 330 */ 52, 135, 142, 37, 75, 151, 138, 189, 193, 144,
/* 340 */ 145, 57, 94, 103, 237, 29, 163, 27, 66, 245,
/* 350 */ 180, 234, 236, 45, 150, 228, 22, 207, 210, 222,
/* 360 */ 47, 209, 64, 131, 71, 69, 155, 63, 57, 213,
/* 370 */ 221, 163, 27, 163, 27, 25, 19, 12, 234, 236,
/* 380 */ 17, 211, 143, 172, 66, 180, 66, 114, 128, 45,
/* 390 */ 130, 45, 39, 109, 110, 129, 107, 268, 137, 158,
/* 400 */ 164, 186, 25, 38, 268, 166, 71, 269, 178, 143,
/* 410 */ 275, 71, 52, 66, 215, 17, 80, 248, 45, 39,
/* 420 */ 28, 279, 175, 149, 94, 137, 237, 180, 109, 132,
/* 430 */ 261, 242, 180, 87, 73, 34, 142, 228, 263, 270,
/* 440 */ 273, 266, 256, 258, 276, 255, 257, 178, 220, 275,
/* 450 */ 71, 52, 164, 22, 96, 77, 194, 71, 22, 92,
/* 460 */ 279, 175, 238, 94, 268, 237, 14, 204, 164, 206,
/* 470 */ 205, 180, 91, 54, 189, 142, 228, 278, 180, 202,
/* 480 */ 142, 164, 178, 104, 275, 71, 52, 189, 189, 164,
/* 490 */ 81, 142, 197, 268, 203, 279, 175, 129, 94, 178,
/* 500 */ 237, 275, 71, 52, 269, 16, 180, 78, 88, 169,
/* 510 */ 33, 228, 279, 175, 129, 94, 178, 237, 275, 71,
/* 520 */ 52, 24, 164, 180, 83, 43, 281, 93, 228, 279,
/* 530 */ 175, 56, 94, 147, 237, 178, 123, 275, 71, 52,
/* 540 */ 180, 233, 204, 79, 214, 228, 189, 122, 279, 175,
/* 550 */ 90, 94, 233, 237, 178, 162, 275, 71, 52, 180,
/* 560 */ 232, 204, 76, 267, 228, 189, 168, 279, 175, 126,
/* 570 */ 94, 254, 237, 178, 246, 275, 71, 52, 180, 68,
/* 580 */ 146, 82, 277, 228, 253, 216, 279, 175, 60, 94,
/* 590 */ 178, 237, 275, 71, 52, 219, 59, 180, 84, 181,
/* 600 */ 170, 152, 228, 279, 175, 235, 94, 15, 237, 178,
/* 610 */ 177, 275, 71, 51, 180, 97, 200, 74, 36, 228,
/* 620 */ 271, 199, 279, 175, 164, 94, 3, 237, 178, 61,
/* 630 */ 275, 71, 100, 180, 274, 70, 218, 33, 228, 265,
/* 640 */ 265, 279, 175, 265, 94, 265, 237, 265, 265, 265,
/* 650 */ 278, 178, 180, 275, 71, 102, 265, 265, 265, 265,
/* 660 */ 140, 225, 265, 265, 279, 175, 265, 94, 265, 237,
/* 670 */ 265, 265, 157, 265, 265, 180, 178, 265, 275, 71,
/* 680 */ 102, 265, 265, 265, 265, 265, 265, 265, 265, 279,
/* 690 */ 175, 265, 94, 265, 237, 265, 265, 179, 265, 178,
/* 700 */ 180, 275, 71, 100, 265, 265, 178, 265, 275, 71,
/* 710 */ 102, 265, 279, 175, 265, 94, 265, 237, 265, 279,
/* 720 */ 175, 265, 94, 180, 237, 265, 265, 161, 265, 265,
/* 730 */ 180, 265, 217, 265, 178, 265, 275, 71, 102, 265,
/* 740 */ 265, 265, 265, 265, 265, 265, 265, 279, 175, 265,
/* 750 */ 94, 265, 237, 265, 265, 171, 265, 265, 180, 265,
/* 760 */ 265, 265, 265, 178, 265, 275, 71, 116, 265, 265,
/* 770 */ 265, 265, 265, 265, 265, 265, 279, 175, 265, 94,
/* 780 */ 178, 237, 275, 71, 121, 265, 265, 180, 265, 265,
/* 790 */ 265, 265, 265, 279, 175, 265, 94, 178, 237, 275,
/* 800 */ 71, 119, 265, 265, 180, 265, 265, 265, 265, 265,
/* 810 */ 279, 175, 265, 94, 265, 237, 265, 265, 265, 265,
/* 820 */ 265, 180, 178, 265, 275, 71, 125, 265, 265, 178,
/* 830 */ 265, 275, 71, 106, 265, 279, 175, 265, 94, 265,
/* 840 */ 237, 265, 279, 175, 265, 94, 180, 237, 265, 265,
/* 850 */ 265, 265, 265, 180, 178, 265, 275, 71, 48, 265,
/* 860 */ 265, 178, 265, 275, 71, 105, 265, 279, 175, 265,
/* 870 */ 94, 265, 237, 265, 279, 175, 265, 94, 180, 237,
/* 880 */ 265, 265, 265, 265, 178, 180, 275, 71, 108, 265,
/* 890 */ 265, 265, 265, 265, 265, 265, 265, 279, 175, 265,
/* 900 */ 94, 265, 237, 178, 265, 275, 71, 99, 180, 265,
/* 910 */ 178, 265, 275, 71, 120, 265, 279, 175, 265, 94,
/* 920 */ 265, 237, 265, 279, 175, 265, 94, 180, 237, 265,
/* 930 */ 265, 265, 265, 265, 180, 178, 265, 275, 65, 49,
/* 940 */ 265, 265, 178, 265, 275, 65, 44, 265, 279, 175,
/* 950 */ 265, 94, 265, 237, 265, 279, 175, 265, 94, 180,
/* 960 */ 237, 178, 265, 275, 71, 117, 180, 265, 265, 265,
/* 970 */ 265, 265, 265, 265, 279, 175, 265, 94, 265, 237,
/* 980 */ 178, 265, 275, 71, 265, 180, 265, 178, 265, 275,
/* 990 */ 71, 265, 265, 279, 175, 265, 85, 265, 237, 265,
/* 1000 */ 279, 175, 265, 95, 180, 237, 265, 265, 265, 265,
/* 1010 */ 265, 180, 178, 265, 275, 71, 265, 265, 265, 178,
/* 1020 */ 265, 275, 71, 265, 265, 279, 175, 265, 86, 265,
/* 1030 */ 237, 265, 265, 262, 265, 265, 180, 237, 178, 265,
/* 1040 */ 275, 71, 265, 180, 265, 265, 265, 265, 265, 265,
/* 1050 */ 265, 184, 265, 265, 265, 265, 237, 178, 265, 275,
/* 1060 */ 71, 178, 180, 275, 71, 265, 265, 265, 265, 265,
/* 1070 */ 229, 265, 265, 265, 280, 237, 265, 265, 265, 237,
/* 1080 */ 265, 180, 265, 265, 265, 180,
);
static public $yy_lookahead = array(
/* 0 */ 10, 1, 80, 10, 16, 15, 16, 7, 15, 16,
/* 10 */ 20, 21, 47, 20, 21, 46, 16, 18, 53, 54,
/* 20 */ 30, 22, 23, 24, 25, 26, 27, 28, 29, 67,
/* 30 */ 55, 66, 48, 64, 44, 60, 46, 44, 50, 46,
/* 40 */ 47, 51, 67, 53, 51, 55, 53, 59, 55, 1,
/* 50 */ 60, 61, 68, 60, 61, 67, 95, 67, 10, 98,
/* 60 */ 67, 100, 63, 46, 16, 48, 31, 32, 33, 34,
/* 70 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 1,
/* 80 */ 1, 64, 1, 58, 17, 70, 71, 72, 73, 63,
/* 90 */ 65, 65, 62, 58, 15, 16, 15, 16, 31, 32,
/* 100 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
/* 110 */ 43, 1, 74, 16, 45, 16, 17, 10, 16, 17,
/* 120 */ 10, 16, 15, 16, 1, 15, 16, 20, 21, 17,
/* 130 */ 20, 21, 63, 55, 55, 12, 55, 30, 60, 16,
/* 140 */ 61, 62, 61, 62, 62, 67, 108, 17, 51, 78,
/* 150 */ 79, 44, 55, 46, 44, 50, 46, 60, 51, 88,
/* 160 */ 53, 51, 55, 53, 67, 55, 67, 60, 61, 67,
/* 170 */ 60, 61, 67, 96, 67, 63, 99, 67, 16, 1,
/* 180 */ 68, 75, 76, 31, 32, 33, 34, 35, 36, 37,
/* 190 */ 38, 39, 40, 41, 42, 43, 10, 45, 68, 10,
/* 200 */ 44, 15, 16, 97, 15, 16, 20, 21, 17, 20,
/* 210 */ 21, 96, 50, 57, 52, 31, 32, 33, 34, 35,
/* 220 */ 36, 37, 38, 39, 40, 41, 42, 43, 78, 67,
/* 230 */ 44, 16, 46, 44, 17, 46, 1, 51, 88, 53,
/* 240 */ 51, 55, 53, 8, 55, 67, 60, 61, 45, 60,
/* 250 */ 61, 16, 10, 67, 63, 10, 67, 15, 16, 44,
/* 260 */ 15, 16, 20, 21, 95, 20, 21, 1, 44, 100,
/* 270 */ 53, 54, 48, 48, 10, 50, 10, 75, 76, 15,
/* 280 */ 16, 57, 16, 66, 20, 21, 44, 63, 46, 44,
/* 290 */ 96, 46, 68, 51, 80, 53, 51, 55, 53, 97,
/* 300 */ 55, 44, 60, 61, 73, 60, 61, 50, 44, 67,
/* 310 */ 46, 63, 67, 85, 57, 51, 68, 53, 49, 55,
/* 320 */ 53, 54, 84, 92, 60, 61, 73, 99, 75, 76,
/* 330 */ 77, 67, 63, 66, 81, 82, 83, 99, 107, 86,
/* 340 */ 87, 10, 89, 96, 91, 16, 15, 16, 55, 17,
/* 350 */ 97, 20, 21, 60, 55, 102, 16, 1, 2, 3,
/* 360 */ 4, 5, 6, 75, 76, 9, 67, 11, 10, 13,
/* 370 */ 14, 15, 16, 15, 16, 44, 50, 46, 20, 21,
/* 380 */ 44, 93, 51, 47, 55, 97, 55, 78, 79, 60,
/* 390 */ 17, 60, 61, 57, 78, 79, 67, 88, 67, 59,
/* 400 */ 68, 17, 44, 48, 88, 75, 76, 67, 73, 51,
/* 410 */ 75, 76, 77, 55, 100, 44, 81, 17, 60, 61,
/* 420 */ 49, 86, 87, 59, 89, 67, 91, 97, 57, 17,
/* 430 */ 17, 67, 97, 74, 67, 18, 63, 102, 17, 22,
/* 440 */ 23, 24, 25, 26, 27, 28, 29, 73, 47, 75,
/* 450 */ 76, 77, 68, 16, 78, 81, 75, 76, 16, 84,
/* 460 */ 86, 87, 45, 89, 88, 91, 65, 108, 68, 72,
/* 470 */ 73, 97, 84, 84, 99, 63, 102, 101, 97, 1,
/* 480 */ 63, 68, 73, 78, 75, 76, 77, 99, 99, 68,
/* 490 */ 81, 63, 73, 88, 16, 86, 87, 79, 89, 73,
/* 500 */ 91, 75, 76, 77, 67, 44, 97, 81, 74, 67,
/* 510 */ 56, 102, 86, 87, 79, 89, 73, 91, 75, 76,
/* 520 */ 77, 103, 68, 97, 81, 96, 107, 74, 102, 86,
/* 530 */ 87, 84, 89, 64, 91, 73, 95, 75, 76, 77,
/* 540 */ 97, 100, 108, 81, 67, 102, 99, 95, 86, 87,
/* 550 */ 84, 89, 100, 91, 73, 67, 75, 76, 77, 97,
/* 560 */ 17, 108, 81, 17, 102, 99, 19, 86, 87, 67,
/* 570 */ 89, 51, 91, 73, 67, 75, 76, 77, 97, 55,
/* 580 */ 19, 81, 45, 102, 17, 45, 86, 87, 55, 89,
/* 590 */ 73, 91, 75, 76, 77, 5, 55, 97, 81, 60,
/* 600 */ 56, 67, 102, 86, 87, 67, 89, 44, 91, 73,
/* 610 */ 60, 75, 76, 77, 97, 96, 108, 81, 90, 102,
/* 620 */ 99, 98, 86, 87, 68, 89, 104, 91, 73, 55,
/* 630 */ 75, 76, 77, 97, 82, 93, 88, 56, 102, 109,
/* 640 */ 109, 86, 87, 109, 89, 109, 91, 109, 109, 109,
/* 650 */ 101, 73, 97, 75, 76, 77, 109, 109, 109, 109,
/* 660 */ 105, 106, 109, 109, 86, 87, 109, 89, 109, 91,
/* 670 */ 109, 109, 94, 109, 109, 97, 73, 109, 75, 76,
/* 680 */ 77, 109, 109, 109, 109, 109, 109, 109, 109, 86,
/* 690 */ 87, 109, 89, 109, 91, 109, 109, 94, 109, 73,
/* 700 */ 97, 75, 76, 77, 109, 109, 73, 109, 75, 76,
/* 710 */ 77, 109, 86, 87, 109, 89, 109, 91, 109, 86,
/* 720 */ 87, 109, 89, 97, 91, 109, 109, 94, 109, 109,
/* 730 */ 97, 109, 106, 109, 73, 109, 75, 76, 77, 109,
/* 740 */ 109, 109, 109, 109, 109, 109, 109, 86, 87, 109,
/* 750 */ 89, 109, 91, 109, 109, 94, 109, 109, 97, 109,
/* 760 */ 109, 109, 109, 73, 109, 75, 76, 77, 109, 109,
/* 770 */ 109, 109, 109, 109, 109, 109, 86, 87, 109, 89,
/* 780 */ 73, 91, 75, 76, 77, 109, 109, 97, 109, 109,
/* 790 */ 109, 109, 109, 86, 87, 109, 89, 73, 91, 75,
/* 800 */ 76, 77, 109, 109, 97, 109, 109, 109, 109, 109,
/* 810 */ 86, 87, 109, 89, 109, 91, 109, 109, 109, 109,
/* 820 */ 109, 97, 73, 109, 75, 76, 77, 109, 109, 73,
/* 830 */ 109, 75, 76, 77, 109, 86, 87, 109, 89, 109,
/* 840 */ 91, 109, 86, 87, 109, 89, 97, 91, 109, 109,
/* 850 */ 109, 109, 109, 97, 73, 109, 75, 76, 77, 109,
/* 860 */ 109, 73, 109, 75, 76, 77, 109, 86, 87, 109,
/* 870 */ 89, 109, 91, 109, 86, 87, 109, 89, 97, 91,
/* 880 */ 109, 109, 109, 109, 73, 97, 75, 76, 77, 109,
/* 890 */ 109, 109, 109, 109, 109, 109, 109, 86, 87, 109,
/* 900 */ 89, 109, 91, 73, 109, 75, 76, 77, 97, 109,
/* 910 */ 73, 109, 75, 76, 77, 109, 86, 87, 109, 89,
/* 920 */ 109, 91, 109, 86, 87, 109, 89, 97, 91, 109,
/* 930 */ 109, 109, 109, 109, 97, 73, 109, 75, 76, 77,
/* 940 */ 109, 109, 73, 109, 75, 76, 77, 109, 86, 87,
/* 950 */ 109, 89, 109, 91, 109, 86, 87, 109, 89, 97,
/* 960 */ 91, 73, 109, 75, 76, 77, 97, 109, 109, 109,
/* 970 */ 109, 109, 109, 109, 86, 87, 109, 89, 109, 91,
/* 980 */ 73, 109, 75, 76, 109, 97, 109, 73, 109, 75,
/* 990 */ 76, 109, 109, 86, 87, 109, 89, 109, 91, 109,
/* 1000 */ 86, 87, 109, 89, 97, 91, 109, 109, 109, 109,
/* 1010 */ 109, 97, 73, 109, 75, 76, 109, 109, 109, 73,
/* 1020 */ 109, 75, 76, 109, 109, 86, 87, 109, 89, 109,
/* 1030 */ 91, 109, 86, 87, 109, 109, 97, 91, 73, 109,
/* 1040 */ 75, 76, 109, 97, 109, 109, 109, 109, 109, 109,
/* 1050 */ 109, 86, 109, 109, 109, 109, 91, 73, 109, 75,
/* 1060 */ 76, 73, 97, 75, 76, 109, 109, 109, 109, 109,
/* 1070 */ 86, 109, 109, 109, 86, 91, 109, 109, 109, 91,
/* 1080 */ 109, 97, 109, 109, 109, 97,
);
const YY_SHIFT_USE_DFLT = -39;
const YY_SHIFT_MAX = 171;
static public $yy_shift_ofst = array(
/* 0 */ 356, 107, -10, -10, -10, -10, -10, -10, -10, -10,
/* 10 */ -10, -10, 264, 186, 264, 186, 186, 186, 110, 186,
/* 20 */ 186, 186, 186, 186, 186, 186, 186, 189, 186, 186,
/* 30 */ 186, -7, 242, 245, 331, 358, 358, 358, 329, 81,
/* 40 */ 224, 97, 78, 17, 112, -25, 454, 293, 248, 248,
/* 50 */ 356, 417, -1, 79, 162, -12, 340, 266, 442, 437,
/* 60 */ 437, 437, 442, 478, 478, 225, 437, -16, 437, 478,
/* 70 */ 355, 355, 355, 556, 152, 67, 35, 184, 184, 184,
/* 80 */ 184, 184, 184, 184, 184, -35, 217, 0, 48, 123,
/* 90 */ 102, 99, 105, 235, 267, 267, 130, -31, -31, 412,
/* 100 */ 269, -31, 26, -31, 421, 373, 191, 215, 69, 299,
/* 110 */ 384, 413, -31, 400, 332, 581, 428, 428, 574, 428,
/* 120 */ 428, 428, 355, 355, 355, 428, 461, 355, -39, -39,
/* 130 */ -39, -39, -39, 336, 257, 371, 156, 156, 25, 178,
/* 140 */ 401, 156, 364, 469, 547, 561, 524, 520, 533, 507,
/* 150 */ 502, 543, 546, 567, 534, 563, 539, 540, 477, 590,
/* 160 */ 550, 203, 326, -38, 488, 30, 82, 367, 541, 544,
/* 170 */ 538, 537,
);
const YY_REDUCE_USE_DFLT = -79;
const YY_REDUCE_MAX = 132;
static public $yy_reduce_ofst = array(
/* 0 */ 15, 253, 335, 462, 443, 517, 426, 481, 500, 409,
/* 10 */ 536, 374, 555, 603, 626, 578, 633, 661, 869, 749,
/* 20 */ 781, 788, 756, 724, 690, 811, 837, 862, 888, 830,
/* 30 */ 707, 907, 939, 914, 946, 988, 984, 965, 288, 231,
/* 40 */ 309, 381, 330, -39, 71, 106, 376, 202, 316, 71,
/* 50 */ 397, 418, 418, 419, 228, 77, 77, 434, 447, 388,
/* 60 */ 389, 375, 238, 38, 359, 169, 447, 150, 466, 453,
/* 70 */ 452, 169, 441, 405, 522, 522, 522, 522, 522, 522,
/* 80 */ 522, 522, 522, 522, 522, 528, 528, 508, 508, 508,
/* 90 */ 521, 521, 521, 508, 528, 528, 548, 523, 523, 435,
/* 100 */ 435, 523, 435, 523, 548, 435, 435, 519, 435, 542,
/* 110 */ 548, 548, 523, 548, 548, 549, 435, 435, 552, 435,
/* 120 */ 435, 435, 314, 314, 314, 435, 429, 314, 214, -78,
/* 130 */ 247, 115, 194,
);
static public $yyExpectedTokens = array(
/* 0 */ array(1, 2, 3, 4, 5, 6, 9, 11, 13, 14, 15, 16, ),
/* 1 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 2 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 3 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 4 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 5 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 6 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 7 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 8 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 9 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 10 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 11 */ array(10, 15, 16, 20, 21, 30, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 12 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 13 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 14 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 15 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 16 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 17 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 18 */ array(1, 10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 19 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 20 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 21 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 22 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 23 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 24 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 25 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 26 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 27 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 28 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 29 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 30 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 31 */ array(10, 15, 16, 20, 21, 44, 46, 47, 51, 53, 55, 60, 61, 67, ),
/* 32 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 33 */ array(10, 15, 16, 20, 21, 44, 46, 51, 53, 55, 60, 61, 67, ),
/* 34 */ array(10, 15, 16, 20, 21, 44, 46, 51, 55, 60, 61, 67, ),
/* 35 */ array(10, 15, 16, 20, 21, 44, 51, 55, 60, 61, 67, ),
/* 36 */ array(10, 15, 16, 20, 21, 44, 51, 55, 60, 61, 67, ),
/* 37 */ array(10, 15, 16, 20, 21, 44, 51, 55, 60, 61, 67, ),
/* 38 */ array(16, 55, 60, 67, ),
/* 39 */ array(1, 15, 16, 55, 61, 62, ),
/* 40 */ array(44, 48, 57, 63, 68, ),
/* 41 */ array(16, 51, 55, 60, 67, ),
/* 42 */ array(1, 55, 60, 67, ),
/* 43 */ array(46, 48, 64, ),
/* 44 */ array(17, 63, 68, ),
/* 45 */ array(55, 60, 67, ),
/* 46 */ array(56, 68, ),
/* 47 */ array(55, 60, ),
/* 48 */ array(63, 68, ),
/* 49 */ array(63, 68, ),
/* 50 */ array(1, 2, 3, 4, 5, 6, 9, 11, 13, 14, 15, 16, ),
/* 51 */ array(18, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ),
/* 52 */ array(18, 22, 23, 24, 25, 26, 27, 28, 29, 63, ),
/* 53 */ array(1, 15, 16, 55, 61, 62, ),
/* 54 */ array(16, 50, 52, 67, ),
/* 55 */ array(16, 50, 59, 67, ),
/* 56 */ array(16, 59, 67, ),
/* 57 */ array(1, 10, 16, ),
/* 58 */ array(16, 67, ),
/* 59 */ array(16, 67, ),
/* 60 */ array(16, 67, ),
/* 61 */ array(16, 67, ),
/* 62 */ array(16, 67, ),
/* 63 */ array(1, 16, ),
/* 64 */ array(1, 16, ),
/* 65 */ array(48, 50, ),
/* 66 */ array(16, 67, ),
/* 67 */ array(48, 68, ),
/* 68 */ array(16, 67, ),
/* 69 */ array(1, 16, ),
/* 70 */ array(48, ),
/* 71 */ array(48, ),
/* 72 */ array(48, ),
/* 73 */ array(68, ),
/* 74 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ),
/* 75 */ array(17, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 76 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ),
/* 77 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 78 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 79 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 80 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 81 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 82 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ),
/* 85 */ array(47, 53, 54, 66, ),
/* 86 */ array(17, 53, 54, 66, ),
/* 87 */ array(1, 7, 16, ),
/* 88 */ array(1, 10, 16, ),
/* 89 */ array(1, 12, 16, ),
/* 90 */ array(16, 17, 67, ),
/* 91 */ array(16, 17, 67, ),
/* 92 */ array(16, 50, 67, ),
/* 93 */ array(1, 8, 16, ),
/* 94 */ array(53, 54, 66, ),
/* 95 */ array(53, 54, 66, ),
/* 96 */ array(17, 68, ),
/* 97 */ array(46, 64, ),
/* 98 */ array(46, 64, ),
/* 99 */ array(17, 63, ),
/* 100 */ array(49, 63, ),
/* 101 */ array(46, 64, ),
/* 102 */ array(63, 65, ),
/* 103 */ array(46, 64, ),
/* 104 */ array(17, 68, ),
/* 105 */ array(17, 63, ),
/* 106 */ array(17, 63, ),
/* 107 */ array(16, 44, ),
/* 108 */ array(45, 63, ),
/* 109 */ array(55, 67, ),
/* 110 */ array(17, 68, ),
/* 111 */ array(17, 68, ),
/* 112 */ array(46, 64, ),
/* 113 */ array(17, 68, ),
/* 114 */ array(17, 68, ),
/* 115 */ array(56, ),
/* 116 */ array(63, ),
/* 117 */ array(63, ),
/* 118 */ array(55, ),
/* 119 */ array(63, ),
/* 120 */ array(63, ),
/* 121 */ array(63, ),
/* 122 */ array(48, ),
/* 123 */ array(48, ),
/* 124 */ array(48, ),
/* 125 */ array(63, ),
/* 126 */ array(44, ),
/* 127 */ array(48, ),
/* 128 */ array(),
/* 129 */ array(),
/* 130 */ array(),
/* 131 */ array(),
/* 132 */ array(),
/* 133 */ array(44, 47, 57, ),
/* 134 */ array(44, 50, 57, ),
/* 135 */ array(44, 49, 57, ),
/* 136 */ array(44, 57, ),
/* 137 */ array(44, 57, ),
/* 138 */ array(58, 65, ),
/* 139 */ array(1, 67, ),
/* 140 */ array(47, 65, ),
/* 141 */ array(44, 57, ),
/* 142 */ array(59, 67, ),
/* 143 */ array(64, ),
/* 144 */ array(19, ),
/* 145 */ array(19, ),
/* 146 */ array(55, ),
/* 147 */ array(51, ),
/* 148 */ array(55, ),
/* 149 */ array(67, ),
/* 150 */ array(67, ),
/* 151 */ array(17, ),
/* 152 */ array(17, ),
/* 153 */ array(17, ),
/* 154 */ array(67, ),
/* 155 */ array(44, ),
/* 156 */ array(60, ),
/* 157 */ array(45, ),
/* 158 */ array(67, ),
/* 159 */ array(5, ),
/* 160 */ array(60, ),
/* 161 */ array(45, ),
/* 162 */ array(50, ),
/* 163 */ array(67, ),
/* 164 */ array(67, ),
/* 165 */ array(62, ),
/* 166 */ array(62, ),
/* 167 */ array(67, ),
/* 168 */ array(55, ),
/* 169 */ array(56, ),
/* 170 */ array(67, ),
/* 171 */ array(45, ),
/* 172 */ array(),
/* 173 */ array(),
/* 174 */ array(),
/* 175 */ array(),
/* 176 */ array(),
/* 177 */ array(),
/* 178 */ array(),
/* 179 */ array(),
/* 180 */ array(),
/* 181 */ array(),
/* 182 */ array(),
/* 183 */ array(),
/* 184 */ array(),
/* 185 */ array(),
/* 186 */ array(),
/* 187 */ array(),
/* 188 */ array(),
/* 189 */ array(),
/* 190 */ array(),
/* 191 */ array(),
/* 192 */ array(),
/* 193 */ array(),
/* 194 */ array(),
/* 195 */ array(),
/* 196 */ array(),
/* 197 */ array(),
/* 198 */ array(),
/* 199 */ array(),
/* 200 */ array(),
/* 201 */ array(),
/* 202 */ array(),
/* 203 */ array(),
/* 204 */ array(),
/* 205 */ array(),
/* 206 */ array(),
/* 207 */ array(),
/* 208 */ array(),
/* 209 */ array(),
/* 210 */ array(),
/* 211 */ array(),
/* 212 */ array(),
/* 213 */ array(),
/* 214 */ array(),
/* 215 */ array(),
/* 216 */ array(),
/* 217 */ array(),
/* 218 */ array(),
/* 219 */ array(),
/* 220 */ array(),
/* 221 */ array(),
/* 222 */ array(),
/* 223 */ array(),
/* 224 */ array(),
/* 225 */ array(),
/* 226 */ array(),
/* 227 */ array(),
/* 228 */ array(),
/* 229 */ array(),
/* 230 */ array(),
/* 231 */ array(),
/* 232 */ array(),
/* 233 */ array(),
/* 234 */ array(),
/* 235 */ array(),
/* 236 */ array(),
/* 237 */ array(),
/* 238 */ array(),
/* 239 */ array(),
/* 240 */ array(),
/* 241 */ array(),
2009-04-08 14:47:28 +00:00
/* 242 */ array(),
/* 243 */ array(),
/* 244 */ array(),
/* 245 */ array(),
/* 246 */ array(),
/* 247 */ array(),
/* 248 */ array(),
/* 249 */ array(),
/* 250 */ array(),
/* 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(),
2009-05-14 10:53:28 +00:00
/* 271 */ array(),
/* 272 */ array(),
/* 273 */ array(),
/* 274 */ array(),
/* 275 */ array(),
/* 276 */ array(),
/* 277 */ array(),
/* 278 */ array(),
/* 279 */ array(),
/* 280 */ array(),
/* 281 */ array(),
);
static public $yy_default = array(
/* 0 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
/* 10 */ 436, 436, 417, 378, 436, 378, 378, 378, 436, 436,
/* 20 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
/* 30 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
/* 40 */ 312, 436, 436, 344, 436, 436, 312, 436, 312, 312,
/* 50 */ 282, 388, 388, 436, 436, 354, 354, 436, 436, 436,
/* 60 */ 436, 436, 436, 436, 436, 347, 436, 312, 436, 436,
/* 70 */ 339, 347, 340, 312, 436, 436, 436, 398, 397, 392,
/* 80 */ 393, 401, 402, 386, 394, 436, 436, 436, 436, 436,
/* 90 */ 436, 436, 436, 436, 318, 383, 436, 369, 370, 436,
/* 100 */ 420, 371, 377, 372, 436, 436, 436, 354, 436, 436,
/* 110 */ 436, 436, 352, 436, 436, 320, 389, 419, 436, 418,
/* 120 */ 316, 306, 341, 342, 345, 313, 354, 366, 382, 382,
/* 130 */ 354, 354, 354, 436, 317, 317, 384, 436, 436, 436,
/* 140 */ 436, 317, 436, 329, 321, 325, 436, 436, 436, 436,
/* 150 */ 436, 314, 436, 436, 436, 343, 436, 436, 436, 436,
/* 160 */ 436, 436, 436, 436, 436, 436, 436, 436, 436, 364,
/* 170 */ 436, 436, 359, 355, 356, 325, 327, 351, 346, 376,
/* 180 */ 349, 350, 326, 360, 324, 430, 296, 424, 365, 362,
/* 190 */ 423, 425, 428, 422, 357, 338, 431, 427, 361, 353,
/* 200 */ 432, 286, 434, 435, 433, 285, 284, 295, 283, 294,
/* 210 */ 293, 373, 287, 288, 348, 368, 375, 416, 310, 292,
/* 220 */ 414, 289, 290, 291, 358, 415, 337, 387, 385, 323,
/* 230 */ 413, 412, 304, 367, 331, 319, 332, 333, 334, 411,
/* 240 */ 335, 426, 380, 396, 395, 298, 379, 300, 297, 336,
/* 250 */ 303, 400, 399, 305, 330, 405, 404, 406, 407, 308,
/* 260 */ 309, 301, 390, 299, 429, 391, 403, 302, 311, 364,
/* 270 */ 409, 363, 307, 410, 315, 328, 408, 374, 381, 321,
/* 280 */ 322, 421,
);
/* The next thing included is series of defines which control
** various aspects of the generated parser.
** self::YYNOCODE is a number which corresponds
** to no legal terminal or nonterminal number. This
** number is used to fill in empty slots of the hash
** table.
** self::YYFALLBACK If defined, this indicates that one or more tokens
** have fall-back values which should be used if the
** original value of the token will not parse.
** self::YYSTACKDEPTH is the maximum depth of the parser's stack.
** self::YYNSTATE the combined number of states.
** self::YYNRULE the number of rules in the grammar
** self::YYERRORSYMBOL is the code number of the error symbol. If not
** defined, then do no error processing.
*/
const YYNOCODE = 110;
const YYSTACKDEPTH = 100;
const YYNSTATE = 282;
const YYNRULE = 154;
const YYERRORSYMBOL = 69;
const YYERRSYMDT = 'yy0';
const YYFALLBACK = 1;
/** The next table maps tokens into fallback tokens. If a construct
* like the following:
*
* %fallback ID X Y Z.
*
* appears in the grammer, then ID becomes a fallback token for X, Y,
* and Z. Whenever one of the tokens X, Y, or Z is input to the parser
* but it does not parse, the type of the token is changed to ID and
* the parse is retried before an error is thrown.
*/
static public $yyFallback = array(
0, /* $ => nothing */
0, /* OTHER => nothing */
1, /* XML => OTHER */
1, /* PHP => OTHER */
1, /* SHORTTAGSTART => OTHER */
1, /* SHORTTAGEND => OTHER */
1, /* PHPSTART => OTHER */
1, /* PHPEND => OTHER */
1, /* COMMENTEND => OTHER */
1, /* COMMENTSTART => OTHER */
1, /* SINGLEQUOTE => OTHER */
1, /* LITERALSTART => OTHER */
1, /* LITERALEND => OTHER */
1, /* LDELIMTAG => OTHER */
1, /* RDELIMTAG => OTHER */
1, /* LDELSLASH => OTHER */
1, /* LDEL => OTHER */
1, /* RDEL => OTHER */
1, /* ISIN => OTHER */
1, /* AS => OTHER */
1, /* BOOLEAN => OTHER */
1, /* NULL => OTHER */
1, /* IDENTITY => OTHER */
1, /* NONEIDENTITY => OTHER */
1, /* EQUALS => OTHER */
1, /* NOTEQUALS => OTHER */
1, /* GREATEREQUAL => OTHER */
1, /* LESSEQUAL => OTHER */
1, /* GREATERTHAN => OTHER */
1, /* LESSTHAN => OTHER */
1, /* NOT => OTHER */
1, /* LAND => OTHER */
1, /* LOR => OTHER */
1, /* LXOR => OTHER */
1, /* ISODDBY => OTHER */
1, /* ISNOTODDBY => OTHER */
1, /* ISODD => OTHER */
1, /* ISNOTODD => OTHER */
1, /* ISEVENBY => OTHER */
1, /* ISNOTEVENBY => OTHER */
1, /* ISEVEN => OTHER */
1, /* ISNOTEVEN => OTHER */
1, /* ISDIVBY => OTHER */
1, /* ISNOTDIVBY => OTHER */
1, /* OPENP => OTHER */
1, /* CLOSEP => OTHER */
1, /* OPENB => OTHER */
1, /* CLOSEB => OTHER */
1, /* PTR => OTHER */
1, /* APTR => OTHER */
1, /* EQUAL => OTHER */
1, /* INTEGER => OTHER */
1, /* INCDEC => OTHER */
1, /* UNIMATH => OTHER */
1, /* MATH => OTHER */
1, /* DOLLAR => OTHER */
1, /* COLON => OTHER */
1, /* DOUBLECOLON => OTHER */
1, /* SEMICOLON => OTHER */
1, /* AT => OTHER */
1, /* HATCH => OTHER */
1, /* QUOTE => OTHER */
1, /* BACKTICK => OTHER */
1, /* VERT => OTHER */
1, /* DOT => OTHER */
1, /* COMMA => OTHER */
1, /* ANDSYM => OTHER */
1, /* ID => OTHER */
1, /* SPACE => OTHER */
);
/**
* Turn parser tracing on by giving a stream to which to write the trace
* and a prompt to preface each trace message. Tracing is turned off
* by making either argument NULL
*
* Inputs:
*
* - A stream resource to which trace output should be written.
* If NULL, then tracing is turned off.
* - A prefix string written at the beginning of every
* line of trace output. If NULL, then tracing is
* turned off.
*
* Outputs:
*
* - None.
* @param resource
* @param string
*/
static function Trace($TraceFILE, $zTracePrompt)
{
if (!$TraceFILE) {
$zTracePrompt = 0;
} elseif (!$zTracePrompt) {
$TraceFILE = 0;
}
self::$yyTraceFILE = $TraceFILE;
self::$yyTracePrompt = $zTracePrompt;
}
/**
* Output debug information to output (php://output stream)
*/
static function PrintTrace()
{
self::$yyTraceFILE = fopen('php://output', 'w');
self::$yyTracePrompt = '<br>';
}
/**
* @var resource|0
*/
static public $yyTraceFILE;
/**
* String to prepend to debug output
* @var string|0
*/
static public $yyTracePrompt;
/**
* @var int
*/
public $yyidx; /* Index of top element in stack */
/**
* @var int
*/
public $yyerrcnt; /* Shifts left before out of the error */
/**
* @var array
*/
public $yystack = array(); /* The parser's stack */
/**
* For tracing shifts, the names of all terminals and nonterminals
* are required. The following table supplies these names
* @var array
*/
public $yyTokenName = array(
'$', 'OTHER', 'XML', 'PHP',
'SHORTTAGSTART', 'SHORTTAGEND', 'PHPSTART', 'PHPEND',
'COMMENTEND', 'COMMENTSTART', 'SINGLEQUOTE', 'LITERALSTART',
'LITERALEND', 'LDELIMTAG', 'RDELIMTAG', 'LDELSLASH',
'LDEL', 'RDEL', 'ISIN', 'AS',
'BOOLEAN', 'NULL', 'IDENTITY', 'NONEIDENTITY',
'EQUALS', 'NOTEQUALS', 'GREATEREQUAL', 'LESSEQUAL',
'GREATERTHAN', 'LESSTHAN', 'NOT', 'LAND',
'LOR', 'LXOR', 'ISODDBY', 'ISNOTODDBY',
'ISODD', 'ISNOTODD', 'ISEVENBY', 'ISNOTEVENBY',
'ISEVEN', 'ISNOTEVEN', 'ISDIVBY', 'ISNOTDIVBY',
'OPENP', 'CLOSEP', 'OPENB', 'CLOSEB',
'PTR', 'APTR', 'EQUAL', 'INTEGER',
'INCDEC', 'UNIMATH', 'MATH', 'DOLLAR',
'COLON', 'DOUBLECOLON', 'SEMICOLON', 'AT',
'HATCH', 'QUOTE', 'BACKTICK', 'VERT',
'DOT', 'COMMA', 'ANDSYM', 'ID',
'SPACE', 'error', 'start', 'template',
'template_element', 'smartytag', 'text', 'variable',
'varindexed', 'expr', 'attributes', 'modifier',
'modparameters', 'ifexprs', 'statement', 'statements',
'varvar', 'foraction', 'value', 'array',
'attribute', 'exprs', 'math', 'function',
'doublequoted', 'method', 'params', 'objectchain',
'arrayindex', 'object', 'indexdef', 'varvarele',
'objectelement', 'modparameter', 'ifexpr', 'ifcond',
'lop', 'arrayelements', 'arrayelement', 'doublequotedcontent',
'textelement',
);
/**
* For tracing reduce actions, the names of all rules are required.
* @var array
*/
static public $yyRuleName = array(
/* 0 */ "start ::= template",
/* 1 */ "template ::= template_element",
/* 2 */ "template ::= template template_element",
/* 3 */ "template_element ::= smartytag",
/* 4 */ "template_element ::= COMMENTSTART text COMMENTEND",
/* 5 */ "template_element ::= LITERALSTART text LITERALEND",
/* 6 */ "template_element ::= LDELIMTAG",
/* 7 */ "template_element ::= RDELIMTAG",
/* 8 */ "template_element ::= PHP",
/* 9 */ "template_element ::= PHPSTART text PHPEND",
/* 10 */ "template_element ::= SHORTTAGSTART variable SHORTTAGEND",
/* 11 */ "template_element ::= XML",
/* 12 */ "template_element ::= SHORTTAGEND",
/* 13 */ "template_element ::= OTHER",
/* 14 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
/* 15 */ "smartytag ::= LDEL expr attributes RDEL",
/* 16 */ "smartytag ::= LDEL ID attributes RDEL",
/* 17 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
/* 18 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL",
/* 19 */ "smartytag ::= LDELSLASH ID attributes RDEL",
/* 20 */ "smartytag ::= LDELSLASH ID PTR ID RDEL",
/* 21 */ "smartytag ::= LDEL ID SPACE ifexprs RDEL",
/* 22 */ "smartytag ::= LDEL ID SPACE statement RDEL",
/* 23 */ "smartytag ::= LDEL ID SPACE statements SEMICOLON ifexprs SEMICOLON DOLLAR varvar foraction RDEL",
/* 24 */ "foraction ::= EQUAL expr",
/* 25 */ "foraction ::= INCDEC",
/* 26 */ "smartytag ::= LDEL ID SPACE value AS DOLLAR varvar RDEL",
/* 27 */ "smartytag ::= LDEL ID SPACE array AS DOLLAR varvar RDEL",
/* 28 */ "attributes ::= attributes attribute",
/* 29 */ "attributes ::= attribute",
/* 30 */ "attributes ::=",
/* 31 */ "attribute ::= SPACE ID EQUAL expr",
/* 32 */ "statements ::= statement",
/* 33 */ "statements ::= statements COMMA statement",
/* 34 */ "statement ::= DOLLAR varvar EQUAL expr",
/* 35 */ "expr ::= ID",
/* 36 */ "expr ::= exprs",
/* 37 */ "expr ::= DOLLAR ID COLON ID",
/* 38 */ "expr ::= expr modifier modparameters",
/* 39 */ "exprs ::= value",
/* 40 */ "exprs ::= UNIMATH value",
/* 41 */ "exprs ::= exprs math value",
/* 42 */ "exprs ::= exprs ANDSYM value",
/* 43 */ "exprs ::= array",
/* 44 */ "math ::= UNIMATH",
/* 45 */ "math ::= MATH",
/* 46 */ "value ::= variable",
/* 47 */ "value ::= INTEGER",
/* 48 */ "value ::= INTEGER DOT INTEGER",
/* 49 */ "value ::= BOOLEAN",
/* 50 */ "value ::= NULL",
/* 51 */ "value ::= function",
/* 52 */ "value ::= OPENP expr CLOSEP",
/* 53 */ "value ::= SINGLEQUOTE text SINGLEQUOTE",
/* 54 */ "value ::= SINGLEQUOTE SINGLEQUOTE",
/* 55 */ "value ::= QUOTE doublequoted QUOTE",
/* 56 */ "value ::= QUOTE QUOTE",
/* 57 */ "value ::= ID DOUBLECOLON method",
/* 58 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP",
/* 59 */ "value ::= ID DOUBLECOLON method objectchain",
/* 60 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain",
/* 61 */ "value ::= ID DOUBLECOLON ID",
/* 62 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex",
/* 63 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain",
/* 64 */ "value ::= smartytag",
/* 65 */ "variable ::= varindexed",
/* 66 */ "variable ::= DOLLAR varvar AT ID",
/* 67 */ "variable ::= object",
/* 68 */ "variable ::= HATCH ID HATCH",
/* 69 */ "variable ::= HATCH variable HATCH",
/* 70 */ "varindexed ::= DOLLAR varvar arrayindex",
/* 71 */ "arrayindex ::= arrayindex indexdef",
/* 72 */ "arrayindex ::=",
/* 73 */ "indexdef ::= DOT ID",
/* 74 */ "indexdef ::= DOT INTEGER",
/* 75 */ "indexdef ::= DOT variable",
/* 76 */ "indexdef ::= DOT LDEL exprs RDEL",
/* 77 */ "indexdef ::= OPENB ID CLOSEB",
/* 78 */ "indexdef ::= OPENB exprs CLOSEB",
/* 79 */ "indexdef ::= OPENB CLOSEB",
/* 80 */ "varvar ::= varvarele",
/* 81 */ "varvar ::= varvar varvarele",
/* 82 */ "varvarele ::= ID",
/* 83 */ "varvarele ::= LDEL expr RDEL",
/* 84 */ "object ::= varindexed objectchain",
/* 85 */ "objectchain ::= objectelement",
/* 86 */ "objectchain ::= objectchain objectelement",
/* 87 */ "objectelement ::= PTR ID arrayindex",
/* 88 */ "objectelement ::= PTR variable arrayindex",
/* 89 */ "objectelement ::= PTR LDEL expr RDEL arrayindex",
/* 90 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex",
/* 91 */ "objectelement ::= PTR method",
/* 92 */ "function ::= ID OPENP params CLOSEP",
/* 93 */ "method ::= ID OPENP params CLOSEP",
/* 94 */ "params ::= expr COMMA params",
/* 95 */ "params ::= expr",
/* 96 */ "params ::=",
/* 97 */ "modifier ::= VERT AT ID",
/* 98 */ "modifier ::= VERT ID",
/* 99 */ "modparameters ::= modparameters modparameter",
/* 100 */ "modparameters ::=",
/* 101 */ "modparameter ::= COLON exprs",
/* 102 */ "modparameter ::= COLON ID",
/* 103 */ "ifexprs ::= ifexpr",
/* 104 */ "ifexprs ::= NOT ifexprs",
/* 105 */ "ifexprs ::= OPENP ifexprs CLOSEP",
/* 106 */ "ifexpr ::= expr",
/* 107 */ "ifexpr ::= expr ifcond expr",
/* 108 */ "ifexpr ::= expr ISIN array",
/* 109 */ "ifexpr ::= expr ISIN value",
/* 110 */ "ifexpr ::= ifexprs lop ifexprs",
/* 111 */ "ifexpr ::= ifexprs ISDIVBY ifexprs",
/* 112 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs",
/* 113 */ "ifexpr ::= ifexprs ISEVEN",
/* 114 */ "ifexpr ::= ifexprs ISNOTEVEN",
/* 115 */ "ifexpr ::= ifexprs ISEVENBY ifexprs",
/* 116 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs",
/* 117 */ "ifexpr ::= ifexprs ISODD",
/* 118 */ "ifexpr ::= ifexprs ISNOTODD",
/* 119 */ "ifexpr ::= ifexprs ISODDBY ifexprs",
/* 120 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs",
/* 121 */ "ifcond ::= EQUALS",
/* 122 */ "ifcond ::= NOTEQUALS",
/* 123 */ "ifcond ::= GREATERTHAN",
/* 124 */ "ifcond ::= LESSTHAN",
/* 125 */ "ifcond ::= GREATEREQUAL",
/* 126 */ "ifcond ::= LESSEQUAL",
/* 127 */ "ifcond ::= IDENTITY",
/* 128 */ "ifcond ::= NONEIDENTITY",
/* 129 */ "lop ::= LAND",
/* 130 */ "lop ::= LOR",
/* 131 */ "lop ::= LXOR",
/* 132 */ "array ::= OPENB arrayelements CLOSEB",
/* 133 */ "arrayelements ::= arrayelement",
/* 134 */ "arrayelements ::= arrayelements COMMA arrayelement",
/* 135 */ "arrayelements ::=",
/* 136 */ "arrayelement ::= expr APTR expr",
/* 137 */ "arrayelement ::= ID APTR expr",
/* 138 */ "arrayelement ::= expr",
/* 139 */ "doublequoted ::= doublequoted doublequotedcontent",
/* 140 */ "doublequoted ::= doublequotedcontent",
/* 141 */ "doublequotedcontent ::= BACKTICK ID BACKTICK",
/* 142 */ "doublequotedcontent ::= BACKTICK variable BACKTICK",
/* 143 */ "doublequotedcontent ::= DOLLAR ID",
/* 144 */ "doublequotedcontent ::= LDEL expr RDEL",
/* 145 */ "doublequotedcontent ::= smartytag",
/* 146 */ "doublequotedcontent ::= DOLLAR OTHER",
/* 147 */ "doublequotedcontent ::= LDEL OTHER",
/* 148 */ "doublequotedcontent ::= BACKTICK OTHER",
/* 149 */ "doublequotedcontent ::= OTHER",
/* 150 */ "text ::= text textelement",
/* 151 */ "text ::= textelement",
/* 152 */ "textelement ::= OTHER",
/* 153 */ "textelement ::= LDEL",
);
/**
* This function returns the symbolic name associated with a token
* value.
* @param int
* @return string
*/
function tokenName($tokenType)
{
if ($tokenType === 0) {
return 'End of Input';
}
if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) {
return $this->yyTokenName[$tokenType];
} else {
return "Unknown";
}
}
/**
* The following function deletes the value associated with a
* symbol. The symbol can be either a terminal or nonterminal.
* @param int the symbol code
* @param mixed the symbol's value
*/
static function yy_destructor($yymajor, $yypminor)
{
switch ($yymajor) {
/* Here is inserted the actions which take place when a
** terminal or non-terminal is destroyed. This can happen
** when the symbol is popped from the stack during a
** reduce or during error processing or when a parser is
** being destroyed before it is finished parsing.
**
** Note: during a reduce, the only symbols destroyed are those
** which appear on the RHS of the rule, but which are not used
** inside the C code.
*/
default: break; /* If no destructor action specified: do nothing */
}
}
/**
* Pop the parser's stack once.
*
* If there is a destructor routine associated with the token which
* is popped from the stack, then call it.
*
* Return the major token number for the symbol popped.
* @param TP_yyParser
* @return int
*/
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;
}
/**
* Deallocate and destroy a parser. Destructors are all called for
* all stack elements before shutting the parser down.
*/
function __destruct()
{
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
if (is_resource(self::$yyTraceFILE)) {
fclose(self::$yyTraceFILE);
}
}
/**
* Based on the current state and parser stack, get a list of all
* possible lookahead tokens
* @param int
* @return array
*/
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 += 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);
return array_unique($expected);
}
/**
* Based on the parser state and current parser stack, determine whether
* the lookahead token is possible.
*
* The parser will convert the token value to an error token if not. This
* catches some unusual edge cases where the parser would fail.
* @param int
* @return bool
*/
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;
}
/**
* Find the appropriate action for a parser given the terminal
* look-ahead token iLookAhead.
*
* If the look-ahead token is YYNOCODE, then check to see if the action is
* independent of the look-ahead. If it is, return the action, otherwise
* return YY_NO_ACTION.
* @param int The look-ahead token
*/
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];
}
}
/**
* Find the appropriate action for a parser given the non-terminal
* look-ahead token $iLookAhead.
*
* If the look-ahead token is self::YYNOCODE, then check to see if the action is
* independent of the look-ahead. If it is, return the action, otherwise
* return self::YY_NO_ACTION.
* @param int Current state number
* @param int The look-ahead token
*/
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];
}
}
/**
* Perform a shift action.
* @param int The new state to shift in
* @param int The major token to shift in
* @param mixed the minor token to shift in
*/
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();
}
/* Here code is inserted which will execute if the parser
** stack ever overflows */
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");
}
}
/**
* The following table contains information about every rule that
* is used during the reduce.
*
* <pre>
* array(
* array(
* int $lhs; Symbol on the left-hand side of the rule
* int $nrhs; Number of right-hand side symbols in the rule
* ),...
* );
* </pre>
*/
static public $yyRuleInfo = array(
array( 'lhs' => 70, 'rhs' => 1 ),
array( 'lhs' => 71, 'rhs' => 1 ),
array( 'lhs' => 71, 'rhs' => 2 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 3 ),
array( 'lhs' => 72, 'rhs' => 3 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 3 ),
array( 'lhs' => 72, 'rhs' => 3 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 72, 'rhs' => 1 ),
array( 'lhs' => 73, 'rhs' => 6 ),
array( 'lhs' => 73, 'rhs' => 4 ),
array( 'lhs' => 73, 'rhs' => 4 ),
array( 'lhs' => 73, 'rhs' => 6 ),
array( 'lhs' => 73, 'rhs' => 6 ),
array( 'lhs' => 73, 'rhs' => 4 ),
array( 'lhs' => 73, 'rhs' => 5 ),
array( 'lhs' => 73, 'rhs' => 5 ),
array( 'lhs' => 73, 'rhs' => 5 ),
array( 'lhs' => 73, 'rhs' => 11 ),
array( 'lhs' => 85, 'rhs' => 2 ),
array( 'lhs' => 85, 'rhs' => 1 ),
array( 'lhs' => 73, 'rhs' => 8 ),
array( 'lhs' => 73, 'rhs' => 8 ),
array( 'lhs' => 78, 'rhs' => 2 ),
array( 'lhs' => 78, 'rhs' => 1 ),
array( 'lhs' => 78, 'rhs' => 0 ),
array( 'lhs' => 88, 'rhs' => 4 ),
array( 'lhs' => 83, 'rhs' => 1 ),
array( 'lhs' => 83, 'rhs' => 3 ),
array( 'lhs' => 82, 'rhs' => 4 ),
array( 'lhs' => 77, 'rhs' => 1 ),
array( 'lhs' => 77, 'rhs' => 1 ),
array( 'lhs' => 77, 'rhs' => 4 ),
array( 'lhs' => 77, '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' => 1 ),
array( 'lhs' => 90, 'rhs' => 1 ),
array( 'lhs' => 90, 'rhs' => 1 ),
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' => 1 ),
array( 'lhs' => 86, 'rhs' => 3 ),
array( 'lhs' => 86, 'rhs' => 3 ),
array( 'lhs' => 86, 'rhs' => 2 ),
array( 'lhs' => 86, 'rhs' => 3 ),
array( 'lhs' => 86, 'rhs' => 2 ),
array( 'lhs' => 86, 'rhs' => 3 ),
array( 'lhs' => 86, 'rhs' => 7 ),
array( 'lhs' => 86, 'rhs' => 4 ),
array( 'lhs' => 86, 'rhs' => 8 ),
array( 'lhs' => 86, 'rhs' => 3 ),
array( 'lhs' => 86, 'rhs' => 5 ),
array( 'lhs' => 86, 'rhs' => 6 ),
array( 'lhs' => 86, 'rhs' => 1 ),
array( 'lhs' => 75, 'rhs' => 1 ),
array( 'lhs' => 75, 'rhs' => 4 ),
array( 'lhs' => 75, 'rhs' => 1 ),
array( 'lhs' => 75, 'rhs' => 3 ),
array( 'lhs' => 75, 'rhs' => 3 ),
array( 'lhs' => 76, 'rhs' => 3 ),
array( 'lhs' => 96, 'rhs' => 2 ),
array( 'lhs' => 96, 'rhs' => 0 ),
array( 'lhs' => 98, 'rhs' => 2 ),
array( 'lhs' => 98, 'rhs' => 2 ),
array( 'lhs' => 98, 'rhs' => 2 ),
array( 'lhs' => 98, 'rhs' => 4 ),
array( 'lhs' => 98, 'rhs' => 3 ),
array( 'lhs' => 98, 'rhs' => 3 ),
array( 'lhs' => 98, 'rhs' => 2 ),
array( 'lhs' => 84, 'rhs' => 1 ),
array( 'lhs' => 84, 'rhs' => 2 ),
array( 'lhs' => 99, 'rhs' => 1 ),
array( 'lhs' => 99, 'rhs' => 3 ),
array( 'lhs' => 97, 'rhs' => 2 ),
array( 'lhs' => 95, 'rhs' => 1 ),
array( 'lhs' => 95, 'rhs' => 2 ),
array( 'lhs' => 100, 'rhs' => 3 ),
array( 'lhs' => 100, 'rhs' => 3 ),
array( 'lhs' => 100, 'rhs' => 5 ),
array( 'lhs' => 100, 'rhs' => 6 ),
array( 'lhs' => 100, 'rhs' => 2 ),
array( 'lhs' => 91, 'rhs' => 4 ),
array( 'lhs' => 93, 'rhs' => 4 ),
array( 'lhs' => 94, 'rhs' => 3 ),
array( 'lhs' => 94, 'rhs' => 1 ),
array( 'lhs' => 94, 'rhs' => 0 ),
array( 'lhs' => 79, 'rhs' => 3 ),
array( 'lhs' => 79, 'rhs' => 2 ),
array( 'lhs' => 80, 'rhs' => 2 ),
array( 'lhs' => 80, 'rhs' => 0 ),
array( 'lhs' => 101, 'rhs' => 2 ),
array( 'lhs' => 101, 'rhs' => 2 ),
array( 'lhs' => 81, 'rhs' => 1 ),
array( 'lhs' => 81, 'rhs' => 2 ),
array( 'lhs' => 81, 'rhs' => 3 ),
2009-08-12 16:43:37 +00:00
array( 'lhs' => 102, 'rhs' => 1 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 2 ),
array( 'lhs' => 102, 'rhs' => 2 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 2 ),
array( 'lhs' => 102, 'rhs' => 2 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 102, 'rhs' => 3 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 103, 'rhs' => 1 ),
array( 'lhs' => 104, 'rhs' => 1 ),
array( 'lhs' => 104, 'rhs' => 1 ),
array( 'lhs' => 104, 'rhs' => 1 ),
array( 'lhs' => 87, 'rhs' => 3 ),
array( 'lhs' => 105, 'rhs' => 1 ),
array( 'lhs' => 105, 'rhs' => 3 ),
array( 'lhs' => 105, 'rhs' => 0 ),
array( 'lhs' => 106, 'rhs' => 3 ),
array( 'lhs' => 106, 'rhs' => 3 ),
array( 'lhs' => 106, 'rhs' => 1 ),
array( 'lhs' => 92, 'rhs' => 2 ),
array( 'lhs' => 92, 'rhs' => 1 ),
array( 'lhs' => 107, 'rhs' => 3 ),
array( 'lhs' => 107, 'rhs' => 3 ),
array( 'lhs' => 107, 'rhs' => 2 ),
array( 'lhs' => 107, 'rhs' => 3 ),
array( 'lhs' => 107, 'rhs' => 1 ),
array( 'lhs' => 107, 'rhs' => 2 ),
array( 'lhs' => 107, 'rhs' => 2 ),
array( 'lhs' => 107, 'rhs' => 2 ),
array( 'lhs' => 107, 'rhs' => 1 ),
array( 'lhs' => 74, 'rhs' => 2 ),
array( 'lhs' => 74, 'rhs' => 1 ),
array( 'lhs' => 108, 'rhs' => 1 ),
array( 'lhs' => 108, 'rhs' => 1 ),
);
/**
* The following table contains a mapping of reduce action to method name
* that handles the reduction.
*
* If a rule is not set, it has no handler.
*/
static public $yyReduceMap = array(
0 => 0,
39 => 0,
2009-05-09 12:44:43 +00:00
46 => 0,
47 => 0,
49 => 0,
2009-05-09 12:44:43 +00:00
50 => 0,
51 => 0,
67 => 0,
133 => 0,
1 => 1,
36 => 1,
43 => 1,
2009-05-09 12:44:43 +00:00
44 => 1,
45 => 1,
80 => 1,
103 => 1,
140 => 1,
149 => 1,
151 => 1,
152 => 1,
153 => 1,
2 => 2,
71 => 2,
139 => 2,
147 => 2,
150 => 2,
3 => 3,
4 => 4,
5 => 5,
6 => 6,
7 => 7,
8 => 8,
9 => 9,
10 => 10,
11 => 11,
12 => 12,
13 => 13,
14 => 14,
15 => 15,
16 => 16,
17 => 17,
18 => 18,
19 => 19,
20 => 20,
21 => 21,
22 => 22,
23 => 23,
24 => 24,
25 => 25,
29 => 25,
95 => 25,
138 => 25,
26 => 26,
27 => 27,
28 => 28,
30 => 30,
31 => 31,
32 => 32,
33 => 33,
34 => 34,
35 => 35,
2009-05-09 12:44:43 +00:00
37 => 37,
38 => 38,
40 => 40,
41 => 41,
2009-05-09 12:44:43 +00:00
42 => 42,
48 => 48,
52 => 52,
53 => 53,
2009-05-09 12:44:43 +00:00
54 => 54,
56 => 54,
55 => 55,
57 => 57,
58 => 58,
59 => 59,
60 => 60,
61 => 61,
62 => 62,
63 => 63,
2009-05-09 12:44:43 +00:00
64 => 64,
65 => 65,
66 => 66,
68 => 68,
69 => 69,
70 => 70,
2009-04-08 14:47:28 +00:00
72 => 72,
100 => 72,
73 => 73,
74 => 74,
75 => 75,
76 => 76,
78 => 76,
77 => 77,
79 => 79,
81 => 81,
82 => 82,
83 => 83,
105 => 83,
2009-04-08 14:47:28 +00:00
84 => 84,
85 => 85,
86 => 86,
87 => 87,
88 => 88,
89 => 89,
90 => 90,
91 => 91,
92 => 92,
93 => 93,
94 => 94,
96 => 96,
97 => 97,
98 => 98,
99 => 99,
101 => 101,
102 => 102,
104 => 104,
106 => 106,
107 => 107,
110 => 107,
108 => 108,
2009-08-12 16:43:37 +00:00
109 => 109,
111 => 111,
112 => 112,
113 => 113,
118 => 113,
114 => 114,
117 => 114,
115 => 115,
120 => 115,
2009-08-12 16:43:37 +00:00
116 => 116,
119 => 116,
121 => 121,
122 => 122,
123 => 123,
124 => 124,
125 => 125,
126 => 126,
127 => 127,
128 => 128,
129 => 129,
2009-08-12 16:43:37 +00:00
130 => 130,
131 => 131,
132 => 132,
134 => 134,
135 => 135,
2009-08-12 16:43:37 +00:00
136 => 136,
137 => 137,
141 => 141,
142 => 142,
143 => 143,
144 => 144,
145 => 145,
146 => 146,
148 => 148,
);
/* Beginning here are the reduction cases. A typical example
** follows:
** #line <lineno> <grammarfile>
** function yy_r0($yymsp){ ... } // User supplied code
** #line <lineno> <thisfile>
*/
#line 74 "internal.templateparser.y"
function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
#line 1904 "internal.templateparser.php"
#line 80 "internal.templateparser.y"
function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
#line 1907 "internal.templateparser.php"
#line 82 "internal.templateparser.y"
function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 1910 "internal.templateparser.php"
#line 88 "internal.templateparser.y"
function yy_r3(){if ($this->compiler->has_code) {
$tmp =''; foreach ($this->prefix_code as $code) {$tmp.=$code;} $this->prefix_code=array();
$this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,$this->nocache,true);
} else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->nocache=false; }
#line 1916 "internal.templateparser.php"
#line 93 "internal.templateparser.y"
function yy_r4(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0]; }
#line 1919 "internal.templateparser.php"
#line 96 "internal.templateparser.y"
function yy_r5(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s2); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor.$s2[0], $this->compiler,false,false); }
#line 1922 "internal.templateparser.php"
#line 98 "internal.templateparser.y"
function yy_r6(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false,false); }
#line 1925 "internal.templateparser.php"
#line 100 "internal.templateparser.y"
function yy_r7(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false,false); }
#line 1928 "internal.templateparser.php"
#line 102 "internal.templateparser.y"
function yy_r8(){if (!$this->template->security) {
$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler, false,true);
} elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_QUOTE) {
$this->_retvalue = $this->cacher->processNocacheCode(htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES), $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_PASSTHRU || $this->smarty->security_policy->php_handling == SMARTY_PHP_ALLOW) {
$this->_retvalue = $this->cacher->processNocacheCode("<?php echo '".$this->yystack[$this->yyidx + 0]->minor."';?>\n", $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue = '';
} }
#line 1939 "internal.templateparser.php"
#line 112 "internal.templateparser.y"
function yy_r9(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0];
if (!$this->template->security) {
$this->_retvalue .= $this->cacher->processNocacheCode('<?php '.$this->yystack[$this->yyidx + -1]->minor.' ?>', $this->compiler, false,true);
} elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_QUOTE) {
$this->_retvalue .= $this->cacher->processNocacheCode(htmlspecialchars('<?php '.$this->yystack[$this->yyidx + -1]->minor.' ?>', ENT_QUOTES), $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_PASSTHRU || $this->smarty->security_policy->php_handling == SMARTY_PHP_ALLOW) {
$this->_retvalue .= $this->cacher->processNocacheCode("<?php echo '<?php ".$this->yystack[$this->yyidx + -1]->minor." ?>';?>\n", $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue .= '';
} }
#line 1951 "internal.templateparser.php"
#line 123 "internal.templateparser.y"
function yy_r10(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0];
if (!$this->template->security) {
$this->_retvalue .= $this->cacher->processNocacheCode($this->compiler->compileTag('print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)), $this->compiler, false,true);
} elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_QUOTE) {
$this->_retvalue .= $this->cacher->processNocacheCode(htmlspecialchars('<?php '.t.' ?>', ENT_QUOTES), $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_PASSTHRU || $this->smarty->security_policy->php_handling == SMARTY_PHP_ALLOW) {
$this->_retvalue .= $this->cacher->processNocacheCode("<?php echo '<?php ".t." ?>';?>\n", $this->compiler, false, false);
}elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) {
$this->_retvalue .= '';
} }
#line 1963 "internal.templateparser.php"
#line 134 "internal.templateparser.y"
function yy_r11(){preg_match('/\s*/',$this->yystack[$this->yyidx + 0]->minor,$s); $this->_retvalue = $s[0].$this->cacher->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true, true); }
#line 1966 "internal.templateparser.php"
#line 135 "internal.templateparser.y"
function yy_r12(){$this->_retvalue = $this->cacher->processNocacheCode("<?php echo '?>';?>\n", $this->compiler, true, true); }
#line 1969 "internal.templateparser.php"
#line 137 "internal.templateparser.y"
function yy_r13(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false,false); }
#line 1972 "internal.templateparser.php"
#line 144 "internal.templateparser.y"
function yy_r14(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); }
#line 1975 "internal.templateparser.php"
#line 146 "internal.templateparser.y"
function yy_r15(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
#line 1978 "internal.templateparser.php"
#line 148 "internal.templateparser.y"
function yy_r16(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
#line 1981 "internal.templateparser.php"
#line 150 "internal.templateparser.y"
function yy_r17(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); }
#line 1984 "internal.templateparser.php"
#line 152 "internal.templateparser.y"
function yy_r18(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -5]->minor,$s); $this->_retvalue = $s[0].'<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) {
$this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>";
} else {
if (is_callable($this->yystack[$this->yyidx + -3]->minor[0])) {
if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -3]->minor[0], $this->compiler)) {
$this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>";
}
} else {
$this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -3]->minor[0] . "\"");
}
}
}
#line 1999 "internal.templateparser.php"
#line 166 "internal.templateparser.y"
function yy_r19(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -3]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); }
#line 2002 "internal.templateparser.php"
#line 168 "internal.templateparser.y"
function yy_r20(){ preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2005 "internal.templateparser.php"
#line 170 "internal.templateparser.y"
function yy_r21(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2011 "internal.templateparser.php"
#line 174 "internal.templateparser.y"
function yy_r22(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -4]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2017 "internal.templateparser.php"
#line 179 "internal.templateparser.y"
function yy_r23(){
if ($this->yystack[$this->yyidx + -9]->minor != 'for') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -9]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -10]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('start'=>$this->yystack[$this->yyidx + -7]->minor,'ifexp'=>$this->yystack[$this->yyidx + -5]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2024 "internal.templateparser.php"
#line 184 "internal.templateparser.y"
function yy_r24(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
#line 2027 "internal.templateparser.php"
#line 185 "internal.templateparser.y"
function yy_r25(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
#line 2030 "internal.templateparser.php"
#line 187 "internal.templateparser.y"
function yy_r26(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -7]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2037 "internal.templateparser.php"
#line 192 "internal.templateparser.y"
function yy_r27(){
if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') {
$this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\"");
}
preg_match('/\s*/',$this->yystack[$this->yyidx + -7]->minor,$s); $this->_retvalue = $s[0].$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); }
#line 2044 "internal.templateparser.php"
#line 202 "internal.templateparser.y"
function yy_r28(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
#line 2047 "internal.templateparser.php"
#line 206 "internal.templateparser.y"
function yy_r30(){ $this->_retvalue = array(); }
#line 2050 "internal.templateparser.php"
#line 209 "internal.templateparser.y"
function yy_r31(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
#line 2053 "internal.templateparser.php"
#line 214 "internal.templateparser.y"
function yy_r32(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
#line 2056 "internal.templateparser.php"
#line 215 "internal.templateparser.y"
function yy_r33(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
#line 2059 "internal.templateparser.php"
#line 217 "internal.templateparser.y"
function yy_r34(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
#line 2062 "internal.templateparser.php"
#line 223 "internal.templateparser.y"
function yy_r35(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
#line 2065 "internal.templateparser.php"
#line 227 "internal.templateparser.y"
function yy_r37(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
#line 2068 "internal.templateparser.php"
#line 228 "internal.templateparser.y"
function yy_r38(){
if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) {
$this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")";
} else {
if (is_callable($this->yystack[$this->yyidx + -1]->minor[0])) {
if (!$this->template->security || $this->smarty->security_handler->isTrustedModifier($this->yystack[$this->yyidx + -1]->minor[0], $this->compiler)) {
$this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")";
}
} else {
$this->compiler->trigger_template_error ("unknown modifier \"" . $this->yystack[$this->yyidx + -1]->minor[0] . "\"");
}
}
}
#line 2083 "internal.templateparser.php"
#line 245 "internal.templateparser.y"
function yy_r40(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2086 "internal.templateparser.php"
#line 247 "internal.templateparser.y"
function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; }
#line 2089 "internal.templateparser.php"
#line 249 "internal.templateparser.y"
function yy_r42(){ $this->_retvalue = '('. $this->yystack[$this->yyidx + -2]->minor . ').(' . $this->yystack[$this->yyidx + 0]->minor. ')'; }
#line 2092 "internal.templateparser.php"
#line 269 "internal.templateparser.y"
function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2095 "internal.templateparser.php"
#line 277 "internal.templateparser.y"
function yy_r52(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
#line 2098 "internal.templateparser.php"
#line 279 "internal.templateparser.y"
function yy_r53(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; }
#line 2101 "internal.templateparser.php"
#line 280 "internal.templateparser.y"
function yy_r54(){ $this->_retvalue = "''"; }
#line 2104 "internal.templateparser.php"
#line 282 "internal.templateparser.y"
function yy_r55(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; }
#line 2107 "internal.templateparser.php"
#line 285 "internal.templateparser.y"
function yy_r57(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2110 "internal.templateparser.php"
#line 286 "internal.templateparser.y"
function yy_r58(){ $this->prefix_number++; $this->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; }
#line 2113 "internal.templateparser.php"
#line 288 "internal.templateparser.y"
function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2116 "internal.templateparser.php"
#line 289 "internal.templateparser.y"
function yy_r60(){ $this->prefix_number++; $this->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2119 "internal.templateparser.php"
#line 291 "internal.templateparser.y"
function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2122 "internal.templateparser.php"
#line 293 "internal.templateparser.y"
function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2125 "internal.templateparser.php"
#line 295 "internal.templateparser.y"
function yy_r63(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2128 "internal.templateparser.php"
#line 297 "internal.templateparser.y"
function yy_r64(){ $this->prefix_number++; $this->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 2131 "internal.templateparser.php"
#line 303 "internal.templateparser.y"
function yy_r65(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$this->yystack[$this->yyidx + 0]->minor['index']);} else {
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} }
#line 2135 "internal.templateparser.php"
#line 306 "internal.templateparser.y"
function yy_r66(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; }
#line 2138 "internal.templateparser.php"
#line 310 "internal.templateparser.y"
function yy_r68(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
#line 2141 "internal.templateparser.php"
#line 311 "internal.templateparser.y"
function yy_r69(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
#line 2144 "internal.templateparser.php"
#line 314 "internal.templateparser.y"
function yy_r70(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); }
#line 2147 "internal.templateparser.php"
#line 322 "internal.templateparser.y"
function yy_r72(){return; }
#line 2150 "internal.templateparser.php"
#line 326 "internal.templateparser.y"
function yy_r73(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
#line 2153 "internal.templateparser.php"
#line 327 "internal.templateparser.y"
function yy_r74(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
#line 2156 "internal.templateparser.php"
#line 328 "internal.templateparser.y"
function yy_r75(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; }
#line 2159 "internal.templateparser.php"
#line 329 "internal.templateparser.y"
function yy_r76(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
#line 2162 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 331 "internal.templateparser.y"
function yy_r77(){ $this->_retvalue = '['.$this->compiler->compileTag('internal_smarty_var','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
#line 2165 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 335 "internal.templateparser.y"
function yy_r79(){$this->_retvalue = ''; }
#line 2168 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 343 "internal.templateparser.y"
function yy_r81(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2171 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 345 "internal.templateparser.y"
function yy_r82(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
#line 2174 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 347 "internal.templateparser.y"
function yy_r83(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
#line 2177 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 352 "internal.templateparser.y"
function yy_r84(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else {
2009-09-26 10:32:36 +00:00
$this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} }
#line 2181 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 355 "internal.templateparser.y"
function yy_r85(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
#line 2184 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 357 "internal.templateparser.y"
function yy_r86(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2187 "internal.templateparser.php"
#line 359 "internal.templateparser.y"
function yy_r87(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2190 "internal.templateparser.php"
#line 360 "internal.templateparser.y"
function yy_r88(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
#line 2193 "internal.templateparser.php"
#line 361 "internal.templateparser.y"
function yy_r89(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
#line 2196 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 362 "internal.templateparser.y"
function yy_r90(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; }
#line 2199 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 364 "internal.templateparser.y"
function yy_r91(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2202 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 370 "internal.templateparser.y"
function yy_r92(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) {
$this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")";
} else {
$this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
}
} }
#line 2211 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 381 "internal.templateparser.y"
function yy_r93(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
#line 2214 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 385 "internal.templateparser.y"
function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; }
#line 2217 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 389 "internal.templateparser.y"
function yy_r96(){ return; }
#line 2220 "internal.templateparser.php"
#line 394 "internal.templateparser.y"
function yy_r97(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); }
#line 2223 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 395 "internal.templateparser.y"
function yy_r98(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); }
#line 2226 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 402 "internal.templateparser.y"
function yy_r99(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2229 "internal.templateparser.php"
#line 406 "internal.templateparser.y"
function yy_r101(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; }
#line 2232 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 407 "internal.templateparser.y"
function yy_r102(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
#line 2235 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 414 "internal.templateparser.y"
function yy_r104(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2238 "internal.templateparser.php"
#line 419 "internal.templateparser.y"
function yy_r106(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; }
#line 2241 "internal.templateparser.php"
#line 420 "internal.templateparser.y"
function yy_r107(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
#line 2244 "internal.templateparser.php"
#line 421 "internal.templateparser.y"
function yy_r108(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2247 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 422 "internal.templateparser.y"
function yy_r109(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2250 "internal.templateparser.php"
#line 424 "internal.templateparser.y"
function yy_r111(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2253 "internal.templateparser.php"
#line 425 "internal.templateparser.y"
function yy_r112(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2256 "internal.templateparser.php"
#line 426 "internal.templateparser.y"
function yy_r113(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
#line 2259 "internal.templateparser.php"
#line 427 "internal.templateparser.y"
function yy_r114(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
#line 2262 "internal.templateparser.php"
#line 428 "internal.templateparser.y"
function yy_r115(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2265 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 429 "internal.templateparser.y"
function yy_r116(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
#line 2268 "internal.templateparser.php"
#line 435 "internal.templateparser.y"
function yy_r121(){$this->_retvalue = '=='; }
#line 2271 "internal.templateparser.php"
#line 436 "internal.templateparser.y"
function yy_r122(){$this->_retvalue = '!='; }
#line 2274 "internal.templateparser.php"
#line 437 "internal.templateparser.y"
function yy_r123(){$this->_retvalue = '>'; }
#line 2277 "internal.templateparser.php"
#line 438 "internal.templateparser.y"
function yy_r124(){$this->_retvalue = '<'; }
#line 2280 "internal.templateparser.php"
#line 439 "internal.templateparser.y"
function yy_r125(){$this->_retvalue = '>='; }
#line 2283 "internal.templateparser.php"
#line 440 "internal.templateparser.y"
function yy_r126(){$this->_retvalue = '<='; }
#line 2286 "internal.templateparser.php"
#line 441 "internal.templateparser.y"
function yy_r127(){$this->_retvalue = '==='; }
#line 2289 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 442 "internal.templateparser.y"
function yy_r128(){$this->_retvalue = '!=='; }
#line 2292 "internal.templateparser.php"
#line 444 "internal.templateparser.y"
function yy_r129(){$this->_retvalue = '&&'; }
#line 2295 "internal.templateparser.php"
#line 445 "internal.templateparser.y"
function yy_r130(){$this->_retvalue = '||'; }
#line 2298 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 446 "internal.templateparser.y"
function yy_r131(){$this->_retvalue = ' XOR '; }
#line 2301 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 451 "internal.templateparser.y"
function yy_r132(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
#line 2304 "internal.templateparser.php"
#line 453 "internal.templateparser.y"
function yy_r134(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
#line 2307 "internal.templateparser.php"
#line 454 "internal.templateparser.y"
function yy_r135(){ return; }
#line 2310 "internal.templateparser.php"
#line 455 "internal.templateparser.y"
function yy_r136(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2313 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 456 "internal.templateparser.y"
function yy_r137(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2316 "internal.templateparser.php"
#line 464 "internal.templateparser.y"
function yy_r141(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; }
#line 2319 "internal.templateparser.php"
#line 465 "internal.templateparser.y"
function yy_r142(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; }
#line 2322 "internal.templateparser.php"
#line 466 "internal.templateparser.y"
function yy_r143(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; }
#line 2325 "internal.templateparser.php"
#line 467 "internal.templateparser.y"
function yy_r144(){preg_match('/\s*/',$this->yystack[$this->yyidx + -2]->minor,$s); $this->_retvalue = $s[0].'".('.$this->yystack[$this->yyidx + -1]->minor.')."'; }
#line 2328 "internal.templateparser.php"
#line 468 "internal.templateparser.y"
function yy_r145(){ $this->prefix_number++; $this->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 2331 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 469 "internal.templateparser.y"
function yy_r146(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2334 "internal.templateparser.php"
2009-09-26 10:32:36 +00:00
#line 471 "internal.templateparser.y"
function yy_r148(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; }
#line 2337 "internal.templateparser.php"
/**
* placeholder for the left hand side in a reduce operation.
*
* For a parser with a rule like this:
* <pre>
* rule(A) ::= B. { A = 1; }
* </pre>
*
* The parser will translate to something like:
*
* <code>
* function yy_r0(){$this->_retvalue = 1;}
* </code>
*/
private $_retvalue;
/**
* Perform a reduce action and the shift that must immediately
* follow the reduce.
*
* For a rule such as:
*
* <pre>
* A ::= B blah C. { dosomething(); }
* </pre>
*
* This function will first call the action, if any, ("dosomething();" in our
* example), and then it will pop three states from the stack,
* one for each entry on the right-hand side of the expression
* (B, blah, and C in our example rule), and then push the result of the action
* back on to the stack with the resulting state reduced to (as described in the .out
* file)
* @param int Number of the rule by which to reduce
*/
function yy_reduce($yyruleno)
{
//int $yygoto; /* The next state */
//int $yyact; /* The next action */
//mixed $yygotominor; /* The LHS of the rule reduced */
//TP_yyStackEntry $yymsp; /* The top of the parser's stack */
//int $yysize; /* Amount to pop the stack */
$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 we are not debugging and the reduce action popped at least
** one element off the stack, then we can push the new element back
** onto the stack here, and skip the stack overflow test in yy_shift().
** That gives a significant speed improvement. */
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();
}
}
/**
* The following code executes when the parse fails
*
* Code from %parse_fail is inserted here
*/
function yy_parse_failed()
{
if (self::$yyTraceFILE) {
fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt);
}
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
/* Here code is inserted which will be executed whenever the
** parser fails */
}
/**
* The following code executes when a syntax error first occurs.
*
* %syntax_error code is inserted here
* @param int The major type of the error token
* @param mixed The minor type of the error token
*/
function yy_syntax_error($yymajor, $TOKEN)
{
#line 55 "internal.templateparser.y"
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_template_error();
#line 2455 "internal.templateparser.php"
}
/**
* The following is executed when the parser accepts
*
* %parse_accept code is inserted here
*/
function yy_accept()
{
if (self::$yyTraceFILE) {
fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt);
}
while ($this->yyidx >= 0) {
$stack = $this->yy_pop_parser_stack();
}
/* Here code is inserted which will be executed whenever the
** parser accepts */
#line 47 "internal.templateparser.y"
$this->successful = !$this->internalError;
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
#line 2480 "internal.templateparser.php"
}
/**
* The main parser program.
*
* The first argument is the major token number. The second is
* the token value string as scanned from the input.
*
* @param int the token number
* @param mixed the token value
* @param mixed any extra arguments that should be passed to handlers
*/
function doParse($yymajor, $yytokenvalue)
{
// $yyact; /* The parser action. */
// $yyendofinput; /* True if we are at the end of input */
$yyerrorhit = 0; /* True if yymajor has invoked an error */
/* (re)initialize the parser, if necessary */
if ($this->yyidx === null || $this->yyidx < 0) {
/* if ($yymajor == 0) return; // not sure why this was here... */
$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) {
/* A syntax error has occurred.
** The response to an error depends upon whether or not the
** grammar defines an error token "ERROR".
**
** This is what we do if the grammar does define ERROR:
**
** * Call the %syntax_error function.
**
** * Begin popping the stack until we enter a state where
** it is legal to shift the error symbol, then shift
** the error symbol.
**
** * Set the error count to three.
**
** * Begin accepting and shifting new tokens. No new error
** processing will occur until three tokens have been
** shifted successfully.
**
*/
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 {
/* YYERRORSYMBOL is not defined */
/* This is what we do if the grammar does not define ERROR:
**
** * Report an error message, and throw away the input token.
**
** * If the input token is $, then fail the parse.
**
** As before, subsequent error messages are suppressed until
** three input tokens have been successfully shifted.
*/
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);
}
}