本文整理汇总了PHP中AssetModel::CountBySearchHelper方法的典型用法代码示例。如果您正苦于以下问题:PHP AssetModel::CountBySearchHelper方法的具体用法?PHP AssetModel::CountBySearchHelper怎么用?PHP AssetModel::CountBySearchHelper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AssetModel
的用法示例。
在下文中一共展示了AssetModel::CountBySearchHelper方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dtgAssetModel_Bind
protected function dtgAssetModel_Bind()
{
if ($this->blnSearch) {
$this->assignSearchValues();
}
$intCategoryId = $this->intCategoryId;
$intManufacturerId = $this->intManufacturerId;
$strDescription = $this->strDescription;
$strAssetModelCode = $this->strAssetModelCode;
$arrCustomFields = $this->arrCustomFields;
$strDateModifiedFirst = $this->strDateModifiedFirst;
$strDateModifiedLast = $this->strDateModifiedLast;
$strDateModified = $this->strDateModified;
$blnAttachment = $this->blnAttachment;
$objExpansionMap[AssetModel::ExpandCategory] = true;
$objExpansionMap[AssetModel::ExpandManufacturer] = true;
// set if depreciation in application
$objExpansionMap[AssetModel::ExpandDepreciationClass] = true;
// If the search form has been posted
// if ($intCategoryId || $intManufacturerId || $strDescription || $strAssetModelCode) {
$this->dtgAssetModel->TotalItemCount = AssetModel::CountBySearchHelper($intCategoryId, $intManufacturerId, $strDescription, $strAssetModelCode, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment, $objExpansionMap);
$this->dtgAssetModel->DataSource = AssetModel::LoadArrayBySearchHelper($intCategoryId, $intManufacturerId, $strDescription, $strAssetModelCode, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment, $this->dtgAssetModel->SortInfo, $this->dtgAssetModel->LimitInfo, $objExpansionMap);
$this->blnSearch = false;
}
示例2: dtgAssetModel_Bind
public function dtgAssetModel_Bind()
{
if ($this->blnSearch) {
$this->assignSearchValues();
}
$intCategoryId = $this->intCategoryId;
$intManufacturerId = $this->intManufacturerId;
$strDescription = $this->strDescription;
$strAssetModelCode = $this->strAssetModelCode;
$arrCustomFields = $this->arrCustomFields;
$strDateModifiedFirst = $this->strDateModifiedFirst;
$strDateModifiedLast = $this->strDateModifiedLast;
$strDateModified = $this->strDateModified;
$blnAttachment = $this->blnAttachment;
$objExpansionMap[AssetModel::ExpandCategory] = true;
$objExpansionMap[AssetModel::ExpandManufacturer] = true;
// If the search form has been posted
// if ($intCategoryId || $intManufacturerId || $strDescription || $strAssetModelCode) {
if (!$this->objParentControl && $this->Display == true || $this->objParentControl->Display == true) {
$this->dtgAssetModel->TotalItemCount = AssetModel::CountBySearchHelper($intCategoryId, $intManufacturerId, $strDescription, $strAssetModelCode, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment, $objExpansionMap);
if ($this->dtgAssetModel->TotalItemCount == 0) {
$this->dtgAssetModel->ShowHeader = false;
} else {
$this->dtgAssetModel->DataSource = AssetModel::LoadArrayBySearchHelper($intCategoryId, $intManufacturerId, $strDescription, $strAssetModelCode, $arrCustomFields, $strDateModified, $strDateModifiedFirst, $strDateModifiedLast, $blnAttachment, $this->dtgAssetModel->SortInfo, $this->dtgAssetModel->LimitInfo, $objExpansionMap);
$this->dtgAssetModel->ShowHeader = true;
}
}
$this->blnSearch = false;
}