[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/herald/storage/ -> HeraldRuleEdit.php (source)

   1  <?php
   2  
   3  final class HeraldRuleEdit extends HeraldDAO {
   4  
   5    protected $editorPHID;
   6    protected $ruleID;
   7    protected $ruleName;
   8    protected $action;
   9  
  10    public function getConfiguration() {
  11      return array(
  12        self::CONFIG_COLUMN_SCHEMA => array(
  13          'ruleName' => 'text255',
  14          'action' => 'text32',
  15        ),
  16        self::CONFIG_KEY_SCHEMA => array(
  17          'ruleID' => array(
  18            'columns' => array('ruleID', 'dateCreated'),
  19          ),
  20        ),
  21      ) + parent::getConfiguration();
  22    }
  23  
  24  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1