| Current Path : /var/www/cesa.co.za/php/includes/ |
| Current File : /var/www/cesa.co.za/php/includes/Picklists.php |
<?php
/*
* Contact otto@igotafrica.com for details
*/
/**
* Manage the Picklists table
*
* @author otto
*/
class Picklists extends BaseTableClass {
public function getSelectArray($type) {
$pickListsSelect = $this->sqlf->getAll("SELECT * FROM Picklists WHERE PicklistType = '" . $type . "' ORDER BY DisplayOrder ASC");
$return = array();
foreach ($pickListsSelect as $pickList) {
$return[$pickList['PicklistLabel']] = $pickList['PicklistValue'];
}
return $return;
}
}