getOperations() public method

Get all operations
public getOperations ( boolean $includingChildren = false )
$includingChildren boolean Get operations from children as well
Example #1
0
 /**
  * Get all operations
  * 
  * @param Boolean $includingChildren Get operations from children as well
  */
 public function getOperations($includingChildren = false)
 {
     if ($this->hasRequirement(self::DYNAMIC_INDEX, 'AsReference')) {
         $includingChildren = false;
     }
     return parent::getOperations($includingChildren);
 }