| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/enoikio/core/modules/tracker/ |
Upload File : |
<?php
/**
* @file
* User page callbacks for tracker.module.
*/
use Drupal\tracker\Controller\TrackerController;
/**
* Page callback: Generates a page of tracked nodes for the site.
*
* Queries the database for info, adds RDFa info if applicable, and generates
* the render array that will be used to render the page.
*
* @param \Drupal\user\UserInterface $account
* (optional) The user account to track.
*
* @return array
* A renderable array.
*
* @deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use
* \Drupal\tracker\Controller\TrackerController::buildContent() instead.
*
* @see https://www.drupal.org/node/3030645
*/
function tracker_page($account = NULL) {
@trigger_error(__FUNCTION__ . ' is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\tracker\Controller\TrackerController::buildContent() instead. See https://www.drupal.org/node/3030645', E_USER_DEPRECATED);
return \Drupal::classResolver(TrackerController::class)->buildContent($account);
}