%PDF- %PDF-
Direktori : /home1/lightco1/luminero.com.au/administrator/components/com_mobilize/tables/ |
Current File : //home1/lightco1/luminero.com.au/administrator/components/com_mobilize/tables/profile.php |
<?php /** * @version $Id: form.php 19013 2012-11-28 04:48:47Z thailv $ * @package JSNUniform * @subpackage Tables * @author JoomlaShine Team <support@joomlashine.com> * @copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved. * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html * * Websites: http://www.joomlashine.com * Technical Support: Feedback - http://www.joomlashine.com/contact-us/get-support.html */ defined('_JEXEC') or die('Restricted access'); jimport('joomla.database.tableasset'); /** * Abstract Table class * * @package Joomla.Platform * @subpackage Table * @link http://docs.joomla.org/JTable * @since 11.1 * @tutorial Joomla.Platform/jtable.cls */ class JSNMobilizeTableProfile extends JTable { /** * Object constructor to set table and key fields. In most cases this will * be overridden by child classes to explicitly set the table and key fields * for a particular database table. * * @param JDatabase &$db JDatabase connector object. * * @since 11.1 */ function __construct(&$db) { parent::__construct('#__jsn_mobilize_profiles', 'profile_id', $db); } /** * Method to set the publishing state for a row or list of rows in the database * table. The method respects checked out rows by other users and will attempt * to checkin rows that it can after adjustments are made. * * @param mixed $pks An optional array of primary key values to update. If not set the instance property value is used. * @param integer $state The publishing state. eg. [0 = unpublished, 1 = published] * @param integer $userId The user id of the user performing the operation. * * @return boolean True on success. * * @link http://docs.joomla.org/JTable/publish * @since 11.1 */ public function publish($pks = null, $state = 1, $userId = 0) { // Initialise variables. $k = $this->_tbl_key; // Sanitize input. JArrayHelper::toInteger($pks); $userId = (int) $userId; $state = (int) $state; // Build the WHERE clause for the primary keys. $where = $k . '=' . implode(' OR ' . $k . '=', $pks); // Update the publishing state for rows with the given primary keys. $this->_db->setQuery( 'UPDATE `' . $this->_tbl . '`' . ' SET `profile_state` = ' . (int) $state . ' WHERE (' . $where . ')' ); $this->_db->execute(); // Check for a database error. if ($this->_db->getErrorNum()) { $this->setError($this->_db->getErrorMsg()); return false; } return true; } }