示例#1
0
 /**
  * Get Patron Profile
  *
  * This is responsible for retrieving the profile for a specific patron.
  *
  * @param array $patron The patron array
  *
  * @throws ILSException
  * @return array        Array of the patron's profile data on success.
  */
 public function getMyProfile($patron)
 {
     $profile = parent::getMyProfile($patron);
     $profile['blocks'] = $this->checkAccountBlocks($patron['id']);
     return $profile;
 }