当前位置: 首页>>代码示例>>PHP>>正文


PHP QQN::ParentPagerIndividual方法代码示例

本文整理汇总了PHP中QQN::ParentPagerIndividual方法的典型用法代码示例。如果您正苦于以下问题:PHP QQN::ParentPagerIndividual方法的具体用法?PHP QQN::ParentPagerIndividual怎么用?PHP QQN::ParentPagerIndividual使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QQN的用法示例。


在下文中一共展示了QQN::ParentPagerIndividual方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: CountByParentPagerHouseholdId

 /**
  * Count ParentPagerIndividuals
  * by ParentPagerHouseholdId Index(es)
  * @param integer $intParentPagerHouseholdId
  * @return int
  */
 public static function CountByParentPagerHouseholdId($intParentPagerHouseholdId, $objOptionalClauses = null)
 {
     // Call ParentPagerIndividual::QueryCount to perform the CountByParentPagerHouseholdId query
     return ParentPagerIndividual::QueryCount(QQ::Equal(QQN::ParentPagerIndividual()->ParentPagerHouseholdId, $intParentPagerHouseholdId), $objOptionalClauses);
 }
开发者ID:alcf,项目名称:chms,代码行数:11,代码来源:ParentPagerIndividualGen.class.php

示例2: ResolveContentItem

 /**
  * Used internally by the Meta-based Add Column tools.
  *
  * Given a QQNode or a Text String, this will return a ParentPagerIndividual-based QQNode.
  * It will also verify that it is a proper ParentPagerIndividual-based QQNode, and will throw an exception otherwise.
  *
  * @param mixed $mixContent
  * @return QQNode
  */
 protected function ResolveContentItem($mixContent)
 {
     if ($mixContent instanceof QQNode) {
         if (!$mixContent->_ParentNode) {
             throw new QCallerException('Content QQNode cannot be a Top Level Node');
         }
         if ($mixContent->_RootTableName == 'parent_pager_individual') {
             if ($mixContent instanceof QQReverseReferenceNode && !$mixContent->_PropertyName) {
                 throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
             }
             $objCurrentNode = $mixContent;
             while ($objCurrentNode = $objCurrentNode->_ParentNode) {
                 if (!$objCurrentNode instanceof QQNode) {
                     throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
                 }
                 if ($objCurrentNode instanceof QQReverseReferenceNode && !$objCurrentNode->_PropertyName) {
                     throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
                 }
             }
             return $mixContent;
         } else {
             throw new QCallerException('Content QQNode has a root table of "' . $mixContent->_RootTableName . '". Must be a root of "parent_pager_individual".');
         }
     } else {
         if (is_string($mixContent)) {
             switch ($mixContent) {
                 case 'Id':
                     return QQN::ParentPagerIndividual()->Id;
                 case 'ServerIdentifier':
                     return QQN::ParentPagerIndividual()->ServerIdentifier;
                 case 'PersonId':
                     return QQN::ParentPagerIndividual()->PersonId;
                 case 'Person':
                     return QQN::ParentPagerIndividual()->Person;
                 case 'HiddenFlag':
                     return QQN::ParentPagerIndividual()->HiddenFlag;
                 case 'ParentPagerSyncStatusTypeId':
                     return QQN::ParentPagerIndividual()->ParentPagerSyncStatusTypeId;
                 case 'ParentPagerHouseholdId':
                     return QQN::ParentPagerIndividual()->ParentPagerHouseholdId;
                 case 'ParentPagerHousehold':
                     return QQN::ParentPagerIndividual()->ParentPagerHousehold;
                 case 'FirstName':
                     return QQN::ParentPagerIndividual()->FirstName;
                 case 'MiddleName':
                     return QQN::ParentPagerIndividual()->MiddleName;
                 case 'LastName':
                     return QQN::ParentPagerIndividual()->LastName;
                 case 'Prefix':
                     return QQN::ParentPagerIndividual()->Prefix;
                 case 'Suffix':
                     return QQN::ParentPagerIndividual()->Suffix;
                 case 'Nickname':
                     return QQN::ParentPagerIndividual()->Nickname;
                 case 'GraduationYear':
                     return QQN::ParentPagerIndividual()->GraduationYear;
                 case 'Gender':
                     return QQN::ParentPagerIndividual()->Gender;
                 case 'DateOfBirth':
                     return QQN::ParentPagerIndividual()->DateOfBirth;
                 default:
                     throw new QCallerException('Simple Property not found in ParentPagerIndividualDataGrid content: ' . $mixContent);
             }
         } else {
             if ($mixContent instanceof QQAssociationNode) {
                 throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
             } else {
                 throw new QCallerException('Invalid Content type');
             }
         }
     }
 }
