public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
cmsmadesimple-2-0 / lib / classes / class.cms_application.php
100644 463 lines (392 sloc) 10.432 kb
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php // -*- mode:php; tab-width:4; indent-tabs-mode:t; c-basic-offset:4; -*-
#CMS - CMS Made Simple
#(c)2004-2008 by Ted Kulp (ted@cmsmadesimple.org)
#This project's homepage is: http://cmsmadesimple.org
#
#This program is free software; you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation; either version 2 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#BUT withOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#$Id$
 
/**
* Global object that holds references to various data structures
* needed by classes/functions in CMS. Initialized in include.php
* as $gCms for use in every page.
*
* @author Ted Kulp
* @since 2.0
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license GPL
*/
class CmsApplication extends CmsObject
{
  /**
   * Variables object - various objects and strings needing to be passed
   */
  var $variables;
 
  /**
   * Modules object - holds references to all registered modules
   */
  var $cmsmodules;
 
  /**
   * System Modules - a list (hardcoded) of all system modules
   */
  var $cmssystemmodules;
 
  /**
   * Plugins object - holds list of all registered plugins
   */
  var $cmsplugins;
 
  /**
   * User Plugins object - holds list and function pointers of all registered user plugins
   */
  var $userplugins;
 
  /**
   * BBCode object - for use in bbcode parsing
   */
  var $bbcodeparser;
 
  /**
   * Site Preferences object - holds all current site preferences so they're only loaded once
   */
  static private $siteprefs = array();
 
  /**
   * User Preferences object - holds user preferences as they're loaded so they're only loaded once
   */
  var $userprefs;
 
  /**
   * Internal error array - So functions/modules can store up debug info and spit it all out at once
   */
  var $errors;
 
  /**
* template cache array - If something's called LoadTemplateByID, we keep a copy around
   */
  var $TemplateCache;
 
  /**
* template cache array - If something's called LoadTemplateByID, we keep a copy around
   */
  var $StylesheetCache;
 
  /**
* html blob cache array - If something's called LoadHtmlBlobByID, we keep a copy around
   */
  var $HtmlBlobCache;
  
  /**
   * content types array - List of available content types
   */
  var $contenttypes;
  
  /**
   * block types array - List of available block types
   */
  var $blocktypes;
  
  var $ormclasses;
 
  var $hrinstance;
  
  var $params = array();
  
  var $modules;
  
  var $StylesheeteCache;
  
  var $userpluginfunctions;
  
  var $orm;
  
  static private $instance = NULL;
 
  /**
   * Constructor
   */
  function __construct()
  {
    $this->cmssystemmodules = array( 'nuSOAP', 'MenuManager', 'ModuleManager' );
    $this->modules = array();
    $this->errors = array();
    $this->nls = array();
    $this->contenttypes = array();
    $this->blocktypes = array();
    $this->TemplateCache = array();
    $this->StylesheetCache = array();
    $this->variables['content-type'] = 'text/html';
    $this->variables['modulenum'] = 1;
    $this->variables['routes'] = array();
    $this->variables['pluginnum'] = 1;
    
    #Setup hash for storing all modules and plugins
    $this->coremodules = array('UserAdmin','MenuManager');
    $this->cmsmodules = array();
    $this->userplugins = array();
    $this->userpluginfunctions = array();
    $this->cmsplugins = array();
    $this->orm = array();
  }
  
  /**
   * Returns an instnace of the CmsApplication singleton. Most
   * people can generally use cmsms() instead of this, but they
   * both do the same thing.
   *
   * @return CmsApplication The singleton CmsApplication instance
   * @author Ted Kulp
   **/
  static public function get_instance()
  {
    if (self::$instance == NULL)
    {
      self::$instance = new CmsApplication();
    }
    return self::$instance;
  }
 
  /**
   * @deprecated Deprecated. Use cms_db() instead.
   **/
  function get_db()
  {
    return CmsDatabase::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use cms_db() instead.
   **/
  function GetDb()
  {
    return CmsDatabase::get_instance();
  }
  
  function get($name)
  {
    return $this->variables[$name];
  }
  
  function set($name, $value)
  {
    $this->variables[$name] = $value;
  }
  
  /**
   * Getter overload method. Called when an $obj->field and field
   * does not exist in the object's variable list. In this case,
   * it will get a config, db or smarty instance (for backwards
   * compatibility), or call get_orm_class on the given field name.
   *
   * @param string The field to look up
   * @return mixed The value for that field, if it exists
   * @author Ted Kulp
   **/
  function __get($name)
  {
    if ($name == 'config')
      return CmsConfig::get_instance();
    else if ($name == 'db')
      return CmsDatabase::get_instance();
    else if ($name == 'smarty')
      return CmsSmarty::get_instance();
    else
      return cms_orm()->get_orm_class($name);
  }
  
  /**
   * Retrieves an instance of an ORM'd object for doing
   * find_by_* methods.
   *
   * @return mixed The object with the given name, or null if it's not registered
   * @author Ted Kulp
   **/
  function get_orm_class($name, $try_prefix = true)
  {
    return cms_orm()->get_orm_class($name, $try_prefix);
  }
  
  /**
   * @deprecated Deprecated. Use cms_config() instead.
   **/
  function get_config()
  {
    return CmsConfig::get_instance();
  }
 
  /**
   * @deprecated Deprecated. Use cms_config() instead.
   **/
  function GetConfig()
  {
    return CmsConfig::get_instance();
  }
    
  /**
   * @deprecated Deprecated. Use CmsModuleOperations::some_method instead.
   **/
  function GetModuleOperations()
  {
    return CmsModuleOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsUserOperations::some_method instead.
   **/
  function GetUserOperations()
  {
        return CmsUserOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsContentOperations::some_method instead.
   **/
  function GetContentOperations()
  {
    return CmsContentOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsBookmarkOperations::some_method instead.
   **/
  function GetBookmarkOperations()
  {
        return CmsBookmarkOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsTemplateOperations::some_method instead.
   **/
  function GetTemplateOperations()
  {
        return CmsTemplateOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsStylesheetOperations::some_method instead.
   **/
  function GetStylesheetOperations()
  {
    return CmsStylesheetOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsGroupOperations::some_method instead.
   **/
  function GetGroupOperations()
  {
    return CmsGroupOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsGlobalContentOperations::some_method instead.
   **/
  function GetGlobalContentOperations()
  {
    return CmsGlobalContentOperations::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use CmsUserTagOperations::some_method instead.
   **/
  function GetUserTagOperations()
  {
    return CmsUserTagOperations::get_instance();
  }
 
  /**
   * @deprecated Deprecated. Use cms_smarty() instead.
   **/
  function GetSmarty()
  {
    return CmsSmarty::get_instance();
  }
  
  /**
   * @deprecated Deprecated. Use cms_smarty() instead.
   **/
  function get_smarty()
  {
    return CmsSmarty::get_instance();
  }
  
  public function get_current_user()
  {
    return CmsLogin::get_current_user();
  }
 
  function GetHierarchyManager()
  {
    return CmsPageTree::get_instance();
  }
  
  /**
   * Loads a cache of site preferences so we only have to do it once.
   *
   * @since 0.6
   */
  public static function load_site_preferences()
  {
    $db = cms_db();
    
    $result = array();
 
    $query = "SELECT sitepref_name, sitepref_value from ".cms_db_prefix()."siteprefs";
    $dbresult = &$db->Execute($query);
 
    while ($dbresult && !$dbresult->EOF)
    {
      $result[$dbresult->fields['sitepref_name']] = $dbresult->fields['sitepref_value'];
      $dbresult->MoveNext();
    }
 
    if ($dbresult) $dbresult->Close();
 
    return $result;
  }
 
  /**
   * Gets the given site prefernce
   *
   * @since 0.6
   */
  public static function get_preference($prefname, $defaultvalue = '')
  {
    $value = $defaultvalue;
 
    if (count(self::$siteprefs) == 0)
    {
      self::$siteprefs = CmsCache::get_instance()->call('CmsApplication::load_site_preferences');
    }
 
    if (isset(self::$siteprefs[$prefname]))
    {
      $value = self::$siteprefs[$prefname];
    }
 
    return $value;
  }
 
  /**
   * Removes the given site preference
   *
   * @param string Preference name to remove
   */
  public static function remove_preference($prefname)
  {
    $db = cms_db();
 
    $query = "DELETE from ".cms_db_prefix()."siteprefs WHERE sitepref_name = ?";
    $result = $db->Execute($query, array($prefname));
 
    if (isset(self::$siteprefs[$prefname]))
    {
      unset(self::$siteprefs[$prefname]);
    }
 
    if ($result) $result->Close();
    CmsCache::clear();
  }
 
  /**
   * Sets the given site perference with the given value.
   *
   * @since 0.6
   */
  public static function set_preference($prefname, $value)
  {
    $doinsert = true;
 
    $db = cms_db();
 
    $query = "SELECT sitepref_value from ".cms_db_prefix()."siteprefs WHERE sitepref_name = ".$db->qstr($prefname);
    $result = $db->Execute($query);
 
    if ($result && $result->RecordCount() > 0)
    {
      $doinsert = false;
    }
 
    if ($result) $result->Close();
 
    if ($doinsert)
    {
      $query = "INSERT INTO ".cms_db_prefix()."siteprefs (sitepref_name, sitepref_value) VALUES (".$db->qstr($prefname).", ".$db->qstr($value).")";
      $db->Execute($query);
    }
    else
    {
      $query = "UPDATE ".cms_db_prefix()."siteprefs SET sitepref_value = ".$db->qstr($value)." WHERE sitepref_name = ".$db->qstr($prefname);
      $db->Execute($query);
    }
    self::$siteprefs[$prefname] = $value;
    CmsCache::clear();
  }
 
  function __destruct()
  {
    //*cough* Hack
    CmsDatabase::close();
  }
}
 
class CmsContentTypePlaceholder extends CmsObject
{
  var $type;
  var $filename;
  var $friendlyname;
  var $loaded;
}
 
class CmsBlockTypePlaceholder extends CmsContentTypePlaceholder
{
}
 
# vim:ts=4 sw=4 noet
?>