69 public function push(
$type, $value, $reference = NULL) {
70 $this->_stack[$this->_count++] =
array(
'type' =>
$type,
72 'reference' => $reference
74 if (
$type ==
'Function') {
76 if ($localeFunction != $value) {
77 $this->_stack[($this->_count - 1)][
'localeValue'] = $localeFunction;
87 public function pop() {
88 if ($this->_count > 0) {
101 if ($this->_count -
$n < 0) {
104 return $this->_stack[$this->_count -
$n];
111 $this->_stack =
array();
last($n=1)
Return an entry from the stack without removing it.
pop()
Pop the last entry from the stack.
static _localeFunc($function)
Create styles array
The data for the language used.
count()
Return the number of entries on the stack.
push($type, $value, $reference=NULL)
Push a new entry onto the stack.