root/trunk/Framework/Site/Default.php

Revision 118, 1.1 kB (checked in by shupp, 2 years ago)

toasteradmin to Default - Framework_Site

Line 
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6  * Framework_Site_Default
7  *
8  * @author      Joe Stump <joe@joestump.net>
9  * @copyright   Joe Stump <joe@joestump.net>
10  * @package     Framework
11  * @filesource
12  */
13
14
15 /**
16  * Framework_Site_Default
17  *
18  * Framework allows you to run multiple sites with multiple templates and
19  * modules. Each site needs it's own site driver. You can use this to house
20  * centrally located/needed information and such.
21  *
22  * @author      Joe Stump <joe@joestump.net>
23  * @copyright   Joe Stump <joe@joestump.net>
24  * @package     Framework
25  * @filesource
26  */
27 class Framework_Site_Default extends Framework_Site_Common
28 {
29     /**
30      * $name
31      *
32      * @access      public
33      * @var         string      $name       Name of site driver
34      */
35     public $name = 'Default';
36
37     /**
38      * prepare
39      *
40      * This function is ran by Framework right after loading up the site
41      * driver. It's a good place to put initialization type code that is
42      * globally required throughout your site.
43      *
44      * @access      public
45      * @return      mixed
46      */
47     public function prepare()
48     {
49
50     }
51 }
52
53 ?>
54
Note: See TracBrowser for help on using the browser.