/**
  * Edit AuthAccessProfilesRoles
  *
  * @ActionDefinition( layout='auth_layout.tpl', zone='content:access_profiles_roles_edit;', propel )
  */
 public function edit ()
 {
   $this->response->_id = $this->request->_id;
   $response = AuthAccessProfilesRolesBss::getByPK( $this->request->_id );
   if ( is_array( $response ) ) {
     $this->add();
     $this->response->element = $response;
     // get reference's content for auth_access_profiles
     $auth_access_profiles = AuthAccessProfilesBss::getAll( $this->request );
     $this->response->auth_access_profiles = $auth_access_profiles['data'];
     // get reference's content for auth_roles
     $auth_roles = AuthRolesBss::getAll( $this->request );
     $this->response->auth_roles = $auth_roles['data'];
   } else {
     $this->response->exception = $response;
   }
 }