
|
| PntObjectIndexPage |
| PntErrorPage |
| PntHorSelReportPage |
| PntIndexPage |
| PntObjectDetailsPage |
| PntObjectEditDetailsPage |
| PntObjectMtoNPropertyPage |
| PntObjectMtoNSearchPage |
| PntObjectPropertyPage |
| PntObjectReportPage |
| PntObjectSearchPage |
| PntObjectSelectionDetailsReportPage |
| PntObjectSelectionReportPage |
| PntObjectVerifyDeletePage |
| PntPage |
|
| getGlobalCombiFilter |
| ajaxPrintUpdates |
| getAllItemsSize |
| getButtonsList |
| getDeleteConfirmationQuestion |
| getFilterPartString |
| getGlobalFilter |
| getInformation |
| getInitItemTable |
| getItemTable |
| getItemsInfo |
| getName |
| getNoItemsMarkedMessage |
| getPageButtonScript |
| getPageItemCount |
| getPageItemOffset |
| getPagerButtonsListBuilder |
| getRequestedObject |
| getThisPntContext |
| hasFilterForm |
| initForHandleRequest |
| initPagerButtonsListBuilder |
| isReadonly |
| printBodyTagIeExtraPiece |
| printDeleteScript |
| printIndexPart |
| printItemTablePart |
|
/** Return a combiFilter for combing the global filters with
* the filter of the searchPart.
* This method may be overriden for applicable logical combination of filters
* Default implementation: PntSqlCombiFilter withParts: this getGlobalFilters
* currently only used by custom subclasses
* Override getGlobalFIlters on custom subclass to select applicable filters
* and make sure all applicable filter classes are included.
*/
function () {
$filter = $this->();
if (!$filter) return null;
Gen::includeClass('PntSqlCombiFilter', 'pnt/db/query');
$combi = new PntSqlCombiFilter();
$combi->($filter);
return $combi;
}
|
Copyright (c) MetaClass, 2003- . All rights reserved.
This code is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
Click here for a copy of the license or see http://www.gnu.org/licenses/ .
|
|