This file is indexed.

/usr/share/php/HTML/Template/ITX.php is in php-html-template-it 1:1.3.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
<?php
/**
 * Integrated Template - IT
 *
 * PHP version 4
 *
 * Copyright (c) 1997-2007 Ulf Wendel, Pierre-Alain Joye,
 *                         David Soria Parra
 *
 * This source file is subject to the New BSD license, That is bundled
 * with this package in the file LICENSE, and is available through
 * the world-wide-web at
 * http://www.opensource.org/licenses/bsd-license.php
 * If you did not receive a copy of the new BSDlicense and are unable
 * to obtain it through the world-wide-web, please send a note to
 * pajoye@php.net so we can mail you a copy immediately.
 *
 * Author: Ulf Wendel <ulf.wendel@phpdoc.de>
 *         Pierre-Alain Joye <pajoye@php.net>
 *         David Soria Parra <dsp@php.net>
 *
 * @category HTML
 * @package  HTML_Template_IT
 * @author   Ulf Wendel <uw@netuse.de>
 * @license  BSD http://www.opensource.org/licenses/bsd-license.php
 * @version  CVS: $Id: ITX.php 295086 2010-02-15 06:31:36Z clockwerx $
 * @link     http://pear.php.net/packages/HTML_Template_IT
 * @access   public
 */

require_once 'HTML/Template/IT.php';
require_once 'HTML/Template/IT_Error.php';

/**
* Integrated Template Extension - ITX
*
* With this class you get the full power of the phplib template class.
* You may have one file with blocks in it but you have as well one main file
* and multiple files one for each block. This is quite usefull when you have
* user configurable websites. Using blocks not in the main template allows
* you to modify some parts of your layout easily.
*
* Note that you can replace an existing block and add new blocks at runtime.
* Adding new blocks means changing a variable placeholder to a block.
*
 * @category HTML
 * @package  HTML_Template_IT
 * @author   Ulf Wendel <uw@netuse.de>
 * @license  BSD http://www.opensource.org/licenses/bsd-license.php
 * @link     http://pear.php.net/packages/HTML_Template_IT
 * @access   public
*/
class HTML_Template_ITX extends HTML_Template_IT
{
    /**
     * Array with all warnings.
     * @var    array
     * @access public
     * @see    $printWarning, $haltOnWarning, warning()
     */
    var $warn = array();

    /**
     * Print warnings?
     * @var    array
     * @access public
     * @see    $haltOnWarning, $warn, warning()
     */
    var $printWarning = false;

    /**
     * Call die() on warning?
     * @var    boolean
     * @access public
     * @see    $warn, $printWarning, warning()
     */
    var $haltOnWarning = false;

    /**
     * RegExp used to test for a valid blockname.
     * @var string
     * @access private
     */
    var $checkblocknameRegExp = '';

    /**
     * Functionnameprefix used when searching function calls in the template.
     * @var string
     * @access public
     */
    var $functionPrefix = 'func_';

    /**
     * Functionname RegExp.
     * @var string
     * @access public
     */
    var $functionnameRegExp = '[_a-zA-Z]+[A-Za-z_0-9]*';

    /**
     * RegExp used to grep function calls in the template.
     *
     * The variable gets set by the constructor.
     *
     * @access private
     * @var string
     * @see HTML_Template_IT()
     */
    var $functionRegExp = '';

    /**
     * List of functions found in the template.
     *
     * @access private
     * @var array
     */
    var $functions = array();

    /**
     * List of callback functions specified by the user.
     *
     * @access private
     * @var array
     */
    var $callback = array();

    /**
     * Builds some complex regexps and calls the constructor
     * of the parent class.
     *
     * Make sure that you call this constructor if you derive your own
     * template class from this one.
     *
     * @param string $root Root node?
     *
     * @access public
     * @see    HTML_Template_IT()
     */
    function HTML_Template_ITX($root = '')
    {

        $this->checkblocknameRegExp = '@' . $this->blocknameRegExp . '@';

        $this->functionRegExp = '@' . $this->functionPrefix . '(' .
                                $this->functionnameRegExp . ')\s*\(@sm';

        $this->HTML_Template_IT($root);
    } // end func constructor

