Plugin Directory

Changeset 210273


Ignore:
Timestamp:
02/25/2010 07:28:24 PM (16 years ago)
Author:
geraint
Message:
 
Location:
file-proxy/tags/0.2/com/twothirdsdesign/core
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • file-proxy/tags/0.2/com/twothirdsdesign/core/data_model.php

    r210147 r210273  
    11<?php
    22/**
    3 *
    4 */
    5 class DataModel
     3 * Data Model 
     4 * @author      Geraint Palmer
     5 * @version     1.0.0
     6 * @abstract       
     7 */
     8abstract class DataModel
    69{
     10        const VERSION = '1.0.0';
     11       
    712        protected static $table_name;
    813        protected static $db_exclude = array();
  • file-proxy/tags/0.2/com/twothirdsdesign/core/gcp_options.php

    r210147 r210273  
    11<?php
    22/**
    3 * Options Manager Class
    4 */
     3 * Options Manager Class
     4 *
     5 * @author      Geraint Palmer
     6 * @version     1.0.0     
     7 */
    58class GcpOptions
    69{
     10    const VERSION = '1.0.0';
     11       
    712    protected $options_key = 'ttd_plugin_options';
    813    protected $_options = array(
    9         'day_format'            => 'F jS',
     14        'key'           => 'value',
    1015    );
    1116   
  • file-proxy/tags/0.2/com/twothirdsdesign/core/ttd_plugin_class.php

    r210147 r210273  
    11<?php
     2/**
     3 * TtdPluginClass
     4 *
     5 * @author      Geraint Palmer
     6 * @version     1.0.0     
     7 */
    28    class TtdPluginClass
    39    {
     10        const VERSION = '1.0.0';
    411        // variable
    512        protected $options;
Note: See TracChangeset for help on using the changeset viewer.