protected function btnSubmitPrayer_Click($strFormId, $strControlId, $strParameter) { // Generate a prayer request object. $objPrayer = new PrayerRequest(); $objPrayer->Email = ''; $objPrayer->Name = $this->txtName->Text; $objPrayer->Subject = ''; $objPrayer->Content = $this->txtContent->Text; $objPrayer->IsAllowNotes = false; $objPrayer->IsConfidential = true; $objPrayer->IsInappropriate = false; $objPrayer->IsPrayerIndicator = false; $objNowTime = new DateTime(); $objPrayer->Date = QDateTime::Now(); $objPrayer->Save(); $this->SendMessage(); // return to prayer page QApplication::Redirect('/prayer/complete_confidential_prayer.php'); }
protected function Form_Create() { $this->objPrayerRequest = PrayerRequest::Load(QApplication::PathInfo(0)); $this->txtSubject = new QTextBox($this); $this->txtSubject->Name = 'Prayer Subject:'; $this->txtSubject->Visible = true; $this->txtSubject->Width = 400; $this->txtSubject->Enabled = false; if ($this->objPrayerRequest != null) { $this->txtSubject->Text = 'RE: ' . $this->objPrayerRequest->Subject; } $this->txtNote = new QTextBox($this); $this->txtNote->Name = 'Note:'; $this->txtNote->Rows = 20; $this->txtNote->Columns = 20; $this->txtNote->TextMode = QTextMode::MultiLine; $this->txtNote->Visible = true; $this->btnSubmitNote = new QButton($this); $this->btnSubmitNote->Text = 'Submit Note'; $this->btnSubmitNote->CausesValidation = true; $this->btnSubmitNote->AddAction(new QClickEvent(), new QAjaxAction('btnSubmitNote_Click')); }
protected function lnkSelected_Click($strFormId, $strControlId, $strParameter) { $intPrayerRequestId = $strParameter; $objPrayerRequest = PrayerRequest::Load($intPrayerRequestId); if ($objPrayerRequest) { $this->btnInappropriate->Visible = true; if ($objPrayerRequest->IsAllowNotes) { $this->btnEncouragement->Visible = true; } else { $this->btnEncouragement->Visible = false; } if ($objPrayerRequest->IsPrayerIndicator) { $this->lblPrayerCount->Visible = true; $this->btnIPrayed->Visible = true; } else { $this->lblPrayerCount->Visible = false; $this->btnIPrayed->Visible = false; } $this->objPrayerRequest = $objPrayerRequest; $this->lblSubject->Text = $objPrayerRequest->Subject; $this->lblDate->Text = $objPrayerRequest->Date ? $objPrayerRequest->Date->ToString() : ''; $this->lblContent->Text = $objPrayerRequest->Content; $imgPrayerCount = '<img src="/assets/images/spacer.png" class="prayerStar" />' . ' ' . $this->objPrayerRequest->PrayerCount . ' People prayed for you'; $this->lblPrayerCount->Text = $imgPrayerCount; } }
public static function GetSoapArrayFromArray($objArray) { if (!$objArray) { return null; } $objArrayToReturn = array(); foreach ($objArray as $objObject) { array_push($objArrayToReturn, PrayerRequest::GetSoapObjectFromObject($objObject, true)); } return unserialize(serialize($objArrayToReturn)); }
/** * 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 PrayerRequestMetaControl * @param integer $intId primary key value * @param QMetaControlCreateType $intCreateType rules governing PrayerRequest object creation - defaults to CreateOrEdit * @return PrayerRequestMetaControl */ public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit) { // Attempt to Load from PK Arguments if (strlen($intId)) { $objPrayerRequest = PrayerRequest::Load($intId); // PrayerRequest was found -- return it! if ($objPrayerRequest) { return new PrayerRequestMetaControl($objParentObject, $objPrayerRequest); } else { if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) { throw new QCallerException('Could not find a PrayerRequest 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 PrayerRequestMetaControl($objParentObject, new PrayerRequest()); }
/** * 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 = PrayerRequest::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 PrayerRequest, given the clauses above $this->DataSource = PrayerRequest::QueryArray($objCondition, $objClauses); }