* Copyright 2005-2008, Cake Software Foundation, Inc. * 1785 E. Sahara Avenue, Suite 490-204 * Las Vegas, Nevada 89104 * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project * @package cake * @subpackage cake.cake.libs.controller * @since CakePHP(tm) v 0.2.9 * @version $Revision: 6311 $ * @modifiedby $LastChangedBy: phpnut $ * @lastmodified $Date: 2008-01-02 00:33:52 -0600 (Wed, 02 Jan 2008) $ * @license http://www.opensource.org/licenses/mit-license.php The MIT License */ /** * Static content controller * * Override this controller by placing a copy in controllers directory of an application * * @package cake * @subpackage cake.cake.libs.controller */ class PagesController extends AppController{ /** * Controller name * * @var string * @access public */ var $name = 'Pages'; /** * Default helper * * @var array * @access public */ var $helpers = array('Html'); /** * This controller does not use a model * * @var array * @access public */ var $uses = array(); var $components = array('RssReader', 'YahooFinance'); var $feed1; var $ibex; var $noticias; var $simbolos; /** * Displays a view * * @param mixed What page to display * @access public */ function home() { $feed1 = $this->RssReader->leeFeed("http://www.voanews.com/spanish/customCF/RecentStoriesRSS.cfm?keyword=Economy%20and%20Finance"); $this->set("feed1",$feed1); $ibex = $this->YahooFinance->getValor("%5EIBEX"); $this->set("ibex",$ibex); $noticias = $this->YahooFinance->rssReader("%5EIBEX"); $this->set("noticias",$noticias); $simbolos = $this->YahooFinance->getSimbolos(); $this->set("simbolos",$simbolos); } function condiciones() { } } ?>