Example #1
0
 protected function pxyItem_Click($strFormId, $strControlId, $strParameter)
 {
     $this->objSelectedShowcase = ShowcaseItem::Load($strParameter);
     if (!$this->objSelectedShowcase || !$this->objSelectedShowcase->LiveFlag) {
         return;
     }
     $this->dlgBox->Template = dirname(__FILE__) . '/dlgBox_ShowcaseView.tpl.php';
     $this->dlgBox->ShowDialogBox();
 }
 public static function GetSoapArrayFromArray($objArray)
 {
     if (!$objArray) {
         return null;
     }
     $objArrayToReturn = array();
     foreach ($objArray as $objObject) {
         array_push($objArrayToReturn, ShowcaseItem::GetSoapObjectFromObject($objObject, true));
     }
     return unserialize(serialize($objArrayToReturn));
 }
 /**
  * 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 = ShowcaseItem::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 ShowcaseItem, given the clauses above
     $this->DataSource = ShowcaseItem::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 ShowcaseItemMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing ShowcaseItem object creation - defaults to CreateOrEdit
  * @return ShowcaseItemMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objShowcaseItem = ShowcaseItem::Load($intId);
         // ShowcaseItem was found -- return it!
         if ($objShowcaseItem) {
             return new ShowcaseItemMetaControl($objParentObject, $objShowcaseItem);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a ShowcaseItem 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 ShowcaseItemMetaControl($objParentObject, new ShowcaseItem());
 }
Example #5
0
    /**
     * Deletes all associated ShowcaseItems
     * @return void
     */
    public function DeleteAllShowcaseItems()
    {
        if (is_null($this->intId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateShowcaseItem on this unsaved Person.');
        }
        // Get the Database Object for this Class
        $objDatabase = Person::GetDatabase();
        // Journaling
        if ($objDatabase->JournalingDatabase) {
            foreach (ShowcaseItem::LoadArrayByPersonId($this->intId) as $objShowcaseItem) {
                $objShowcaseItem->Journal('DELETE');
            }
        }
        // Perform the SQL Query
        $objDatabase->NonQuery('
				DELETE FROM
					`showcase_item`
				WHERE
					`person_id` = ' . $objDatabase->SqlVariable($this->intId) . '
			');
    }
 /**
  * Default / simple DataBinder for this Meta DataGrid.  This can easily be overridden
  * by calling SetDataBinder() on this DataGrid with another DataBinder of your choice.
  *
  * 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).
  */
 public function MetaDataBinder()
 {
     // Remember!  We need to first set the TotalItemCount, which will affect the calcuation of LimitClause below
     if ($this->Paginator) {
         $this->TotalItemCount = ShowcaseItem::CountAll();
     }
     // Setup the $objClauses Array
     $objClauses = array();
     // 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 ShowcaseItem, given the clauses above
     $this->DataSource = ShowcaseItem::LoadAll($objClauses);
 }
 /**
  * Counts all associated ShowcaseItems
  * @return int
  */
 public function CountShowcaseItems()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return ShowcaseItem::CountByPersonId($this->intId);
 }
Example #8
0
    if (!rand(0, 2)) {
        $objPerson->TimezoneId = rand(1, $intMaxTimeZoneId);
    }
    $objPerson->RegistrationDate = QDataGen::GenerateDateTime($dttStartDate, QDateTime::Now());
    // Save
    $objPerson->Save();
    // Set the DisplayName
    $objPerson->RefreshDisplayName();
    // Update the MaxId count
    $intMaxPersonId = $objPerson->Id;
}
//////////////////////
// Showcase Tables and Classes
//////////////////////
while (QDataGen::DisplayWhileTask('Generating Showcase Items...', GENERATE_SHOWCASE)) {
    $objShowcase = new ShowcaseItem();
    $objShowcase->Person = Person::Load(rand(1, $intMaxPersonId));
    $objShowcase->Name = QDataGen::GenerateTitle(1, 8);
    $objShowcase->Description = QDataGen::GenerateContent(rand(1, 2), 20, 40);
    $objShowcase->Url = 'http://www.foobar.com/';
    $objShowcase->LiveFlag = rand(0, 4);
    $objShowcase->SaveWithImage(QDataGen::GenerateFromArray($strRandomImagePathArray));
}
//////////////////////
// Wiki Tables and Classes
//////////////////////
while (QDataGen::DisplayWhileTask('Generating Wiki Items...', GENERATE_WIKI)) {
    $intWikiItemTypeId = rand(1, WikiItemType::MaxId);
    $intPathLength = rand(1, 3);
    if ($intWikiItemTypeId == WikiItemType::Page) {
        $strPath = '';