/**
  * Edit AuthAccessProfiles
  *
  * @ActionDefinition( layout='auth_layout.tpl', zone='content:access_profiles_edit;', propel )
  */
 public function edit ()
 {
   $this->response->_id = $this->request->_id;
   $response = AuthAccessProfilesBss::getByPK( $this->request->_id );
   if ( is_array( $response ) ) {
     $this->add();
     $this->response->element = $response;
   } else {
     $this->response->exception = $response;
   }
 }