Guest User

Untitled

a guest
Jul 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. /**
  3. */
  4. class PluginArticleTable extends Doctrine_Table
  5. {
  6. public function fetchActiveArticles()
  7. {
  8. $query = $this->createQuery('a')
  9. ->where('a.is_active = 1')
  10. ->fetchArray();
  11. return $query;
  12. }
Add Comment
Please, Sign In to add comment