    /**
     * Clears all datafields of the object and rebuild the internal blocklist
     *
     * LoadTemplatefile() and setTemplate() automatically call this function
     * when a new template is given. Don't use this function
     * unless you know what you're doing.
     *
     * @access private
     * @return null
     */
    function init()
    {
        $this->free();
        $this->buildFunctionlist();
        $this->findBlocks($this->template);

        // we don't need it any more
        $this->template = '';
        $this->buildBlockvariablelist();

    } // end func init

    /**
     * Replaces an existing block with new content.
     *
     * This function will replace a block of the template and all blocks
     * contained in the replaced block and add a new block insted, means
     * you can dynamically change your template.
     *
     * Note that changing the template structure violates one of the IT[X]
     * development goals. I've tried to write a simple to use template engine
     * supporting blocks. In contrast to other systems IT[X] analyses the way
     * you've nested blocks and knows which block belongs into another block.
     * The nesting information helps to make the API short and simple. Replacing
     * blocks does not only mean that IT[X] has to update the nesting
     * information (relatively time consumpting task) but you have to make sure
     * that you do not get confused due to the template change itself.
     *
     * @param string  $block        Blockname
     * @param string  $template     Blockcontent
     * @param boolean $keep_content true if the new block inherits the content
     *                              of the old block
     *
     * @return   boolean
     * @throws   IT_Error
     * @see      replaceBlockfile(), addBlock(), addBlockfile()
     * @access   public
     */
    function replaceBlock($block, $template, $keep_content = false)
    {
        if (!isset($this->blocklist[$block])) {
            return new IT_Error("The block "."'$block'".
            " does not exist in the template and thus it can't be replaced.",
            __FILE__, __LINE__);
        }

        if ($template == '') {
            return new IT_Error('No block content given.', __FILE__, __LINE__);
        }

        if ($keep_content) {
            $blockdata = $this->blockdata[$block];
        }

        // remove all kinds of links to the block / data of the block
        $this->removeBlockData($block);

        $template = "<!-- BEGIN $block -->" . $template . "<!-- END $block -->";
        $parents  = $this->blockparents[$block];

        $this->findBlocks($template);
        $this->blockparents[$block] = $parents;

        // KLUDGE: rebuild the list for all block - could be done faster
        $this->buildBlockvariablelist();

        if ($keep_content) {
            $this->blockdata[$block] = $blockdata;
        }

        // old TODO - I'm not sure if we need this
        // update caches

        return true;
    } // end func replaceBlock

    /**
     * Replaces an existing block with new content from a file.
     *
     * @param string  $block        Blockname
     * @param string  $filename     Name of the file that contains the blockcontent
     * @param boolean $keep_content true if the new block inherits the content of
     *                              the old block
     *
     * @brother replaceBlock()
     * @access  public
     * @return null
     */
    function replaceBlockfile($block, $filename, $keep_content = false)
    {
        return $this->replaceBlock($block, $this->getFile($filename), $keep_content);
    } // end func replaceBlockfile

