Quick search:

Employee
IndexPage
Employee
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
	*/
	function &getLabelSort($subclass) {
		includeClass('PntSqlSort', 'pnt/db/query');
		$sort = new PntSqlSort('label', $subclass);
		$sort->addSortSpec('lastName');
		$sort->addSortSpec('firstName');
		return $sort;
	}

}
?>