| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 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/www/cj79373/tmp/install_646743b8d26be/packages/install_646743baac7ed/models/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Administrator
* @subpackage Models
*
* @copyright Copyright (C) 2008 - 2022 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
use Joomla\CMS\Filesystem\Folder;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Factory;
jimport('joomla.application.component.modellist');
/**
* Rank Model for Kunena
*
* @since 3.0
*/
class KunenaAdminModelRank extends KunenaModel
{
/**
* @return mixed
*
* @throws Exception
* @since Kunena
*/
public function getRankspaths()
{
$template = KunenaFactory::getTemplate();
$selected = $this->getRank();
$rankpath = $template->getRankPath();
$files1 = (array) Folder::files(JPATH_SITE . '/' . $rankpath, false, false, false, array('index.php', 'index.html'));
$files1 = (array) array_flip($files1);
foreach ($files1 as $key => &$path)
{
$path = $rankpath . $key;
}
$rankpath = 'media/kunena/ranks/';
$files2 = (array) Folder::files(JPATH_SITE . '/' . $rankpath, false, false, false, array('index.php', 'index.html'));
$files2 = (array) array_flip($files2);
foreach ($files2 as $key => &$path)
{
$path = $rankpath . $key;
}
$rank_images = $files1 + $files2;
ksort($rank_images);
$rank_list = array();
foreach ($rank_images as $file => $path)
{
$rank_list[] = HTMLHelper::_('select.option', $path, $file);
}
$list = HTMLHelper::_('select.genericlist', $rank_list, 'rank_image', 'class="inputbox" onchange="update_rank(this.options[selectedIndex].value);" onmousemove="update_rank(this.options[selectedIndex].value);"', 'value', 'text', isset($selected->rank_image) ? $rank_images[$selected->rank_image] : '');
return $list;
}
/**
* @return mixed|null
*
* @throws Exception
* @since Kunena
*/
public function getRank()
{
$db = Factory::getDBO();
$id = $this->getState($this->getName() . '.id');
if ($id)
{
$db->setQuery("SELECT * FROM #__kunena_ranks WHERE rank_id={$db->quote($id)}");
try
{
$selected = $db->loadObject();
}
catch (RuntimeException $e)
{
Factory::getApplication()->enqueueMessage($e->getMessage());
return;
}
return $selected;
}
return;
}
/**
* Method to auto-populate the model state.
* @since Kunena
* @throws Exception
*/
protected function populateState()
{
$this->context = 'com_kunena.admin.rank';
$app = Factory::getApplication();
// Adjust the context to support modal layouts.
$layout = $app->input->get('layout');
if ($layout)
{
$this->context .= '.' . $layout;
}
$value = Factory::getApplication()->input->getInt('id');
$this->setState($this->getName() . '.id', $value);
$this->setState('item.id', $value);
}
}