    /**
     * Adds a block to the template changing a variable placeholder
     * to a block placeholder.
     *
     * Add means "replace a variable placeholder by a new block".
     * This is different to PHPLibs templates. The function loads a
     * block, creates a handle for it and assigns it to a certain
     * variable placeholder. To to the same with PHPLibs templates you would
     * call set_file() to create the handle and parse() to assign the
     * parsed block to a variable. By this PHPLibs templates assume
     * that you tend to assign a block to more than one one placeholder.
     * To assign a parsed block to more than only the placeholder you specify
     * in this function you have to use a combination of getBlock()
     * and setVariable().
     *
     * As no updates to cached data is necessary addBlock() and addBlockfile()
     * are rather "cheap" meaning quick operations.
     *
     * The block content must not start with <!-- BEGIN blockname -->
     * and end with <!-- END blockname --> this would cause overhead and
     * produce an error.
     *
     * @param string $placeholder Name of the variable placeholder, the name
     *                            must be unique within the template.
     * @param string $blockname   Name of the block to be added
     * @param string $template    Content of the block
     *
     * @return   boolean
     * @throws   IT_Error
     * @see      addBlockfile()
     * @access   public
     */
    function addBlock($placeholder, $blockname, $template)
    {
        // Don't trust any user even if it's a programmer or yourself...
        if ($placeholder == '') {
            return new IT_Error('No variable placeholder given.',
                                __FILE__, __LINE__);
        } elseif ($blockname == '' ||
                    !preg_match($this->checkblocknameRegExp, $blockname)
        ) {
            return new IT_Error("No or invalid blockname '$blockname' given.",
                    __FILE__, __LINE__);
        } elseif ($template == '') {
            return new IT_Error('No block content given.', __FILE__, __LINE__);
        } elseif (isset($this->blocklist[$blockname])) {
            return new IT_Error('The block already exists.',
                                __FILE__, __LINE__);
        }

        // find out where to insert the new block
        $parents = $this->findPlaceholderBlocks($placeholder);
        if (count($parents) == 0) {

            return new IT_Error("The variable placeholder".
                                " '$placeholder' was not found in the template.",
                                __FILE__, __LINE__);

        } elseif (count($parents) > 1) {

            reset($parents);
            while (list($k, $parent) = each($parents)) {
                $msg .= "$parent, ";
            }
            $msg = substr($parent, -2);

            return new IT_Error("The variable placeholder "."'$placeholder'".
                                " must be unique, found in multiple blocks '$msg'.",
                                __FILE__, __LINE__);
        }

        $template = "<!-- BEGIN $blockname -->"
                  . $template
                  . "<!-- END $blockname -->";
        $this->findBlocks($template);
        if ($this->flagBlocktrouble) {
            return false;    // findBlocks() already throws an exception
        }

        $this->blockinner[$parents[0]][] = $blockname;

        $escblockname = '__' . $blockname . '__';

        $this->blocklist[$parents[0]] = preg_replace(
            '@' . $this->openingDelimiter . $placeholder .
            $this->closingDelimiter . '@',
            $this->openingDelimiter . $escblockname . $this->closingDelimiter,
            $this->blocklist[$parents[0]]
        );

        $this->deleteFromBlockvariablelist($parents[0], $placeholder);
        $this->updateBlockvariablelist($blockname);

        return true;
    } // end func addBlock

    /**
     * Adds a block taken from a file to the template changing a variable
     * placeholder to a block placeholder.
     *
     * @param string $placeholder Name of the variable placeholder to be converted
     * @param string $blockname   Name of the block to be added
     * @param string $filename    File that contains the block
     *
     * @brother    addBlock()
     * @access     public
     * @return     null
     */
    function addBlockfile($placeholder, $blockname, $filename)
    {
        return $this->addBlock($placeholder, $blockname, $this->getFile($filename));
    } // end func addBlockfile

    /**
     * Returns the name of the (first) block that contains
     * the specified placeholder.
     *
     * @param string $placeholder Name of the placeholder you're searching
     * @param string $block       Name of the block to scan. If left out (default)
     *                            all blocks are scanned.
     *
     * @return   string  Name of the (first) block that contains
     *                   the specified placeholder.
     *                   If the placeholder was not found or an error occured
     *                   an empty string is returned.
     * @throws   IT_Error
     * @access   public
     */
    function placeholderExists($placeholder, $block = '')
    {
        if ($placeholder == '') {
            new IT_Error('No placeholder name given.', __FILE__, __LINE__);
            return '';
        }

        if ($block != '' && !isset($this->blocklist[$block])) {
            new IT_Error("Unknown block '$block'.", __FILE__, __LINE__);
            return '';
        }

        // name of the block where the given placeholder was found
        $found = '';

        if ($block != '') {
            if (is_array($variables = $this->blockvariables[$block])) {
                // search the value in the list of blockvariables
                reset($variables);
                while (list($k, $variable) = each($variables)) {
                    if ($k == $placeholder) {
                        $found = $block;
                        break;
                    }
                }
            }
        } else {

            // search all blocks and return the name of the first block that
            // contains the placeholder
            reset($this->blockvariables);
            while (list($blockname, $variables) = each($this->blockvariables)) {
                if (is_array($variables) && isset($variables[$placeholder])) {
                    $found = $blockname;
                    break;
                }
            }
        }

        return $found;
    } // end func placeholderExists

