@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 30 lines 671 B view raw
1<?php 2 3final class HeraldCondition extends HeraldDAO { 4 5 protected $ruleID; 6 7 protected $fieldName; 8 protected $fieldCondition; 9 protected $value; 10 11 protected function getConfiguration() { 12 return array( 13 self::CONFIG_SERIALIZATION => array( 14 'value' => self::SERIALIZATION_JSON, 15 ), 16 self::CONFIG_TIMESTAMPS => false, 17 self::CONFIG_COLUMN_SCHEMA => array( 18 'fieldName' => 'text255', 19 'fieldCondition' => 'text255', 20 'value' => 'text', 21 ), 22 self::CONFIG_KEY_SCHEMA => array( 23 'ruleID' => array( 24 'columns' => array('ruleID'), 25 ), 26 ), 27 ) + parent::getConfiguration(); 28 } 29 30}