/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/request.php

  • Committer: Suren A. Chilingaryan
  • Date: 2008-12-11 17:26:27 UTC
  • Revision ID: csa@dside.dyndns.org-20081211172627-ex0g0qqrk9p2s9vy
JavaScript fixups, some stuff for control data display is implemented

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
    return $default;
103
103
 }
104
104
 
 
105
 function GetTimeFormat() {
 
106
    $format = $this->GetProp("time_format", "unix");
 
107
    switch ($format) {
 
108
        case "unix":
 
109
            return false;
 
110
        break;
 
111
        case "iso":
 
112
            return "c";
 
113
        break;
 
114
        case "text":
 
115
            return "d M Y, H:i:s";
 
116
        break;
 
117
    }
 
118
    return $format;
 
119
 }
 
120
 
105
121
 function CreateImageHelper() {
106
122
    return new WELCOME($this);
107
123
 }