    /**
     * Checks the list of function calls in the template and
     * calls their callback function.
     *
     * @access  public
     * @return  null
     */
    function performCallback()
    {
        reset($this->functions);
        while (list($func_id, $function) = each($this->functions)) {
            if (isset($this->callback[$function['name']])) {
                if ($this->callback[$function['name']]['expandParameters']) {
                    $callFunction = 'call_user_func_array';
                } else {
                    $callFunction = 'call_user_func';
                }

                if ($this->callback[$function['name']]['object'] != '') {
                     $call = $callFunction(
                        array(
                            &$GLOBALS[$this->callback[$function['name']]['object']],
                            $this->callback[$function['name']]['function']),
                        $function['args']);

                } else {
                     $call = $callFunction(
                        $this->callback[$function['name']]['function'],
                        $function['args']);
                }
                $this->variableCache['__function' . $func_id . '__'] = $call;
            }
        }

    } // end func performCallback

    /**
     * Returns a list of all function calls in the current template.
     *
     * @return   array
     * @access   public
     */
    function getFunctioncalls()
    {
        return $this->functions;
    } // end func getFunctioncalls

    /**
     * Replaces a function call with the given replacement.
     *
     * @param int    $functionID  Function ID
     * @param string $replacement Replacement
     *
     * @access   public
     * @deprecated
     * @return null
     */
    function setFunctioncontent($functionID, $replacement)
    {
        $this->variableCache['__function' . $functionID . '__'] = $replacement;
    } // end func setFunctioncontent

    /**
     * Sets a callback function.
     *
     * IT[X] templates (note the X) can contain simple function calls.
     * "function call" means that the editor of the template can add
     * special placeholder to the template like 'func_h1("embedded in h1")'.
     * IT[X] will grab this function calls and allow you to define a callback
     * function for them.
     *
     * This is an absolutely evil feature. If your application makes heavy
     * use of such callbacks and you're even implementing if-then etc. on
     * the level of a template engine you're reiventing the wheel... - that's
     * actually how PHP came into life. Anyway, sometimes it's handy.
     *
     * Consider also using XML/XSLT or native PHP. And please do not push
     * IT[X] any further into this direction of adding logics to the template
     * engine.
     *
     * For those of you ready for the X in IT[X]:
     *
     * <?php
     * ...
     * function h_one($args) {
     *    return sprintf('<h1>%s</h1>', $args[0]);
     * }
     *
     * ...
     * $itx = new HTML_Template_ITX(...);
     * ...
     * $itx->setCallbackFunction('h1', 'h_one');
     * $itx->performCallback();
     * ?>
     *
     * template:
     * func_h1('H1 Headline');
     *
     * @param string  $tplfunction              Function name in the template
     * @param string  $callbackfunction         Name of the callback function
     * @param string  $callbackobject           Name of the callback object
     * @param boolean $expandCallbackParameters If the callback is called with
     *                                          a list of parameters or with an
     *                                          array holding the parameters
     *
     * @return     boolean   False on failure.
     * @throws     IT_Error
     * @access     public
     * @deprecated The $callbackobject parameter is depricated since
     *             version 1.2 and might be dropped in further versions.
     */
    function setCallbackFunction($tplfunction, $callbackfunction,
        $callbackobject = '',
    $expandCallbackParameters = false) {
        if ($tplfunction == '' || $callbackfunction == '') {
            return new IT_Error("No template function "."('$tplfunction')".
                                " and/or no callback function ('$callback') given.",
                                __FILE__, __LINE__);
        }
        $this->callback[$tplfunction] = array(
                                          'function' => $callbackfunction,
                                          'object'   => $callbackobject,
                                          'expandParameters' => (boolean)
                                                $expandCallbackParameters);

        return true;
    } // end func setCallbackFunction

    /**
     * Sets the Callback function lookup table
     *
     * @param array $functions function table
     *                           array[templatefunction] =
     *                               array(
     *                                   "function" => userfunction,
     *                                   "object" => userobject
     *                               )
     *
     * @access    public
     * @return null
     */
    function setCallbackFuntiontable($functions)
    {
        $this->callback = $functions;
    } // end func setCallbackFunctiontable

    /**
     * Recursively removes all data assiciated with a block, including
     * all inner blocks
     *
     * @param string $block block to be removed
     *
     * @return null
     * @access   private
     */
    function removeBlockData($block)
    {
        if (isset($this->blockinner[$block])) {
            foreach ($this->blockinner[$block] as $k => $inner) {
                $this->removeBlockData($inner);
            }

            unset($this->blockinner[$block]);
        }

        unset($this->blocklist[$block]);
        unset($this->blockdata[$block]);
        unset($this->blockvariables[$block]);
        unset($this->touchedBlocks[$block]);

    } // end func removeBlockinner

    /**
     * Returns a list of blocknames in the template.
     *
     * @return    array    [blockname => blockname]
     * @access    public
     * @see       blockExists()
     */
    function getBlocklist()
    {
        $blocklist = array();
        foreach ($this->blocklist as $block => $content) {
            $blocklist[$block] = $block;
        }

        return $blocklist;
    } // end func getBlocklist

    /**
     * Checks wheter a block exists.
     *
     * @param string $blockname Blockname
     *
     * @return   boolean
     * @access   public
     * @see      getBlocklist()
     */
    function blockExists($blockname)
    {
        return isset($this->blocklist[$blockname]);
    } // end func blockExists

    /**
     * Returns a list of variables of a block.
     *
     * @param string $block Blockname
     *
     * @return   array    [varname => varname]
     * @access   public
     * @see      BlockvariableExists()
     */
    function getBlockvariables($block)
    {
        if (!isset($this->blockvariables[$block])) {
            return array();
        }

        $variables = array();
        foreach ($this->blockvariables[$block] as $variable => $v) {
            $variables[$variable] = $variable;
        }

        return $variables;
    } // end func getBlockvariables

    /**
     * Checks wheter a block variable exists.
     *
     * @param string $block    Blockname
     * @param string $variable Variablename
     *
     * @return   boolean
     * @access   public
     * @see      getBlockvariables()
     */
    function BlockvariableExists($block, $variable)
    {
        return isset($this->blockvariables[$block][$variable]);
    } // end func BlockvariableExists

    /**
     * Builds a functionlist from the template.
     *
     * @access private
     * @return null
     */
    function buildFunctionlist()
    {
        $this->functions = array();

        $template = $this->template;

        $num = 0;

        while (preg_match($this->functionRegExp, $template, $regs)) {

            $pos = strpos($template, $regs[0]);

            $template = substr($template, $pos + strlen($regs[0]));

            $head = $this->getValue($template, ')');
            $args = array();

            $search = $regs[0] . $head . ')';

            $replace = $this->openingDelimiter .
                       '__function' . $num . '__' .
                       $this->closingDelimiter;

            $this->template = str_replace($search, $replace, $this->template);
            $template       = str_replace($search, $replace, $template);

            while ($head != '' && $args2 = $this->getValue($head, ',')) {
                $arg2 = trim($args2);

                $args[] = ('"' == $arg2{0} || "'" == $arg2{0}) ?
                                    substr($arg2, 1, -1) : $arg2;

                if ($arg2 == $head) {
                    break;
                }
                $head = substr($head, strlen($arg2) + 1);
            }

            $this->functions[$num++] = array('name'    => $regs[1],
                                             'args'    => $args);
        }

    } // end func buildFunctionlist

