Exemplo n.º 1
1
 public function RefreshClassAttendance()
 {
     $intMeetingCount = $this->ClassMeeting->GetClassMeetingCount();
     for ($intMeetingNumber = 1; $intMeetingNumber <= $intMeetingCount; $intMeetingNumber++) {
         $objAttendance = ClassAttendence::LoadByClassRegistrationIdMeetingNumber($this->intSignupEntryId, $intMeetingNumber);
         if (!$objAttendance) {
             $objAttendance = new ClassAttendence();
             $objAttendance->ClassRegistration = $this;
             $objAttendance->MeetingNumber = $intMeetingNumber;
             $objAttendance->Save();
         }
     }
 }
Exemplo n.º 2
0
    /**
     * Deletes all associated ClassAttendences
     * @return void
     */
    public function DeleteAllClassAttendences()
    {
        if (is_null($this->intSignupEntryId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateClassAttendence on this unsaved ClassRegistration.');
        }
        // Get the Database Object for this Class
        $objDatabase = ClassRegistration::GetDatabase();
        // Journaling
        if ($objDatabase->JournalingDatabase) {
            foreach (ClassAttendence::LoadArrayByClassRegistrationId($this->intSignupEntryId) as $objClassAttendence) {
                $objClassAttendence->Journal('DELETE');
            }
        }
        // Perform the SQL Query
        $objDatabase->NonQuery('
				DELETE FROM
					`class_attendence`
				WHERE
					`class_registration_id` = ' . $objDatabase->SqlVariable($this->intSignupEntryId) . '
			');
    }
Exemplo n.º 3
0
 public static function GetSoapArrayFromArray($objArray)
 {
     if (!$objArray) {
         return null;
     }
     $objArrayToReturn = array();
     foreach ($objArray as $objObject) {
         array_push($objArrayToReturn, ClassAttendence::GetSoapObjectFromObject($objObject, true));
     }
     return unserialize(serialize($objArrayToReturn));
 }
Exemplo n.º 4
0
Arquivo: result.php Projeto: alcf/chms
 protected function pxyEditClassAttendance_Click($strFormId, $strControlId, $strParameter)
 {
     $this->objClassAttendance = ClassAttendence::LoadByClassRegistrationIdMeetingNumber($this->mctClassRegistration->ClassRegistration->SignupEntryId, $strParameter);
     $this->dlgEdit->ShowDialogBox();
     $this->dlgEdit->Template = dirname(__FILE__) . '/dlgEditResult_ClassAttendance.tpl.php';
     $this->intEditTag = self::EditTagClassAttendance;
     $this->btnDelete->Visible = false;
     // Reset
     $this->ResetDialogControls();
     $this->lstListbox->Name = 'Attendance Entry';
     $this->lstListbox->AddItem('- Not Specified -', null, is_null($this->objClassAttendance->PresentFlag));
     $this->lstListbox->AddItem('Present', true, $this->objClassAttendance->PresentFlag === true);
     $this->lstListbox->AddItem('Not Present', false, $this->objClassAttendance->PresentFlag === false);
 }
 /**
  * Main utility method to aid with data binding.  It is used by the default BindAllRows() databinder but
  * could and should be used by any custom databind methods that would be used for instances of this
  * MetaDataGrid, by simply passing in a custom QQCondition and/or QQClause. 
  *
  * If a paginator is set on this DataBinder, it will use it.  If not, then no pagination will be used.
  * It will also perform any sorting (if applicable).
  *
  * @param QQCondition $objConditions override the default condition of QQ::All() to the query, itself
  * @param QQClause[] $objOptionalClauses additional optional QQClause object or array of QQClause objects for the query		 
  * @return void
  */
 public function MetaDataBinder(QQCondition $objCondition = null, $objOptionalClauses = null)
 {
     // Setup input parameters to default values if none passed in
     if (!$objCondition) {
         $objCondition = QQ::All();
     }
     $objClauses = $objOptionalClauses ? $objOptionalClauses : array();
     // We need to first set the TotalItemCount, which will affect the calcuation of LimitClause below
     if ($this->Paginator) {
         $this->TotalItemCount = ClassAttendence::QueryCount($objCondition, $objClauses);
     }
     // If a column is selected to be sorted, and if that column has a OrderByClause set on it, then let's add
     // the OrderByClause to the $objClauses array
     if ($objClause = $this->OrderByClause) {
         array_push($objClauses, $objClause);
     }
     // Add the LimitClause information, as well
     if ($objClause = $this->LimitClause) {
         array_push($objClauses, $objClause);
     }
     // Set the DataSource to be a Query result from ClassAttendence, given the clauses above
     $this->DataSource = ClassAttendence::QueryArray($objCondition, $objClauses);
 }
 /**
  * Static Helper Method to Create using PK arguments
  * You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
  * If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
  * static helper methods.  Finally, specify a CreateType to define whether or not we are only allowed to 
  * edit, or if we are also allowed to create a new one, etc.
  * 
  * @param mixed $objParentObject QForm or QPanel which will be using this ClassAttendenceMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing ClassAttendence object creation - defaults to CreateOrEdit
  * @return ClassAttendenceMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objClassAttendence = ClassAttendence::Load($intId);
         // ClassAttendence was found -- return it!
         if ($objClassAttendence) {
             return new ClassAttendenceMetaControl($objParentObject, $objClassAttendence);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a ClassAttendence object with PK arguments: ' . $intId);
             }
         }
         // If EditOnly is specified, throw an exception
     } else {
         if ($intCreateType == QMetaControlCreateType::EditOnly) {
             throw new QCallerException('No PK arguments specified');
         }
     }
     // If we are here, then we need to create a new record
     return new ClassAttendenceMetaControl($objParentObject, new ClassAttendence());
 }
Exemplo n.º 7
0
 protected function pxyEditClassAttendance_Click($strFormId, $strControlId, $strParameter)
 {
     $strParamArray = explode("_", $strParameter);
     $strIndex = $strParamArray[0];
     $strMeetingId = $strParamArray[1];
     $this->lblDebug->Text = "strFormId = " . $strFormId . "\nstrControlId = " . $strControlId . "\nstrParameter = " . $strParameter;
     $this->objClassAttendance = ClassAttendence::LoadByClassRegistrationIdMeetingNumber($this->mctClassRegistrationArray[$strIndex]->ClassRegistration->SignupEntryId, $strMeetingId);
     $this->dlgEdit->ShowDialogBox();
     $this->dlgEdit->Template = dirname(__FILE__) . '/dlgEditAttendence_ClassAttendance.tpl.php';
     $this->intEditTag = self::EditTagClassAttendance;
     // Reset
     $this->ResetDialogControls();
     $this->lstListbox->Name = 'Attendance Entry';
     $this->lstListbox->AddItem('- Not Specified -', null, is_null($this->objClassAttendance->PresentFlag));
     $this->lstListbox->AddItem('Present', true, $this->objClassAttendance->PresentFlag === true);
     $this->lstListbox->AddItem('Not Present', false, $this->objClassAttendance->PresentFlag === false);
 }