2014-04-08 12:32:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-11-28 22:13:39 +00:00
|
|
|
* @package Weblinks
|
2014-04-08 12:32:59 +00:00
|
|
|
*
|
2016-11-28 22:13:39 +00:00
|
|
|
* @copyright Copyright (C) 2005 - 2016 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;
|
|
|
|
|
2016-06-25 21:23:16 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
|
|
|
|
2014-04-08 12:32:59 +00:00
|
|
|
JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/tables');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Weblinks Component Model for a Weblink record
|
|
|
|
*
|
2014-12-04 19:43:05 +00:00
|
|
|
* @since 1.5
|
2014-04-08 12:32:59 +00:00
|
|
|
*/
|
|
|
|
class WeblinksModelWeblink extends JModelItem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Model context string.
|
|
|
|
*
|
2015-02-18 01:20:59 +00:00
|
|
|
* @var string
|
2014-04-08 12:32:59 +00:00
|
|
|
*/
|
|
|
|
protected $_context = 'com_weblinks.weblink';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to auto-populate the model state.
|
|
|
|
*
|
|
|
|
* Note. Calling getState in this method will result in recursion.
|
|
|
|
*
|
2016-07-08 18:55:07 +00:00
|
|
|
* @return void
|
|
|
|
*
|
2014-04-08 12:32:59 +00:00
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function populateState()
|
|
|
|
{
|
2016-06-25 21:23:16 +00:00
|
|
|
$app = JFactory::getApplication();
|
|
|
|
$params = $app->getParams();
|
2014-04-08 12:32:59 +00:00
|
|
|
|
|
|
|
// Load the object state.
|
2016-06-25 21:23:16 +00:00
|
|
|
$id = $app->input->getInt('id');
|
2014-04-08 12:32:59 +00:00
|
|
|
$this->setState('weblink.id', $id);
|
|
|
|
|
|
|
|
// Load the parameters.
|
|
|
|
$this->setState('params', $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get an object.
|
|
|
|
*
|
2016-07-08 18:55:07 +00:00
|
|
|
* @param integer $id The id of the object to get.
|
2014-04-08 12:32:59 +00:00
|
|
|
*
|
|
|
|
* @return mixed Object on success, false on failure.
|
|
|
|
*/
|
|
|
|
public function getItem($id = null)
|
|
|
|
{
|
|
|
|
if ($this->_item === null)
|
|
|
|
{
|
|
|
|
$this->_item = false;
|
|
|
|
|
|
|
|
if (empty($id))
|
|
|
|
{
|
|
|
|
$id = $this->getState('weblink.id');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a level row instance.
|
|
|
|
$table = JTable::getInstance('Weblink', 'WeblinksTable');
|
|
|
|
|
|
|
|
// Attempt to load the row.
|
|
|
|
if ($table->load($id))
|
|
|
|
{
|
|
|
|
// Check published state.
|
|
|
|
if ($published = $this->getState('filter.published'))
|
|
|
|
{
|
|
|
|
if ($table->state != $published)
|
|
|
|
{
|
|
|
|
return $this->_item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the JTable to a clean JObject.
|
2016-06-25 21:23:16 +00:00
|
|
|
$properties = $table->getProperties(1);
|
|
|
|
$this->_item = ArrayHelper::toObject($properties, 'JObject');
|
2014-04-08 12:32:59 +00:00
|
|
|
}
|
|
|
|
elseif ($error = $table->getError())
|
|
|
|
{
|
|
|
|
$this->setError($error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a reference to the a Table object, always creating it.
|
|
|
|
*
|
2016-07-08 18:55:07 +00:00
|
|
|
* @param string $type The table type to instantiate
|
|
|
|
* @param string $prefix A prefix for the table class name. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
2015-02-18 01:20:59 +00:00
|
|
|
*
|
2016-06-25 21:23:16 +00:00
|
|
|
* @return JTable A database object
|
2015-02-18 01:20:59 +00:00
|
|
|
*
|
2016-06-25 21:23:16 +00:00
|
|
|
* @since 1.6
|
2014-04-08 12:32:59 +00:00
|
|
|
*/
|
|
|
|
public function getTable($type = 'Weblink', $prefix = 'WeblinksTable', $config = array())
|
|
|
|
{
|
|
|
|
return JTable::getInstance($type, $prefix, $config);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to increment the hit counter for the weblink
|
|
|
|
*
|
|
|
|
* @param integer $id Optional ID of the weblink.
|
|
|
|
*
|
|
|
|
* @return boolean True on success
|
|
|
|
*/
|
|
|
|
public function hit($id = null)
|
|
|
|
{
|
|
|
|
if (empty($id))
|
|
|
|
{
|
|
|
|
$id = $this->getState('weblink.id');
|
|
|
|
}
|
|
|
|
|
2016-06-25 21:23:16 +00:00
|
|
|
return $this->getTable('Weblink', 'WeblinksTable')->hit($id);
|
2014-04-08 12:32:59 +00:00
|
|
|
}
|
|
|
|
}
|