TYPO3 CMS  TYPO3_6-2
NoteController.php
Go to the documentation of this file.
1 <?php
3 
23 
28  protected $sysNoteRepository;
29 
35 
43  public function listAction($pids) {
44  if (empty($pids) || empty($GLOBALS['BE_USER']->user['uid'])) {
45  return '';
46  }
47  $author = $this->backendUserRepository->findByUid($GLOBALS['BE_USER']->user['uid']);
48  $notes = $this->sysNoteRepository->findByPidsAndAuthor($pids, $author);
49  $this->view->assign('notes', $notes);
50  }
51 
52 }
if(!defined('TYPO3_MODE')) $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'][]