Guest User

Untitled

a guest
May 4th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public function getStateAbbrv($state= '')
  2. {
  3. return $this->getStateField($state, 'abbrv');
  4. }
  5.  
  6. public function getStateField($state= '', $field= 'id')
  7. {
  8.  
  9. if ($criteria= $this->setStateCriteria($state))
  10. {
  11. $obj= $this->modx->getObject('State', $criteria);
  12. }
  13. return ($obj) ? $obj->get($field) : false;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment