Public Member Functions | |
linkPageTitle ($str, $rec) | |
Wrapping page title. | |
wrapRecordTitle ($str, $row) | |
Wrapping the title of the record. | |
Public Attributes | |
$dontPrintPageInsertIcons = 1 |
|
Wrapping page title.
Reimplemented from t3lib_positionMap. Definition at line 194 of file move_el.php. 00194 { 00195 $url = t3lib_div::linkThisScript(array('uid'=>intval($rec['uid']),'moveUid'=>$GLOBALS['SOBE']->moveUid)); 00196 return '<a href="'.htmlspecialchars($url).'">'.$str.'</a>'; 00197 }
|
|
Wrapping the title of the record.
Reimplemented from t3lib_positionMap. Definition at line 206 of file move_el.php. 00206 { 00207 if ($GLOBALS['SOBE']->moveUid==$row['uid']) $str = '<b>'.$str.'</b>'; 00208 return parent::wrapRecordTitle($str,$row); 00209 }
|
|
Reimplemented from t3lib_positionMap. Definition at line 185 of file move_el.php. |