Example #1
0
 /**
  * Update a group
  *
  * @return  bool
  */
 protected function onUpdateSuccess()
 {
     if (parent::onUpdateSuccess()) {
         if (($newName = $this->getValue('group_name')) !== $this->getIdentifier()) {
             $this->getRedirectUrl()->setParam('group', $newName);
         }
         return true;
     }
     return false;
 }