开发者ID:alcf,项目名称:chms,代码行数:81,代码来源:ParentPagerIndividualDataGridGen.class.php

示例3: ParentPagerIndividuals_Bind

 public function ParentPagerIndividuals_Bind()
 {
     $this->dtgParentPagerIndividuals->MetaDataBinder(QQ::Equal(QQN::ParentPagerIndividual()->PersonId, $this->objPerson->Id));
 }
开发者ID:alcf,项目名称:chms,代码行数:4,代码来源:Vicp_SafariKids.class.php

示例4: dtgParentPagerIndividual_Bind

 public function dtgParentPagerIndividual_Bind()
 {
     $objCondition = QQ::All();
     if (strlen($strText = trim($this->txtServerIdentifier->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->ServerIdentifier, $strText));
     }
     if (strlen($strText = trim($this->txtFirstName->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Like(QQN::ParentPagerIndividual()->FirstName, $strText . '%'));
     }
     if (strlen($strText = trim($this->txtLastName->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Like(QQN::ParentPagerIndividual()->LastName, $strText . '%'));
     }
     if ($intId = $this->lstParentPagerSyncStatusTypeId->SelectedValue) {
         if ($intId == -1) {
             $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->HiddenFlag, true));
         } else {
             $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->ParentPagerSyncStatusTypeId, $intId), QQ::OrCondition(QQ::Equal(QQN::ParentPagerIndividual()->HiddenFlag, false), QQ::IsNull(QQN::ParentPagerIndividual()->HiddenFlag)));
         }
     }
     if ($strValue = $this->lstGender->SelectedValue) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->Gender, $strValue));
     }
     if (strlen($strText = trim($this->txtGraduationYear->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->GraduationYear, $strText));
     }
     $this->dtgParentPagerIndividuals->MetaDataBinder($objCondition);
 }
开发者ID:alcf,项目名称:chms,代码行数:27,代码来源:index.php

示例5: dtgParentPagerIndividual_Bind

 public function dtgParentPagerIndividual_Bind()
 {
     $objCondition = QQ::All();
     if (strlen($strText = trim($this->txtServerIdentifier->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Equal(QQN::ParentPagerIndividual()->ServerIdentifier, $strText));
     }
     if (strlen($strText = trim($this->txtFirstName->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Like(QQN::ParentPagerIndividual()->FirstName, $strText . '%'));
     }
     if (strlen($strText = trim($this->txtLastName->Text))) {
         $objCondition = QQ::AndCondition($objCondition, QQ::Like(QQN::ParentPagerIndividual()->LastName, $strText . '%'));
     }
     if ($this->chkShowUnlinkedOnly->Checked) {
         $objCondition = QQ::AndCondition($objCondition, QQ::IsNull(QQN::ParentPagerIndividual()->PersonId));
     }
     $this->dtgParentPagerIndividuals->MetaDataBinder($objCondition);
 }
开发者ID:alcf,项目名称:chms,代码行数:17,代码来源:Vicp_SafariKids_Select.class.php


注:本文中的QQN::ParentPagerIndividual方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。