javascriptController.php 296 B

12345678910111213
  1. <?php
  2. class javascriptController extends ActionController {
  3. public function firstAction () {
  4. $this->view->_useLayout (false);
  5. header('Content-type: text/javascript');
  6. }
  7. public function actualizeAction () {
  8. $feedDAO = new FeedDAO ();
  9. $this->view->feeds = $feedDAO->listFeeds ();
  10. }
  11. }