Block::relations PHP Method

relations() public method

public relations ( ) : array
return array relational rules.
    public function relations()
    {
        // NOTE: you may need to adjust the relation name and the related
        // class name for the relations automatically generated below.
        return array();
    }

Usage Example

Example #1
0
 public function relations()
 {
     return array_merge(parent::relations(), array('entity' => array(self::BELONGS_TO, self::TYPE_OF_BLOCK, 'entity_id')));
 }