removeAllAssignments() public method

示例#1
0
 public function actionRemoveAllAssignments()
 {
     if ($this->confirm('Are you sure want to remove all role assignments?')) {
         $this->_authManager->removeAllAssignments();
     }
     return 0;
 }
示例#2
0
 /**
  * @inheritdoc
  */
 public function removeAllAssignments()
 {
     parent::removeAllAssignments();
     $this->_assignments = [];
 }