/** * Obtains the group name from url and sets the title. * * @return void * @access public * */ function preProcess() { require_once 'CRM/Core/Extensions.php'; $ext = new CRM_Core_Extensions(); if ($ext->enabled === TRUE) { self::$_extInstalled = $ext->getInstalled(TRUE); self::$_extNotInstalled = $ext->getNotInstalled(); } CRM_Utils_System::setTitle(ts('CiviCRM Extensions')); }