getData() 공개 메소드

Get permission details.
public getData ( ) : array
리턴 array Permission details.
예제 #1
0
파일: Sql.php 프로젝트: jubinpatel/horde
 /**
  * Sets the permission of this share.
  *
  * @param Horde_Perms_Permission $perm  Permission object.
  * @param boolean $update               Should the share be saved
  *                                      after this operation?
  */
 public function setPermission($perm, $update = true)
 {
     $this->data['perm'] = $perm->getData();
     if ($update) {
         $this->save();
     }
 }