WEBD-325-45/week-03/project/libraries/src/Controller/WrongCmsController.php

39 lines
1.0 KiB
PHP

<?php
/**
* Joomla! Framework Website
*
* @copyright Copyright (C) 2014 - 2017 Open Source Matters, Inc. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License Version 2 or Later
*/
namespace Joomla\FrameworkWebsite\Controller;
use Joomla\Controller\AbstractController;
use Laminas\Diactoros\Response\TextResponse;
/**
* Controller class to display a message to individuals looking for the wrong CMS
*
* @method \Joomla\FrameworkWebsite\WebApplication getApplication() Get the application object.
* @property-read \Joomla\FrameworkWebsite\WebApplication $app Application object
*/
class WrongCmsController extends AbstractController
{
/**
* Execute the controller.
*
* @return boolean
*/
public function execute(): bool
{
// Enable browser caching
$this->getApplication()->allowCache(true);
$response = new TextResponse("This isn't the CMS you're looking for.", 404);
$this->getApplication()->setResponse($response);
return true;
}
}