mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Correct typos.
This commit is contained in:
parent
e7f76a983a
commit
a6bd133413
1 changed files with 4 additions and 4 deletions
|
@ -959,16 +959,16 @@ class PaginatorHelper extends AppHelper {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the meta-links for a paginated result set
|
||||
* Returns the meta-links for a paginated result set.
|
||||
*
|
||||
* `echo $this->Paginator->meta();`
|
||||
*
|
||||
* Echos the links directly, will output nothing of there is neither a previous nor next page.
|
||||
* Echos the links directly, will output nothing if there is neither a previous nor next page.
|
||||
*
|
||||
* `$this->Paginator->meta(array('block' => true));`
|
||||
*
|
||||
* Will append the output of the meta function to the named block - if true is passed the "meta"
|
||||
* block is used
|
||||
* block is used.
|
||||
*
|
||||
* ### Options:
|
||||
*
|
||||
|
@ -976,7 +976,7 @@ class PaginatorHelper extends AppHelper {
|
|||
* - `block` The block name to append the output to, or false/absenst to return as a string
|
||||
*
|
||||
* @param array $options Array of options
|
||||
* @return string|null meta links
|
||||
* @return string|null Meta links
|
||||
*/
|
||||
public function meta($options = array()) {
|
||||
$model = isset($options['model']) ? $options['model'] : null;
|
||||
|
|
Loading…
Reference in a new issue