    /**
     * Truncates the given code from the first occurence of
     * $delimiter but ignores $delimiter enclosed by " or '.
     *
     * @param string $code      The code which should be parsed
     * @param string $delimiter The delimiter char
     *
     * @access private
     * @return string
     * @see    buildFunctionList()
     */
    function getValue($code, $delimiter)
    {
        if ($code == '') {
            return '';
        }

        if (!is_array($delimiter)) {
            $delimiter = array($delimiter => true);
        }

        $len         = strlen($code);
        $enclosed    = false;
        $enclosed_by = '';

        if (isset($delimiter[$code[0]])) {
            $i = 1;
        } else {
            for ($i = 0; $i < $len; ++$i) {
                $char = $code[$i];

                if (($char == '"' || $char == "'")
                    && ($char == $enclosed_by || '' == $enclosed_by)
                    && (0 == $i || ($i > 0 && '\\' != $code[$i - 1]))
                ) {

                    if (!$enclosed) {
                        $enclosed_by = $char;
                    } else {
                        $enclosed_by = "";
                    }
                    $enclosed = !$enclosed;

                }

                if (!$enclosed && isset($delimiter[$char])) {
                    break;
                }
            }
        }

        return substr($code, 0, $i);
    } // end func getValue

    /**
     * Deletes one or many variables from the block variable list.
     *
     * @param string $block     Blockname
     * @param mixed  $variables Name of one variable or array of variables
     *                          (array (name => true ) ) to be stripped.
     *
     * @access   private
     * @return null
     */
    function deleteFromBlockvariablelist($block, $variables)
    {
        if (!is_array($variables)) {
            $variables = array($variables => true);
        }

        reset($this->blockvariables[$block]);
        while (list($varname, $val) = each($this->blockvariables[$block])) {
            if (isset($variables[$varname])) {
                unset($this->blockvariables[$block][$varname]);
            }
        }
    } // end deleteFromBlockvariablelist

    /**
     * Updates the variable list of a block.
     *
     * @param string $block Blockname
     *
     * @access   private
     * @return null
     */
    function updateBlockvariablelist($block)
    {
        preg_match_all(
            $this->variablesRegExp,
            $this->blocklist[$block], $regs
        );

        if (count($regs[1]) != 0) {
            foreach ($regs[1] as $k => $var) {
                $this->blockvariables[$block][$var] = true;
            }
        } else {
            $this->blockvariables[$block] = array();
        }

        // check if any inner blocks were found
        if (isset($this->blockinner[$block])
            && is_array($this->blockinner[$block])
            && count($this->blockinner[$block]) > 0
        ) {
            /*
             * loop through inner blocks, registering the variable
             * placeholders in each
             */
            foreach ($this->blockinner[$block] as $childBlock) {
                $this->updateBlockvariablelist($childBlock);
            }
        }
    } // end func updateBlockvariablelist

    /**
     * Returns an array of blocknames where the given variable
     * placeholder is used.
     *
     * @param string $variable Variable placeholder
     *
     * @return   array     $parents parents[0..n] = blockname
     * @access   public
     */
    function findPlaceholderBlocks($variable)
    {
        $parents = array();
        reset($this->blocklist);
        while (list($blockname, $content) = each($this->blocklist)) {
            reset($this->blockvariables[$blockname]);

            while (list($varname, $val) = each($this->blockvariables[$blockname])) {
                if ($variable == $varname) {
                    $parents[] = $blockname;
                }
            }
        }

        return $parents;
    } // end func findPlaceholderBlocks

    /**
     * Handles warnings, saves them to $warn and prints them or
     * calls die() depending on the flags
     *
     * @param string $message Warning
     * @param string $file    File where the warning occured
     * @param int    $line    Linenumber where the warning occured
     *
     * @see      $warn, $printWarning, $haltOnWarning
     * @access   private
     * @return null
     */
    function warning($message, $file = '', $line = 0)
    {
        $message = sprintf(
            'HTML_Template_ITX Warning: %s [File: %s, Line: %d]',
            $message,
            $file,
            $line
        );

        $this->warn[] = $message;

        if ($this->printWarning) {
            print $message;
        }

        if ($this->haltOnWarning) {
            die($message);
        }
    } // end func warning

} // end class HTML_Template_ITX
?>