$managers = $this->Job->Manager->find( 'list');
When I display my job managers doing it this way will do it in alphabetical order. I needed to add a condition though.
$managers = $this->Job->Manager->find( 'list', array('conditions' => array('enabled' => 1)));
I needed to add the condition so it was only retrieving job managers whose accounts were enabled and after that it organized the list in order of their primary key.
Is there any way to have this condition while still keeping the list in alphabetic order to make it easy to find names?