ui.php (PHP)

Plaintext - Copy this

  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
<?php
/*
 * CodeScape Framework - A simple, flexible PHP framework
 * Copyright (C) 2008, Alan Briolat <alan@codescape.net>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * UI and Templating module
 *
 * Implements PHP-based heirarchical templating.
 */
class UI extends CSF_Module
{

    protected $context = array(
        'title' => 'foobar',
        'content' => 'lipsum mofo',
    );

    protected $blocks = array();
    protected $blockstack = array();
    protected $inherits = null;

    protected function extend($tpl)
    {
        $this->inherits = $tpl;
    }

    protected function block_begin($block)
    {
        ob_start();
    }

    protected function block_end($block)
    {
        // Get the output of the block
        $output = ob_get_clean();

        // Store the output
        $this->blocks[$this->level][$block] = $output;

        // Search down the "tree" for an overridden version of the block
        $lvl = $this->level + 1;
        while ( $lvl < count($this->blocks) )
        {
            if ( array_key_exists($block, $this->blocks[$lvl]) )
            {
                echo $this->blocks[$lvl][$block];
                return;
            }
            else
            {
                $lvl++;
            }
        }
        echo $output;
    }

    protected function block_content($block)
    {
        // Search up the "tree" for the block
        $lvl = $this->level - 1;
        while ( $lvl >= 0 )
        {
            if ( array_key_exists($block, $this->blocks[$lvl]) )
            {
                echo $this->blocks[$lvl][$block];
                return;
            }
            else
            {
                $lvl--;
            }
        }
        echo '';
    }

    public function parse_template($fn)
    {
        // Get the template heirarchy
        $_tplstack = array();
        do {
            ob_start();
            include($fn);
            ob_end_clean();
            array_unshift($_tplstack, $fn);
            $fn = $this->inherits;
            $this->extend(null);
        } while ( $fn );
        var_dump($_tplstack);

        // Reset the status
        $this->blocks = array();

        // Top-down parsing stage
        for ( $this->level = 0 ; 
              $this->level < count($_tplstack) ; 
              $this->level++ )
        {
            ob_start();
            extract($this->context);
            include($_tplstack[$this->level]);
            ob_end_clean();
        }
        var_dump($this->blocks);

        // Bottom-up parsing stage (all except the root)
        for ( $this->level = count($_tplstack) - 1 
            ; $this->level > 0 ; $this->level-- )
        {
            ob_start();
            extract($this->context);
            include($_tplstack[$this->level]);
            ob_end_clean();
        }

        // Parse the root template
        ob_start();
        extract($this->context);
        include($_tplstack[0]);
        return ob_get_clean();

    }
}
?>