Commit 86933cd7 by Alexander Makarov

Fixed hash doc for pagination

parent 26514419
...@@ -85,7 +85,8 @@ class Pagination extends Object ...@@ -85,7 +85,8 @@ class Pagination extends Object
/** /**
* @var array parameters (name => value) that should be used to obtain the current page number * @var array parameters (name => value) that should be used to obtain the current page number
* and to create new pagination URLs. If not set, all parameters from $_GET will be used instead. * and to create new pagination URLs. If not set, all parameters from $_GET will be used instead.
* In order to add hash to all links use `'#' => 'hashtag'`. *
* In order to add hash to all links use array_merge($_GET, ['#' => 'my-hash']).
* *
* The array element indexed by [[pageVar]] is considered to be the current page number. * The array element indexed by [[pageVar]] is considered to be the current page number.
* If the element does not exist, the current page number is considered 0. * If the element does not exist, the current page number is considered 0.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment