Skip to content
Snippets Groups Projects
Unverified Commit 74db8d6f authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #17535 from eileenmcnaughton/gone

Remove unused deprecated class
parents 79a163ee a1ac7681
No related branches found
No related tags found
No related merge requests found
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*/
/**
* Page for displaying list of categories for Settings.
*/
class CRM_Admin_Page_Setting extends CRM_Core_Page {
/**
* Run page.
*
* @return string
* @throws Exception
*/
public function run() {
CRM_Core_Error::fatal('This page is deprecated. If you have followed a link or have been redirected here, please change link or redirect to Admin Console (/civicrm/admin?reset=1)');
CRM_Utils_System::setTitle(ts("Global Settings"));
return parent::run();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment