events::bind PHP Method

bind() public static method

public static bind ( $page, $fn )
    public static function bind($page, $fn)
    {
        list($page, $name) = static::parse($page);
        if (!isset(static::$stack[$page])) {
            static::$stack[$page] = array();
        }
        static::$stack[$page][$name] = $fn;
    }