Beispiel #1
0
function create_display()
{
    if (session_id() == "") {
        session_start();
    }
    logger($script_path . " index start:");
    validate_access_webnotes();
    //configuration parameters:
    $config_params = Config::getConfigParams();
    $hostname = $config_params['hostname'];
    $watch_demo = $config_params['watch_demo'];
    $docroot = $config_params['docroot'];
    $debug = $config_params['debug'];
    $header = header_html();
    //
    $footer = $config_params['footer'];
    $doctype = $config_params['doctype'];
    $html_attribute = $config_params['html_attribute'];
    $css = $config_params['css'];
    $google_analytics = $config_params['google_analytics'];
    $godaddy_analytics = $config_params['godaddy_analytics'];
    $cookie_name = $config_params['cookie_name'];
    $ep4 = $config_params['ep4'];
    $screen_name = 'raj4126';
    $docroot = $_SERVER['DOCUMENT_ROOT'];
    $note = '';
    $tag = '';
    $wid = -1;
    if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'edit') {
        $wid = $_REQUEST['wid'];
        $action = 'editsave';
        $model = new TwextraModel();
        $note_array = $model->getNote($wid);
        $note = $note_array['note'];
        $tag = $note_array['tag'];
    } else {
        $action = 'index';
        $wid = -1;
    }
    //echo 'action: ', $action; exit;
    //echo "user:note:tag:action:wid::<br>$user:$note:$tag:$action:$wid"; exit;
    //echo 'test2'; exit;
    header("Pragma: no-cache");
    header("cache-Control: no-cache, must-revalidate");
    // HTTP/1.1
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
    // Date in the past
    print $doctype;
    print "<html {$html_attribute} >";
    $message = "\n\n<head>\n\n<link rel=\"stylesheet\" type=\"text/css\" href=\"{$css}\" />\n\n<title>Twextra- When you NEED more than 140 characters</title>";
    echo $message;
    $scripts = '';
    $scripts .= "<script type='text/javascript' src='/scripts/jquery/jquery-1.2.6.js'></script>\n";
    echo $scripts;
    $message = "\n\n<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"/favicon.ico\" />\n\n</head>\n\n<body>\n\n<div class='wrapper'>\n\n<div class='page'>";
    echo $message;
    $banner = banner($screen_name, 'banner_index');
    //(user, banner_class)
    echo $banner;
    $message = "<div style='clear:both;margin-left:auto;margin-right:auto;width:800px;'>\n\n<form method='post' action='/webnotes/wrouter.php' accept-charset=\"utf-8\" >\n\n<input type='hidden' name='wroute' id='wroute' value='{$action}'> </input>\n\n<input type='hidden' name='wid' id='wid' value='{$wid}'> </input>\n\n\n\nWeb note: \n\n<textarea id='weditor' name='weditor' rows='15' cols='100' style='width: 768px; border:solid black 1px;'>\n\n{$note}\n\n</textarea> \n\nTags: <input type='text' name='tag' id='tag' size='100' style='border:solid black 1px;' value='{$tag}'></input>\n\n<div>\n\n<input type='submit' name='save' id='save' value='Post Message' class='button'></input>\n\n</div>\n\n\n\n</form>\n\n</div>";
    echo $message;
    echo $footer;
    $message = "\n\n</div>\n\n</div>\n\n</body>\n\n</html>";
    echo $message;
}