Example #1
0
/*
* Node types:
*
	1:	bb
	2:	html
	3:	htmleditor
	4:	plaintext
	5:	gallery_section
	6:	gallery_item
	7:	news
	8:	phpinclude
*
*/
nodes::$node_path = array(array("node_id" => 1, "node_title" => "Kofradia", "node_url" => ess::$s['relative_path'] . "/node"));
nodes::main();
class nodes
{
    /**
     * Standard node (første som skal vises)
     */
    public static $default_node = 1;
    public static $types = array("container" => "Vanlig side", "url_absolute" => "Adresse (absolutt)", "url_relative" => "Adresse (relativ)");
    public static $item_types = array(1 => array("BB-kode", true), 2 => array("HTML", true), 3 => array("HTML (Editor)", true), 4 => array("Plain text", true), 5 => array("Galleri", false), 6 => array("Galleri bilde", false), 7 => array("Nyheter", false), 8 => array("PHP Include", false));
    public static $node_id = 0;
    public static $node_info;
    /**
     * @var params
     */
    public static $node_params;
    public static $node_path;