Beispiel #1
0
 /**
  * Remove a Options from the array object
  *
  * @param string $pmOptionsId
  * @return Onion\Application\Module
  */
 public function removeOptions($pmOptionsId)
 {
     return parent::remove('_options', $pmOptionsId);
 }
Beispiel #2
0
 /**
  * Remove a Options from the array object
  *
  * @param int|string $pmColOptionsId
  * @return Onion\Application\Grid
  */
 public function removeColOptions($pmColOptionsId)
 {
     return parent::remove('_colOptions', $pmColOptionsId);
 }
Beispiel #3
0
 /**
  * Remove a Module from the array object
  *
  * @param string $psModuleId
  * @return Onion\Application\Section
  */
 public function removeOption($psModuleId)
 {
     return parent::remove('_options', $psModuleId);
 }
Beispiel #4
0
 /**
  * Remove a Filter from the array object
  *
  * @param string $pmFilterId
  * @return Onion\Application\Action
  */
 public function removeFilter($pmFilterId)
 {
     return parent::remove('_filter', $pmFilterId);
 }
Beispiel #5
0
 /**
  * Remove a separate from the array object
  *
  * @param string $pnIndex
  * @return Onion\Application\Element\Options
  */
 public function removeSeparate($pnIndex)
 {
     return parent::remove('_itens', $pnIndex);
 }