Public Member Functions | |
listURL ($altId='', $table=-1, $exclList='') | |
Creates the URL for links. | |
ext_addP () | |
Returns additional, local GET parameters to include in the links of the record list. | |
linkWrapItems ($table, $uid, $code, $row) | |
Returns the title (based on $code) of a record (from table $table) with the proper link around (that is for "pages"-records a link to the level of that record...). | |
Public Attributes | |
$script = 'browse_links.php' |
|
Returns additional, local GET parameters to include in the links of the record list.
Definition at line 187 of file browse_links.php. Referenced by listURL(). 00187 {
00188 $str = '&act='.$GLOBALS['SOBE']->act.
00189 '&mode='.$GLOBALS['SOBE']->mode.
00190 '&expandPage='.$GLOBALS['SOBE']->expandPage.
00191 '&bparams='.rawurlencode($GLOBALS['SOBE']->bparams);
00192 return $str;
00193 }
|
|
Returns the title (based on $code) of a record (from table $table) with the proper link around (that is for "pages"-records a link to the level of that record...).
Definition at line 204 of file browse_links.php. |
|
Creates the URL for links.
Definition at line 168 of file browse_links.php. References ext_addP(), and table(). 00168 { 00169 return $this->script. 00170 '?id='.(strcmp($altId,'')?$altId:$this->id). 00171 '&table='.rawurlencode($table==-1?$this->table:$table). 00172 ($this->thumbs?'&imagemode='.$this->thumbs:''). 00173 ($this->searchString?'&search_field='.rawurlencode($this->searchString):''). 00174 ($this->searchLevels?'&search_levels='.rawurlencode($this->searchLevels):''). 00175 ((!$exclList || !t3lib_div::inList($exclList,'sortField')) && $this->sortField?'&sortField='.rawurlencode($this->sortField):''). 00176 ((!$exclList || !t3lib_div::inList($exclList,'sortRev')) && $this->sortRev?'&sortRev='.rawurlencode($this->sortRev):''). 00177 // extra: 00178 $this->ext_addP() 00179 ; 00180 }
|
|
Definition at line 158 of file browse_links.php. |