Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function GetAllFieldsPhisicalCurrentPeriod()
  2. {
  3. $db = & JFactory::getDBO();
  4. $query = 'Select *
  5. From period
  6. where PhisicalStatus = 0 or PhisicalStatus is null or PhisicalStatus = 2
  7. order by DateBegin
  8. limit 1';
  9. $db->setQuery($query);
  10. $items = $db->loadAssoc();
  11. return $items;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement