Quick search:

Employee
IndexPage
MenuPart
getClassDir
getEditInfo
getLabel
getLabelSort
getName
getTableName
initPropertyDescriptors


	/** @static 
	* @param string $itemType itemType for the sort (may be this method will be inherited and the sort will be for a subclass)
	* @return PntSqlSort that specifies the sql for sorting the instance records by label
	*/
	static function getLabelSort($subclass) {
		Gen::includeClass('PntSqlSort', 'pnt/db/query');
		$sort = new PntSqlSort('label', $subclass);
		$sort->addSortSpec('lastName');
		$sort->addSortSpec('firstName');
		return $sort;
	}

}
?>
Copyright (c) MetaClass, 2003-

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/ .