File: block.mtsethashvar.php

package info (click to toggle)
movabletype-opensource 5.1.4%2Bdfsg-4%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 32,996 kB
  • sloc: perl: 197,285; php: 62,405; sh: 166; xml: 117; makefile: 83; sql: 32
file content (53 lines) | stat: -rw-r--r-- 1,757 bytes parent folder | download
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
<?php
# Movable Type (r) Open Source (C) 2001-2012 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$

function smarty_block_mtsethashvar($args, $content, &$ctx, &$repeat) {
    $vars =& $ctx->__stash['vars'];
    if (!isset($content)) {
        $name = $args['name'];
        $name or $name = $args['var'];
        if (!$name) return '';

        if (preg_match('/^$/', $name)) {
            $name = $vars[$name];
            if (!isset($name))
                return $ctx->error($ctx->mt->translate(
                    "You used a [_1] tag without a valid name attribute.", "<MT$tag>" ));
        }

        $hash = $vars[$name];
        if (!isset($hash))
            $hash = array();
        $ctx->localize(array('__inside_set_hashvar', '__name_set_hashvar'));
        $ctx->stash('__inside_set_hashvar', $hash);
        $ctx->stash('__name_set_hashvar', $name);
    }
    else {
        $hash = $ctx->stash('__inside_set_hashvar');
        $name = $ctx->stash('__name_set_hashvar');
        $ctx->restore(array('__inside_set_hashvar', '__name_set_hashvar'));
        $parent_hash = $ctx->stash('__inside_set_hashvar');
        if (isset($parent_hash)) {
            $parent_hash[$name] = $hash;
            $ctx->stash('__inside_set_hashvar', $parent_hash);
        }
        else {
            if (array_key_exists('__inside_set_hashvar', $ctx->__stash))
                unset($ctx->__stash['__inside_set_hashvar']);

            if (is_array($vars)) {
                $vars[$name] = $hash;
            } else {
                $vars = array($name => $hash);
                $ctx->__stash['vars'] =& $vars;
            }
        }
        return $content;
    }
    return '';
}
?>