HosipLan

Untitled

Jan 4th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1.     public function getPagesPairs()
  2.     {
  3.     return $this->getDatabase()
  4.         ->select('*')->from("[$this->table] p")
  5.         ->join('page_lang pl')->on('pl.page_id = p.id')
  6.         ->where('pl.lang = %s', 'cs')
  7.         ->fetchPairs('id', 'title');
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment