Changeset 210273
- Timestamp:
- 02/25/2010 07:28:24 PM (16 years ago)
- Location:
- file-proxy/tags/0.2/com/twothirdsdesign/core
- Files:
-
- 3 edited
-
data_model.php (modified) (1 diff)
-
gcp_options.php (modified) (1 diff)
-
ttd_plugin_class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
file-proxy/tags/0.2/com/twothirdsdesign/core/data_model.php
r210147 r210273 1 1 <?php 2 2 /** 3 * 4 */ 5 class DataModel 3 * Data Model 4 * @author Geraint Palmer 5 * @version 1.0.0 6 * @abstract 7 */ 8 abstract class DataModel 6 9 { 10 const VERSION = '1.0.0'; 11 7 12 protected static $table_name; 8 13 protected static $db_exclude = array(); -
file-proxy/tags/0.2/com/twothirdsdesign/core/gcp_options.php
r210147 r210273 1 1 <?php 2 2 /** 3 * Options Manager Class 4 */ 3 * Options Manager Class 4 * 5 * @author Geraint Palmer 6 * @version 1.0.0 7 */ 5 8 class GcpOptions 6 9 { 10 const VERSION = '1.0.0'; 11 7 12 protected $options_key = 'ttd_plugin_options'; 8 13 protected $_options = array( 9 ' day_format' => 'F jS',14 'key' => 'value', 10 15 ); 11 16 -
file-proxy/tags/0.2/com/twothirdsdesign/core/ttd_plugin_class.php
r210147 r210273 1 1 <?php 2 /** 3 * TtdPluginClass 4 * 5 * @author Geraint Palmer 6 * @version 1.0.0 7 */ 2 8 class TtdPluginClass 3 9 { 10 const VERSION = '1.0.0'; 4 11 // variable 5 12 protected $options;
Note: See TracChangeset
for help on using the changeset viewer.