Example #1
0
 public function getAllFields()
 {
     if (is_null($this->all_fields)) {
         $fields = new System\Collection();
         foreach ($this->getChain() as $component) {
             $fields->concat($component->fields());
         }
         $fields->indexUnique('keyword');
         $this->all_fields = $fields;
     }
     return $this->all_fields;
 }