2014-04-08 12:32:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-12-01 07:21:47 +00:00
|
|
|
* @package Joomla.Administrator
|
|
|
|
* @subpackage Weblinks
|
2014-04-08 12:32:59 +00:00
|
|
|
*
|
2017-02-13 16:20:35 +00:00
|
|
|
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
|
2014-04-08 12:32:59 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Weblinks Component Controller
|
|
|
|
*
|
2014-12-04 19:43:05 +00:00
|
|
|
* @since 1.5
|
2014-04-08 12:32:59 +00:00
|
|
|
*/
|
|
|
|
class WeblinksController extends JControllerLegacy
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Method to display a view.
|
|
|
|
*
|
2016-08-01 17:47:09 +00:00
|
|
|
* @param boolean $cacheable If true, the view output will be cached
|
|
|
|
* @param array $urlparams An array of safe url parameters and their variable types,
|
|
|
|
* for valid values see {@link JFilterInput::clean()}.
|
2015-02-18 01:20:59 +00:00
|
|
|
*
|
|
|
|
* @return WeblinksController This object to support chaining.
|
2014-04-08 12:32:59 +00:00
|
|
|
*
|
|
|
|
* @since 1.5
|
|
|
|
*/
|
2016-06-25 20:51:02 +00:00
|
|
|
public function display($cacheable = false, $urlparams = false)
|
2014-04-08 12:32:59 +00:00
|
|
|
{
|
2016-07-02 11:02:00 +00:00
|
|
|
// Huh? Why not just put that in the constructor?
|
|
|
|
$cacheable = true;
|
2014-04-08 12:32:59 +00:00
|
|
|
|
2016-08-01 17:47:09 +00:00
|
|
|
/**
|
|
|
|
* Set the default view name and format from the Request.
|
|
|
|
* Note we are using w_id to avoid collisions with the router and the return page.
|
|
|
|
* Frontend is a bit messier than the backend.
|
|
|
|
*/
|
2014-04-08 12:32:59 +00:00
|
|
|
$id = $this->input->getInt('w_id');
|
|
|
|
$vName = $this->input->get('view', 'categories');
|
|
|
|
$this->input->set('view', $vName);
|
|
|
|
|
2016-10-15 13:45:10 +00:00
|
|
|
if (JFactory::getUser()->id ||($this->input->getMethod() == 'POST' && $vName == 'categories'))
|
2014-04-08 12:32:59 +00:00
|
|
|
{
|
2016-06-25 20:51:02 +00:00
|
|
|
$cacheable = false;
|
2014-04-08 12:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$safeurlparams = array(
|
2016-07-02 11:02:00 +00:00
|
|
|
'id' => 'INT',
|
|
|
|
'limit' => 'UINT',
|
|
|
|
'limitstart' => 'UINT',
|
|
|
|
'filter_order' => 'CMD',
|
|
|
|
'filter_order_Dir' => 'CMD',
|
|
|
|
'lang' => 'CMD'
|
2014-04-08 12:32:59 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Check for edit form.
|
|
|
|
if ($vName == 'form' && !$this->checkEditId('com_weblinks.edit.weblink', $id))
|
|
|
|
{
|
|
|
|
// Somehow the person just went to the form - we don't allow that.
|
|
|
|
return JError::raiseError(403, JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
|
|
|
|
}
|
|
|
|
|
2016-06-25 20:51:02 +00:00
|
|
|
return parent::display($cacheable, $safeurlparams);
|
2014-04-08 12:32:59 +00:00
|
|
|
}
|
|
|
|
}
|