Subversion Repositories PHPX

Rev

Rev 70 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 70 Rev 71
Line 90... Line 90...
90
    return $this->_view->addStylesheet($uri, $key);
90
    return $this->_view->addStylesheet($uri, $key);
91
  }
91
  }
92
92
93
  /**
93
  /**
94
   * (non-PHPDoc)
94
   * (non-PHPDoc)
-
 
95
   * @see View::addStylesheets()
-
 
96
   */
-
 
97
  protected function addStylesheets (array $uris)
-
 
98
  {
-
 
99
    return $this->_view->addStylesheets($uris);
-
 
100
  }
-
 
101
-
 
102
  /**
-
 
103
   * (non-PHPDoc)
95
   * @see View::addSscript()
104
   * @see View::addSscript()
96
   */
105
   */
97
  protected function addScript ($uri, $key = null)
106
  protected function addScript ($uri, $key = null)
98
  {
107
  {
99
    return $this->_view->addScript ($uri, $key);
108
    return $this->_view->addScript($uri, $key);
100
  }
109
  }
101
110
102
  /**
111
  /**
-
 
112
   * (non-PHPDoc)
-
 
113
   * @see View::addSscripts()
-
 
114
   */
-
 
115
  protected function addScripts (array $uris)
-
 
116
  {
-
 
117
    return $this->_view->addScripts($uris);
-
 
118
  }
-
 
119
-
 
120
  /**
103
   * Renders the {@link View} associated with this controller
121
   * Renders the {@link View} associated with this controller
104
   * by including the <code>View</code>'s template.
122
   * by including the <code>View</code>'s template.
105
   * <code>Controller</code>s should call this method instead of
123
   * <code>Controller</code>s should call this method instead of
106
   * <code>View::render()</code>.
124
   * <code>View::render()</code>.
107
   *
125
   *