Exemple #1
0
 /**
  * Returns the colums of the joined participants table.
  * @return array $cols
  */
 public function fetchCols()
 {
     $cols = parent::fetchCols();
     $cols['meeting_title'] = $this->quoteIdentifier('Meetings_Meetings', 'meeting_title');
     $cols['status'] = $this->quoteIdentifier('Meetings_ParticipantStatus', 'status');
     return $cols;
 }
Exemple #2
0
 /**
  * Returns the colums of the joined user table.
  * @return array $cols
  */
 public function fetchCols()
 {
     $cols = parent::fetchCols();
     $cols['role'] = $this->quoteIdentifier('Auth_Roles', 'role');
     $cols['status'] = $this->quoteIdentifier('Auth_Status', 'status');
     return $cols;
 }
Exemple #3
0
 /**
  * Returns the colums of the contributions table.
  * @return array $cols
  */
 public function fetchCols()
 {
     $cols = parent::fetchCols();
     $cols['participant_firstname'] = $this->quoteIdentifier('Meetings_Participants', 'firstname');
     $cols['participant_lastname'] = $this->quoteIdentifier('Meetings_Participants', 'lastname');
     $cols['meeting_title'] = $this->quoteIdentifier('Meetings_Meetings', 'meeting_title');
     $cols['contribution_type_id'] = $this->quoteIdentifier('Meetings_ContributionTypes', 'id');
     $cols['contribution_type'] = $this->quoteIdentifier('Meetings_ContributionTypes', 'contribution_type');
     return $cols;
 }