Changeset View
Changeset View
Standalone View
Standalone View
src/applications/herald/storage/HeraldRule.php
| Show First 20 Lines • Show All 248 Lines • ▼ Show 20 Lines | public function getRuleExecutionOrderSortKey() { | ||||
| return sprintf('~%d%010d', $type_order, $this->getID()); | return sprintf('~%d%010d', $type_order, $this->getID()); | ||||
| } | } | ||||
| public function getMonogram() { | public function getMonogram() { | ||||
| return 'H'.$this->getID(); | return 'H'.$this->getID(); | ||||
| } | } | ||||
| public function getURI() { | |||||
| return '/'.$this->getMonogram(); | |||||
| } | |||||
| /* -( Repetition Policies )------------------------------------------------ */ | /* -( Repetition Policies )------------------------------------------------ */ | ||||
| public function getRepetitionPolicyStringConstant() { | public function getRepetitionPolicyStringConstant() { | ||||
| return $this->getRepetitionPolicy(); | return $this->getRepetitionPolicy(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 136 Lines • Show Last 20 Lines | |||||