Id, $intId) ); } /** * Load all Usergroups * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Usergroup[] */ public static function LoadAll($objOptionalClauses = null) { // Call Usergroup::QueryArray to perform the LoadAll query try { return Usergroup::QueryArray(QQ::All(), $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count all Usergroups * @return int */ public static function CountAll() { // Call Usergroup::QueryCount to perform the CountAll query return Usergroup::QueryCount(QQ::All()); } /////////////////////////////// // QCODO QUERY-RELATED METHODS /////////////////////////////// /** * Internally called method to assist with calling Qcodo Query for this class * on load methods. * @param QQueryBuilder &$objQueryBuilder the QueryBuilder object that will be created * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause object or array of QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with (sending in null will skip the PrepareStatement step) * @param boolean $blnCountOnly only select a rowcount * @return string the query statement */ protected static function BuildQueryStatement(&$objQueryBuilder, QQCondition $objConditions, $objOptionalClauses, $mixParameterArray, $blnCountOnly) { // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Create/Build out the QueryBuilder object with Usergroup-specific SELET and FROM fields $objQueryBuilder = new QQueryBuilder($objDatabase, 'usergroup'); Usergroup::GetSelectFields($objQueryBuilder); $objQueryBuilder->AddFromItem('usergroup'); // Set "CountOnly" option (if applicable) if ($blnCountOnly) $objQueryBuilder->SetCountOnlyFlag(); // Apply Any Conditions if ($objConditions) try { $objConditions->UpdateQueryBuilder($objQueryBuilder); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Iterate through all the Optional Clauses (if any) and perform accordingly if ($objOptionalClauses) { if ($objOptionalClauses instanceof QQClause) $objOptionalClauses->UpdateQueryBuilder($objQueryBuilder); else if (is_array($objOptionalClauses)) foreach ($objOptionalClauses as $objClause) $objClause->UpdateQueryBuilder($objQueryBuilder); else throw new QCallerException('Optional Clauses must be a QQClause object or an array of QQClause objects'); } // Get the SQL Statement $strQuery = $objQueryBuilder->GetStatement(); // Prepare the Statement with the Query Parameters (if applicable) if ($mixParameterArray) { if (is_array($mixParameterArray)) { if (count($mixParameterArray)) $strQuery = $objDatabase->PrepareStatement($strQuery, $mixParameterArray); // Ensure that there are no other Unresolved Named Parameters if (strpos($strQuery, chr(QQNamedValue::DelimiterCode) . '{') !== false) throw new QCallerException('Unresolved named parameters in the query'); } else throw new QCallerException('Parameter Array must be an array of name-value parameter pairs'); } // Return the Objects return $strQuery; } /** * Static Qcodo Query method to query for a single Usergroup object. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return Usergroup the queried object */ public static function QuerySingle(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = Usergroup::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, false); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query, Get the First Row, and Instantiate a new Usergroup object $objDbResult = $objQueryBuilder->Database->Query($strQuery); return Usergroup::InstantiateDbRow($objDbResult->GetNextRow(), null, null, null, $objQueryBuilder->ColumnAliasArray); } /** * Static Qcodo Query method to query for an array of Usergroup objects. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return Usergroup[] the queried objects as an array */ public static function QueryArray(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = Usergroup::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, false); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query and Instantiate the Array Result $objDbResult = $objQueryBuilder->Database->Query($strQuery); return Usergroup::InstantiateDbResult($objDbResult, $objQueryBuilder->ExpandAsArrayNodes, $objQueryBuilder->ColumnAliasArray); } /** * Static Qcodo Query method to query for a count of Usergroup objects. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return integer the count of queried objects as an integer */ public static function QueryCount(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = Usergroup::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, true); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query and return the row_count $objDbResult = $objQueryBuilder->Database->Query($strQuery); // Figure out if the query is using GroupBy $blnGrouped = false; if ($objOptionalClauses) foreach ($objOptionalClauses as $objClause) { if ($objClause instanceof QQGroupBy) { $blnGrouped = true; break; } } if ($blnGrouped) // Groups in this query - return the count of Groups (which is the count of all rows) return $objDbResult->CountRows(); else { // No Groups - return the sql-calculated count(*) value $strDbRow = $objDbResult->FetchRow(); return QType::Cast($strDbRow[0], QType::Integer); } } /* public static function QueryArrayCached($strConditions, $mixParameterArray = null) { // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Lookup the QCache for This Query Statement $objCache = new QCache('query', 'usergroup_' . serialize($strConditions)); if (!($strQuery = $objCache->GetData())) { // Not Found -- Go ahead and Create/Build out a new QueryBuilder object with Usergroup-specific fields $objQueryBuilder = new QQueryBuilder($objDatabase); Usergroup::GetSelectFields($objQueryBuilder); Usergroup::GetFromFields($objQueryBuilder); // Ensure the Passed-in Conditions is a string try { $strConditions = QType::Cast($strConditions, QType::String); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Create the Conditions object, and apply it $objConditions = eval('return ' . $strConditions . ';'); // Apply Any Conditions if ($objConditions) $objConditions->UpdateQueryBuilder($objQueryBuilder); // Get the SQL Statement $strQuery = $objQueryBuilder->GetStatement(); // Save the SQL Statement in the Cache $objCache->SaveData($strQuery); } // Prepare the Statement with the Parameters if ($mixParameterArray) $strQuery = $objDatabase->PrepareStatement($strQuery, $mixParameterArray); // Perform the Query and Instantiate the Array Result $objDbResult = $objDatabase->Query($strQuery); return Usergroup::InstantiateDbResult($objDbResult); }*/ /** * Updates a QQueryBuilder with the SELECT fields for this Usergroup * @param QQueryBuilder $objBuilder the Query Builder object to update * @param string $strPrefix optional prefix to add to the SELECT fields */ public static function GetSelectFields(QQueryBuilder $objBuilder, $strPrefix = null) { if ($strPrefix) { $strTableName = $strPrefix; $strAliasPrefix = $strPrefix . '__'; } else { $strTableName = 'usergroup'; $strAliasPrefix = ''; } $objBuilder->AddSelectItem($strTableName, 'id', $strAliasPrefix . 'id'); $objBuilder->AddSelectItem($strTableName, 'name', $strAliasPrefix . 'name'); } /////////////////////////////// // INSTANTIATION-RELATED METHODS /////////////////////////////// /** * Instantiate a Usergroup from a Database Row. * Takes in an optional strAliasPrefix, used in case another Object::InstantiateDbRow * is calling this Usergroup::InstantiateDbRow in order to perform * early binding on referenced objects. * @param DatabaseRowBase $objDbRow * @param string $strAliasPrefix * @param string $strExpandAsArrayNodes * @param QBaseClass $objPreviousItem * @param string[] $strColumnAliasArray * @return Usergroup */ public static function InstantiateDbRow($objDbRow, $strAliasPrefix = null, $strExpandAsArrayNodes = null, $objPreviousItem = null, $strColumnAliasArray = array()) { // If blank row, return null if (!$objDbRow) return null; // See if we're doing an array expansion on the previous item $strAlias = $strAliasPrefix . 'id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if (($strExpandAsArrayNodes) && ($objPreviousItem) && ($objPreviousItem->intId == $objDbRow->GetColumn($strAliasName, 'Integer'))) { // We are. Now, prepare to check for ExpandAsArray clauses $blnExpandedViaArray = false; if (!$strAliasPrefix) $strAliasPrefix = 'usergroup__'; $strAlias = $strAliasPrefix . 'contentitem__content_item_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if ((array_key_exists($strAlias, $strExpandAsArrayNodes)) && (!is_null($objDbRow->GetColumn($strAliasName)))) { if ($intPreviousChildItemCount = count($objPreviousItem->_objContentItemArray)) { $objPreviousChildItem = $objPreviousItem->_objContentItemArray[$intPreviousChildItemCount - 1]; $objChildItem = ContentItem::InstantiateDbRow($objDbRow, $strAliasPrefix . 'contentitem__content_item_id__', $strExpandAsArrayNodes, $objPreviousChildItem, $strColumnAliasArray); if ($objChildItem) $objPreviousItem->_objContentItemArray[] = $objChildItem; } else $objPreviousItem->_objContentItemArray[] = ContentItem::InstantiateDbRow($objDbRow, $strAliasPrefix . 'contentitem__content_item_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); $blnExpandedViaArray = true; } $strAlias = $strAliasPrefix . 'page__page_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if ((array_key_exists($strAlias, $strExpandAsArrayNodes)) && (!is_null($objDbRow->GetColumn($strAliasName)))) { if ($intPreviousChildItemCount = count($objPreviousItem->_objPageArray)) { $objPreviousChildItem = $objPreviousItem->_objPageArray[$intPreviousChildItemCount - 1]; $objChildItem = Page::InstantiateDbRow($objDbRow, $strAliasPrefix . 'page__page_id__', $strExpandAsArrayNodes, $objPreviousChildItem, $strColumnAliasArray); if ($objChildItem) $objPreviousItem->_objPageArray[] = $objChildItem; } else $objPreviousItem->_objPageArray[] = Page::InstantiateDbRow($objDbRow, $strAliasPrefix . 'page__page_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); $blnExpandedViaArray = true; } $strAlias = $strAliasPrefix . 'person__person_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if ((array_key_exists($strAlias, $strExpandAsArrayNodes)) && (!is_null($objDbRow->GetColumn($strAliasName)))) { if ($intPreviousChildItemCount = count($objPreviousItem->_objPersonArray)) { $objPreviousChildItem = $objPreviousItem->_objPersonArray[$intPreviousChildItemCount - 1]; $objChildItem = Person::InstantiateDbRow($objDbRow, $strAliasPrefix . 'person__person_id__', $strExpandAsArrayNodes, $objPreviousChildItem, $strColumnAliasArray); if ($objChildItem) $objPreviousItem->_objPersonArray[] = $objChildItem; } else $objPreviousItem->_objPersonArray[] = Person::InstantiateDbRow($objDbRow, $strAliasPrefix . 'person__person_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); $blnExpandedViaArray = true; } // Either return false to signal array expansion, or check-to-reset the Alias prefix and move on if ($blnExpandedViaArray) return false; else if ($strAliasPrefix == 'usergroup__') $strAliasPrefix = null; } // Create a new instance of the Usergroup object $objToReturn = new Usergroup(); $objToReturn->__blnRestored = true; $strAliasName = array_key_exists($strAliasPrefix . 'id', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'id'] : $strAliasPrefix . 'id'; $objToReturn->intId = $objDbRow->GetColumn($strAliasName, 'Integer'); $strAliasName = array_key_exists($strAliasPrefix . 'name', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'name'] : $strAliasPrefix . 'name'; $objToReturn->strName = $objDbRow->GetColumn($strAliasName, 'VarChar'); // Instantiate Virtual Attributes foreach ($objDbRow->GetColumnNameArray() as $strColumnName => $mixValue) { $strVirtualPrefix = $strAliasPrefix . '__'; $strVirtualPrefixLength = strlen($strVirtualPrefix); if (substr($strColumnName, 0, $strVirtualPrefixLength) == $strVirtualPrefix) $objToReturn->__strVirtualAttributeArray[substr($strColumnName, $strVirtualPrefixLength)] = $mixValue; } // Prepare to Check for Early/Virtual Binding if (!$strAliasPrefix) $strAliasPrefix = 'usergroup__'; // Check for ContentItem Virtual Binding $strAlias = $strAliasPrefix . 'contentitem__content_item_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if (!is_null($objDbRow->GetColumn($strAliasName))) { if (($strExpandAsArrayNodes) && (array_key_exists($strAlias, $strExpandAsArrayNodes))) $objToReturn->_objContentItemArray[] = ContentItem::InstantiateDbRow($objDbRow, $strAliasPrefix . 'contentitem__content_item_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); else $objToReturn->_objContentItem = ContentItem::InstantiateDbRow($objDbRow, $strAliasPrefix . 'contentitem__content_item_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); } // Check for Page Virtual Binding $strAlias = $strAliasPrefix . 'page__page_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if (!is_null($objDbRow->GetColumn($strAliasName))) { if (($strExpandAsArrayNodes) && (array_key_exists($strAlias, $strExpandAsArrayNodes))) $objToReturn->_objPageArray[] = Page::InstantiateDbRow($objDbRow, $strAliasPrefix . 'page__page_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); else $objToReturn->_objPage = Page::InstantiateDbRow($objDbRow, $strAliasPrefix . 'page__page_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); } // Check for Person Virtual Binding $strAlias = $strAliasPrefix . 'person__person_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if (!is_null($objDbRow->GetColumn($strAliasName))) { if (($strExpandAsArrayNodes) && (array_key_exists($strAlias, $strExpandAsArrayNodes))) $objToReturn->_objPersonArray[] = Person::InstantiateDbRow($objDbRow, $strAliasPrefix . 'person__person_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); else $objToReturn->_objPerson = Person::InstantiateDbRow($objDbRow, $strAliasPrefix . 'person__person_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); } return $objToReturn; } /** * Instantiate an array of Usergroups from a Database Result * @param DatabaseResultBase $objDbResult * @param string $strExpandAsArrayNodes * @param string[] $strColumnAliasArray * @return Usergroup[] */ public static function InstantiateDbResult(QDatabaseResultBase $objDbResult, $strExpandAsArrayNodes = null, $strColumnAliasArray = null) { $objToReturn = array(); if (!$strColumnAliasArray) $strColumnAliasArray = array(); // If blank resultset, then return empty array if (!$objDbResult) return $objToReturn; // Load up the return array with each row if ($strExpandAsArrayNodes) { $objLastRowItem = null; while ($objDbRow = $objDbResult->GetNextRow()) { $objItem = Usergroup::InstantiateDbRow($objDbRow, null, $strExpandAsArrayNodes, $objLastRowItem, $strColumnAliasArray); if ($objItem) { $objToReturn[] = $objItem; $objLastRowItem = $objItem; } } } else { while ($objDbRow = $objDbResult->GetNextRow()) $objToReturn[] = Usergroup::InstantiateDbRow($objDbRow, null, null, null, $strColumnAliasArray); } return $objToReturn; } /////////////////////////////////////////////////// // INDEX-BASED LOAD METHODS (Single Load and Array) /////////////////////////////////////////////////// /** * Load a single Usergroup object, * by Id Index(es) * @param integer $intId * @return Usergroup */ public static function LoadById($intId) { return Usergroup::QuerySingle( QQ::Equal(QQN::Usergroup()->Id, $intId) ); } /** * Load a single Usergroup object, * by Name Index(es) * @param string $strName * @return Usergroup */ public static function LoadByName($strName) { return Usergroup::QuerySingle( QQ::Equal(QQN::Usergroup()->Name, $strName) ); } //////////////////////////////////////////////////// // INDEX-BASED LOAD METHODS (Array via Many to Many) //////////////////////////////////////////////////// /** * Load an array of ContentItem objects for a given ContentItem * via the content_item_usergroup_assn table * @param integer $intContentItemId * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Usergroup[] */ public static function LoadArrayByContentItem($intContentItemId, $objOptionalClauses = null) { // Call Usergroup::QueryArray to perform the LoadArrayByContentItem query try { return Usergroup::QueryArray( QQ::Equal(QQN::Usergroup()->ContentItem->ContentItemId, $intContentItemId), $objOptionalClauses ); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count Usergroups for a given ContentItem * via the content_item_usergroup_assn table * @param integer $intContentItemId * @return int */ public static function CountByContentItem($intContentItemId) { return Usergroup::QueryCount( QQ::Equal(QQN::Usergroup()->ContentItem->ContentItemId, $intContentItemId) ); } /** * Load an array of Page objects for a given Page * via the page_usergroup_assn table * @param integer $intPageId * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Usergroup[] */ public static function LoadArrayByPage($intPageId, $objOptionalClauses = null) { // Call Usergroup::QueryArray to perform the LoadArrayByPage query try { return Usergroup::QueryArray( QQ::Equal(QQN::Usergroup()->Page->PageId, $intPageId), $objOptionalClauses ); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count Usergroups for a given Page * via the page_usergroup_assn table * @param integer $intPageId * @return int */ public static function CountByPage($intPageId) { return Usergroup::QueryCount( QQ::Equal(QQN::Usergroup()->Page->PageId, $intPageId) ); } /** * Load an array of Person objects for a given Person * via the person_usergroup_assn table * @param integer $intPersonId * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Usergroup[] */ public static function LoadArrayByPerson($intPersonId, $objOptionalClauses = null) { // Call Usergroup::QueryArray to perform the LoadArrayByPerson query try { return Usergroup::QueryArray( QQ::Equal(QQN::Usergroup()->Person->PersonId, $intPersonId), $objOptionalClauses ); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count Usergroups for a given Person * via the person_usergroup_assn table * @param integer $intPersonId * @return int */ public static function CountByPerson($intPersonId) { return Usergroup::QueryCount( QQ::Equal(QQN::Usergroup()->Person->PersonId, $intPersonId) ); } ////////////////////////// // SAVE, DELETE AND RELOAD ////////////////////////// /** * Save this Usergroup * @param bool $blnForceInsert * @param bool $blnForceUpdate * @return int */ public function Save($blnForceInsert = false, $blnForceUpdate = false) { // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); $mixToReturn = null; try { if ((!$this->__blnRestored) || ($blnForceInsert)) { // Perform an INSERT query $objDatabase->NonQuery(' INSERT INTO `usergroup` ( `name` ) VALUES ( ' . $objDatabase->SqlVariable($this->strName) . ' ) '); // Update Identity column and return its value $mixToReturn = $this->intId = $objDatabase->InsertId('usergroup', 'id'); } else { // Perform an UPDATE query // First checking for Optimistic Locking constraints (if applicable) // Perform the UPDATE query $objDatabase->NonQuery(' UPDATE `usergroup` SET `name` = ' . $objDatabase->SqlVariable($this->strName) . ' WHERE `id` = ' . $objDatabase->SqlVariable($this->intId) . ' '); } } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Update __blnRestored and any Non-Identity PK Columns (if applicable) $this->__blnRestored = true; // Return return $mixToReturn; } /** * Delete this Usergroup * @return void */ public function Delete() { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Cannot delete this Usergroup with an unset primary key.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `usergroup` WHERE `id` = ' . $objDatabase->SqlVariable($this->intId) . ''); } /** * Delete all Usergroups * @return void */ public static function DeleteAll() { // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the Query $objDatabase->NonQuery(' DELETE FROM `usergroup`'); } /** * Truncate usergroup table * @return void */ public static function Truncate() { // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the Query $objDatabase->NonQuery(' TRUNCATE `usergroup`'); } /** * Reload this Usergroup from the database. * @return void */ public function Reload() { // Make sure we are actually Restored from the database if (!$this->__blnRestored) throw new QCallerException('Cannot call Reload() on a new, unsaved Usergroup object.'); // Reload the Object $objReloaded = Usergroup::Load($this->intId); // Update $this's local variables to match $this->strName = $objReloaded->strName; } //////////////////// // GETTORS AND SETTORS //////////////////// /** * Lookup a VirtualAttribute value (if applicable). Returns NULL if none found. * @param string $strName * @return string */ public function GetVirtualAttribute($strName) { if (array_key_exists($strName, $this->__strVirtualAttributeArray)) return $this->__strVirtualAttributeArray[$strName]; return null; } /** * Override method to perform a property "Get" * This will get the value of $strName * * @param string $strName Name of the property to get * @return mixed */ public function __get($strName) { switch ($strName) { /////////////////// // Member Variables /////////////////// case 'Id': /** * Gets the value for intId (Read-Only PK) * @return integer */ return $this->intId; case 'Name': /** * Gets the value for strName (Unique) * @return string */ return $this->strName; /////////////////// // Member Objects /////////////////// //////////////////////////// // Virtual Object References (Many to Many and Reverse References) // (If restored via a "Many-to" expansion) //////////////////////////// case '_ContentItem': /** * Gets the value for the private _objContentItem (Read-Only) * if set due to an expansion on the content_item_usergroup_assn association table * @return ContentItem */ return $this->_objContentItem; case '_ContentItemArray': /** * Gets the value for the private _objContentItemArray (Read-Only) * if set due to an ExpandAsArray on the content_item_usergroup_assn association table * @return ContentItem[] */ return (array) $this->_objContentItemArray; case '_Page': /** * Gets the value for the private _objPage (Read-Only) * if set due to an expansion on the page_usergroup_assn association table * @return Page */ return $this->_objPage; case '_PageArray': /** * Gets the value for the private _objPageArray (Read-Only) * if set due to an ExpandAsArray on the page_usergroup_assn association table * @return Page[] */ return (array) $this->_objPageArray; case '_Person': /** * Gets the value for the private _objPerson (Read-Only) * if set due to an expansion on the person_usergroup_assn association table * @return Person */ return $this->_objPerson; case '_PersonArray': /** * Gets the value for the private _objPersonArray (Read-Only) * if set due to an ExpandAsArray on the person_usergroup_assn association table * @return Person[] */ return (array) $this->_objPersonArray; case '__Restored': return $this->__blnRestored; default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } /** * Override method to perform a property "Set" * This will set the property $strName to be $mixValue * * @param string $strName Name of the property to set * @param string $mixValue New value of the property * @return mixed */ public function __set($strName, $mixValue) { switch ($strName) { /////////////////// // Member Variables /////////////////// case 'Name': /** * Sets the value for strName (Unique) * @param string $mixValue * @return string */ try { return ($this->strName = QType::Cast($mixValue, QType::String)); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } /////////////////// // Member Objects /////////////////// default: try { return parent::__set($strName, $mixValue); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } /////////////////////////////// // ASSOCIATED OBJECTS' METHODS /////////////////////////////// // Related Many-to-Many Objects' Methods for ContentItem //------------------------------------------------------------------- /** * Gets all many-to-many associated ContentItems as an array of ContentItem objects * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return ContentItem[] */ public function GetContentItemArray($objOptionalClauses = null) { if ((is_null($this->intId))) return array(); try { return ContentItem::LoadArrayByUsergroup($this->intId, $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Counts all many-to-many associated ContentItems * @return int */ public function CountContentItems() { if ((is_null($this->intId))) return 0; return ContentItem::CountByUsergroup($this->intId); } /** * Checks to see if an association exists with a specific ContentItem * @param ContentItem $objContentItem * @return bool */ public function IsContentItemAssociated(ContentItem $objContentItem) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call IsContentItemAssociated on this unsaved Usergroup.'); if ((is_null($objContentItem->Id))) throw new QUndefinedPrimaryKeyException('Unable to call IsContentItemAssociated on this Usergroup with an unsaved ContentItem.'); $intRowCount = Usergroup::QueryCount( QQ::AndCondition( QQ::Equal(QQN::Usergroup()->Id, $this->intId), QQ::Equal(QQN::Usergroup()->ContentItem->ContentItemId, $objContentItem->Id) ) ); return ($intRowCount > 0); } /** * Associates a ContentItem * @param ContentItem $objContentItem * @return void */ public function AssociateContentItem(ContentItem $objContentItem) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call AssociateContentItem on this unsaved Usergroup.'); if ((is_null($objContentItem->Id))) throw new QUndefinedPrimaryKeyException('Unable to call AssociateContentItem on this Usergroup with an unsaved ContentItem.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' INSERT INTO `content_item_usergroup_assn` ( `usergroup_id`, `content_item_id` ) VALUES ( ' . $objDatabase->SqlVariable($this->intId) . ', ' . $objDatabase->SqlVariable($objContentItem->Id) . ' ) '); } /** * Unassociates a ContentItem * @param ContentItem $objContentItem * @return void */ public function UnassociateContentItem(ContentItem $objContentItem) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociateContentItem on this unsaved Usergroup.'); if ((is_null($objContentItem->Id))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociateContentItem on this Usergroup with an unsaved ContentItem.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `content_item_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' AND `content_item_id` = ' . $objDatabase->SqlVariable($objContentItem->Id) . ' '); } /** * Unassociates all ContentItems * @return void */ public function UnassociateAllContentItems() { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociateAllContentItemArray on this unsaved Usergroup.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `content_item_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' '); } // Related Many-to-Many Objects' Methods for Page //------------------------------------------------------------------- /** * Gets all many-to-many associated Pages as an array of Page objects * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Page[] */ public function GetPageArray($objOptionalClauses = null) { if ((is_null($this->intId))) return array(); try { return Page::LoadArrayByUsergroup($this->intId, $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Counts all many-to-many associated Pages * @return int */ public function CountPages() { if ((is_null($this->intId))) return 0; return Page::CountByUsergroup($this->intId); } /** * Checks to see if an association exists with a specific Page * @param Page $objPage * @return bool */ public function IsPageAssociated(Page $objPage) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call IsPageAssociated on this unsaved Usergroup.'); if ((is_null($objPage->Id))) throw new QUndefinedPrimaryKeyException('Unable to call IsPageAssociated on this Usergroup with an unsaved Page.'); $intRowCount = Usergroup::QueryCount( QQ::AndCondition( QQ::Equal(QQN::Usergroup()->Id, $this->intId), QQ::Equal(QQN::Usergroup()->Page->PageId, $objPage->Id) ) ); return ($intRowCount > 0); } /** * Associates a Page * @param Page $objPage * @return void */ public function AssociatePage(Page $objPage) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call AssociatePage on this unsaved Usergroup.'); if ((is_null($objPage->Id))) throw new QUndefinedPrimaryKeyException('Unable to call AssociatePage on this Usergroup with an unsaved Page.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' INSERT INTO `page_usergroup_assn` ( `usergroup_id`, `page_id` ) VALUES ( ' . $objDatabase->SqlVariable($this->intId) . ', ' . $objDatabase->SqlVariable($objPage->Id) . ' ) '); } /** * Unassociates a Page * @param Page $objPage * @return void */ public function UnassociatePage(Page $objPage) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociatePage on this unsaved Usergroup.'); if ((is_null($objPage->Id))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociatePage on this Usergroup with an unsaved Page.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `page_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' AND `page_id` = ' . $objDatabase->SqlVariable($objPage->Id) . ' '); } /** * Unassociates all Pages * @return void */ public function UnassociateAllPages() { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociateAllPageArray on this unsaved Usergroup.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `page_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' '); } // Related Many-to-Many Objects' Methods for Person //------------------------------------------------------------------- /** * Gets all many-to-many associated People as an array of Person objects * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return Person[] */ public function GetPersonArray($objOptionalClauses = null) { if ((is_null($this->intId))) return array(); try { return Person::LoadArrayByUsergroup($this->intId, $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Counts all many-to-many associated People * @return int */ public function CountPeople() { if ((is_null($this->intId))) return 0; return Person::CountByUsergroup($this->intId); } /** * Checks to see if an association exists with a specific Person * @param Person $objPerson * @return bool */ public function IsPersonAssociated(Person $objPerson) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call IsPersonAssociated on this unsaved Usergroup.'); if ((is_null($objPerson->Id))) throw new QUndefinedPrimaryKeyException('Unable to call IsPersonAssociated on this Usergroup with an unsaved Person.'); $intRowCount = Usergroup::QueryCount( QQ::AndCondition( QQ::Equal(QQN::Usergroup()->Id, $this->intId), QQ::Equal(QQN::Usergroup()->Person->PersonId, $objPerson->Id) ) ); return ($intRowCount > 0); } /** * Associates a Person * @param Person $objPerson * @return void */ public function AssociatePerson(Person $objPerson) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call AssociatePerson on this unsaved Usergroup.'); if ((is_null($objPerson->Id))) throw new QUndefinedPrimaryKeyException('Unable to call AssociatePerson on this Usergroup with an unsaved Person.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' INSERT INTO `person_usergroup_assn` ( `usergroup_id`, `person_id` ) VALUES ( ' . $objDatabase->SqlVariable($this->intId) . ', ' . $objDatabase->SqlVariable($objPerson->Id) . ' ) '); } /** * Unassociates a Person * @param Person $objPerson * @return void */ public function UnassociatePerson(Person $objPerson) { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociatePerson on this unsaved Usergroup.'); if ((is_null($objPerson->Id))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociatePerson on this Usergroup with an unsaved Person.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `person_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' AND `person_id` = ' . $objDatabase->SqlVariable($objPerson->Id) . ' '); } /** * Unassociates all People * @return void */ public function UnassociateAllPeople() { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Unable to call UnassociateAllPersonArray on this unsaved Usergroup.'); // Get the Database Object for this Class $objDatabase = Usergroup::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `person_usergroup_assn` WHERE `usergroup_id` = ' . $objDatabase->SqlVariable($this->intId) . ' '); } } ///////////////////////////////////// // ADDITIONAL CLASSES for QCODO QUERY ///////////////////////////////////// class QQNodeUsergroupContentItem extends QQAssociationNode { protected $strType = 'association'; protected $strName = 'contentitem'; protected $strTableName = 'content_item_usergroup_assn'; protected $strPrimaryKey = 'usergroup_id'; protected $strClassName = 'ContentItem'; public function __get($strName) { switch ($strName) { case 'ContentItemId': return new QQNode('content_item_id', 'ContentItemId', 'integer', $this); case 'ContentItem': return new QQNodeContentItem('content_item_id', 'ContentItemId', 'integer', $this); case '_ChildTableNode': return new QQNodeContentItem('content_item_id', 'ContentItemId', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } class QQNodeUsergroupPage extends QQAssociationNode { protected $strType = 'association'; protected $strName = 'page'; protected $strTableName = 'page_usergroup_assn'; protected $strPrimaryKey = 'usergroup_id'; protected $strClassName = 'Page'; public function __get($strName) { switch ($strName) { case 'PageId': return new QQNode('page_id', 'PageId', 'integer', $this); case 'Page': return new QQNodePage('page_id', 'PageId', 'integer', $this); case '_ChildTableNode': return new QQNodePage('page_id', 'PageId', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } class QQNodeUsergroupPerson extends QQAssociationNode { protected $strType = 'association'; protected $strName = 'person'; protected $strTableName = 'person_usergroup_assn'; protected $strPrimaryKey = 'usergroup_id'; protected $strClassName = 'Person'; public function __get($strName) { switch ($strName) { case 'PersonId': return new QQNode('person_id', 'PersonId', 'integer', $this); case 'Person': return new QQNodePerson('person_id', 'PersonId', 'integer', $this); case '_ChildTableNode': return new QQNodePerson('person_id', 'PersonId', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } class QQNodeUsergroup extends QQNode { protected $strTableName = 'usergroup'; protected $strPrimaryKey = 'id'; protected $strClassName = 'Usergroup'; public function __get($strName) { switch ($strName) { case 'Id': return new QQNode('id', 'Id', 'integer', $this); case 'Name': return new QQNode('name', 'Name', 'string', $this); case 'ContentItem': return new QQNodeUsergroupContentItem($this); case 'Page': return new QQNodeUsergroupPage($this); case 'Person': return new QQNodeUsergroupPerson($this); case '_PrimaryKeyNode': return new QQNode('id', 'Id', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } class QQReverseReferenceNodeUsergroup extends QQReverseReferenceNode { protected $strTableName = 'usergroup'; protected $strPrimaryKey = 'id'; protected $strClassName = 'Usergroup'; public function __get($strName) { switch ($strName) { case 'Id': return new QQNode('id', 'Id', 'integer', $this); case 'Name': return new QQNode('name', 'Name', 'string', $this); case 'ContentItem': return new QQNodeUsergroupContentItem($this); case 'Page': return new QQNodeUsergroupPage($this); case 'Person': return new QQNodeUsergroupPerson($this); case '_PrimaryKeyNode': return new QQNode('id', 'Id', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } ?>