Rev 70 | Show entire file | Ignore 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); |
- | 109 | }
|
|
- | 110 | ||
- | 111 | /**
|
|
- | 112 | * (non-PHPDoc)
|
|
- | 113 | * @see View::addSscripts()
|
|
- | 114 | */
|
|
- | 115 | protected function addScripts (array $uris) |
|
- | 116 | {
|
|
- | 117 | return $this->_view->addScripts($uris); |
|
100 | }
|
118 | }
|
101 | 119 | ||
102 | /**
|
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.
|