| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/components/com_community/tables/ |
Upload File : |
<?php
/**
* @copyright (C) 2013 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
use Joomla\CMS\Factory;
use Joomla\CMS\Table\Table;
defined('_JEXEC') or die('Restricted access');
class CTableApp extends Table
{
public $id = null;
public $userid = null;
public $apps = null;
public $ordering = null;
public $position = null;
public $params = null;
public $privacy = null;
private $_iscore = null;
private $_params = null;
/**
* Constructor
*/
public function __construct( &$db ) {
parent::__construct( '#__community_apps', 'id', $db );
}
/**
* Laod the app given the username and appname
* If it doesn't exist, check if it is a core apps and create an entry
*/
public function loadUserApp($userid, $element)
{
$db = Factory::getDBO();
$query = 'SELECT * FROM ' . $db->quoteName( '#__community_apps' ) . ' '
. 'WHERE ' . $db->quoteName( 'apps' ) . '=' . $db->Quote( $element )
. ' AND ' . $db->quoteName( 'userid' ) . '=' . $db->Quote( $userid );
//echo $strSQL;
$db->setQuery($query);
$result = $db->loadObject();
if($result){
$this->bind($result);
}
else
{
// if it doen's exist, it could be core apps. Look into current
// dispatcher
$dispatcher = CDispatcher::getInstanceStatic();
$observers = $dispatcher->getObservers();
for( $i = 0; $i < count($observers); $i++ )
{
$plgObj = $observers[$i];
if( is_object($plgObj) )
{
$plgObjWrapper = new CPluginWrapper($plgObj);
if( $plgObjWrapper->getPluginType() == 'community'
&& ($plgObj->params != null)
&& ($plgObj->params->get('coreapp', 0) == 1)
&& method_exists($plgObj, 'onProfileDisplay' ))
{
// Ok, now we confirm that this plugin is valid
// The app should be displayed, just that it is not in the
// db yet.
// @todo: Get the position and privacy from backend
$this->apps = $element;
$this->userid = $userid;
$this->position = $plgObj->params->get('position', 'content');
$this->privacy = $plgObj->params->get('privacy', 0);
$this->store();
}
}
}
}
// If id still not loaded. Something is messed up and this object is no good
return !empty($this->id);
}
/**
* Return the app position. If this is a core app, return the position
* as defined in the system parameter
*/
public function getPosition()
{
return $this->position;
}
/**
* Return the params object for user parameters
*/
public function getUserParams()
{
if(!$this->_params)
{
$this->_params = new CParameter( $this->params );
}
return $this->_params;
}
/**
* Return plugin global params object
*/
public function getPluginParams()
{
}
}