mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Revert "Merge pull request #3002 from moberemk/patch-2"
This reverts commit8e3d6cffb7
, reversing changes made to92800889a6
.
This commit is contained in:
parent
8e3d6cffb7
commit
0d80c92ffb
1 changed files with 1 additions and 2 deletions
|
@ -174,13 +174,12 @@ class HtmlHelper extends AppHelper {
|
||||||
* @param string $name Text for link
|
* @param string $name Text for link
|
||||||
* @param string $link URL for link (if empty it won't be a link)
|
* @param string $link URL for link (if empty it won't be a link)
|
||||||
* @param string|array $options Link attributes e.g. array('id' => 'selected')
|
* @param string|array $options Link attributes e.g. array('id' => 'selected')
|
||||||
* @return this HtmlHelper
|
* @return void
|
||||||
* @see HtmlHelper::link() for details on $options that can be used.
|
* @see HtmlHelper::link() for details on $options that can be used.
|
||||||
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#creating-breadcrumb-trails-with-htmlhelper
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#creating-breadcrumb-trails-with-htmlhelper
|
||||||
*/
|
*/
|
||||||
public function addCrumb($name, $link = null, $options = null) {
|
public function addCrumb($name, $link = null, $options = null) {
|
||||||
$this->_crumbs[] = array($name, $link, $options);
|
$this->_crumbs[] = array($name, $link, $options);
|
||||||
return $this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue