Guest User

Untitled

a guest
Jul 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public function preProcess(
  2. PageLayoutView &$parentObject,
  3. &$drawItem,
  4. &$headerContent,
  5. &$itemContent,
  6. array &$row
  7. )
  8. {
  9. if ($row['CType'] === 'slider') {
  10. $headerContent = '<strong>' . $parentObject->CType_labels[$row['CType']] . '</strong><br/>';
  11. $itemContent .= '<p class="title">Images:</p>';
  12. $itemContent .= $parentObject->linkEditContent($parentObject->getThumbCodeUnlinked($row, 'tt_content', 'slider') . '<br />');
  13.  
  14. $drawItem = false;
  15. }
  16. }
Add Comment
Please, Sign In to add comment