Esempio n. 1
0
File: Item.php Progetto: zonky2/core
 /**
  * Build the jumpTo link for use in templates.
  *
  * The returning array will hold the following keys:
  * * params - the url parameter (only if a valid filter setting could be determined).
  * * deep   - boolean true, if parameters are non empty, false otherwise.
  * * page   - id of the jumpTo page.
  * * url    - the complete generated url
  *
  * @param ICollection $objSettings The render settings to use.
  *
  * @return array
  */
 public function buildJumpToLink($objSettings)
 {
     if (!$objSettings) {
         return null;
     }
     return $objSettings->buildJumpToUrlFor($this);
 }