tutto cho che serve phoca
This commit is contained in:
@ -0,0 +1,139 @@
|
||||
<?php
|
||||
/* @package Joomla
|
||||
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
||||
* @extension Phoca Extension
|
||||
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||||
*/
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
|
||||
abstract class PhocaDownloadBatch
|
||||
{
|
||||
|
||||
/*public static function item($published, $category = 0)
|
||||
{
|
||||
// Create the copy/move options.
|
||||
$options = array(
|
||||
HTMLHelper::_('select.option', 'c', Text::_('JLIB_HTML_BATCH_COPY')),
|
||||
HTMLHelper::_('select.option', 'm', Text::_('JLIB_HTML_BATCH_MOVE'))
|
||||
);
|
||||
|
||||
$db = Factory::getDbo();
|
||||
|
||||
//build the list of categories
|
||||
$query = 'SELECT a.title AS text, a.id AS value, a.parent_id as parent_id'
|
||||
. ' FROM #__phocadownload_categories AS a'
|
||||
// TO DO. ' WHERE a.published = '.(int)$published
|
||||
. ' ORDER BY a.ordering';
|
||||
$db->setQuery( $query );
|
||||
$data = $db->loadObjectList();
|
||||
$tree = array();
|
||||
$text = '';
|
||||
$catId= -1;
|
||||
$tree = PhocaDownloadCategory::CategoryTreeOption($data, $tree, 0, $text, $catId);
|
||||
|
||||
if ($category == 1) {
|
||||
array_unshift($tree, HTMLHelper::_('select.option', 0, Text::_('JLIB_HTML_ADD_TO_ROOT'), 'value', 'text'));
|
||||
}
|
||||
|
||||
|
||||
// Create the batch selector to change select the category by which to move or copy.
|
||||
$lines = array(
|
||||
'<label id="batch-choose-action-lbl" for="batch-choose-action">',
|
||||
Text::_('JLIB_HTML_BATCH_MENU_LABEL'),
|
||||
'</label>',
|
||||
'<fieldset id="batch-choose-action" class="combo">',
|
||||
'<select name="batch[category_id]" class="form-control" id="batch-category-id">',
|
||||
'<option value=""> - '.Text::_('JSELECT').' - </option>',
|
||||
/*JHtml::_('select.options', JHtml::_('category.options', $extension, array('published' => (int) $published))),*//*
|
||||
HTMLHelper::_('select.options', $tree ),
|
||||
'</select>',
|
||||
HTMLHelper::_( 'select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'),
|
||||
'</fieldset>'
|
||||
);
|
||||
|
||||
return implode("\n", $lines);
|
||||
}
|
||||
*/
|
||||
|
||||
private static function buildCategoryTree(array &$options, array $categories, string $treeTitle): void {
|
||||
foreach ($categories as $category) {
|
||||
$title = ($treeTitle ? $treeTitle . ' - ' : '') . $category->title;
|
||||
$options[] = (object)[
|
||||
'text' => $title . ($category->language === '*' ? '' : ' (' . $category->language . ')'),
|
||||
'value' => $category->id,
|
||||
];
|
||||
if ($category->children)
|
||||
self::buildCategoryTree($options, $category->children, $title);
|
||||
}
|
||||
}
|
||||
|
||||
public static function item($published, $category = 0)
|
||||
{
|
||||
// Create the copy/move options.
|
||||
$options = array(
|
||||
HTMLHelper::_('select.option', 'c', Text::_('JLIB_HTML_BATCH_COPY')),
|
||||
HTMLHelper::_('select.option', 'm', Text::_('JLIB_HTML_BATCH_MOVE'))
|
||||
);
|
||||
|
||||
$rootCategories = array_filter(PhocadownloadCategory::getCategories(), function($category) {
|
||||
return !$category->parent_id;
|
||||
});
|
||||
|
||||
$tree = [];
|
||||
$tree[] = HTMLHelper::_('select.option', '', Text::_('JSELECT'), 'value', 'text');
|
||||
if ($category) {
|
||||
$tree[] = HTMLHelper::_('select.option', 0, Text::_('JLIB_HTML_ADD_TO_ROOT'), 'value', 'text');
|
||||
}
|
||||
self::buildCategoryTree($tree, $rootCategories, '');
|
||||
|
||||
$fancySelectData = [
|
||||
'autocomplete' => 'off',
|
||||
'autofocus' => false,
|
||||
'class' => '',
|
||||
'description' => '',
|
||||
'disabled' => false,
|
||||
'group' => false,
|
||||
'id' => 'batch-category-id',
|
||||
'hidden' => false,
|
||||
'hint' => '',
|
||||
'label' => '',
|
||||
'labelclass' => '',
|
||||
'onchange' => '',
|
||||
'onclick' => '',
|
||||
'multiple' => false,
|
||||
'pattern' => '',
|
||||
'readonly' => false,
|
||||
'repeat' => false,
|
||||
'required' => false,
|
||||
'size' => 4,
|
||||
'spellcheck' => false,
|
||||
'validate' => '',
|
||||
'value' => '',
|
||||
'options' => $tree,
|
||||
'dataAttributes' => [],
|
||||
'dataAttribute' => '',
|
||||
'name' => 'batch[category_id]',
|
||||
];
|
||||
|
||||
// Create the batch selector to change select the category by which to move or copy.
|
||||
$lines = array(
|
||||
'<label id="batch-choose-action-lbl" for="batch-choose-action">',
|
||||
Text::_('JLIB_HTML_BATCH_MENU_LABEL'),
|
||||
'</label>',
|
||||
'<fieldset id="batch-choose-action" class="combo">',
|
||||
LayoutHelper::render('joomla.form.field.list-fancy-select', $fancySelectData),
|
||||
HTMLHelper::_( 'select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'),
|
||||
'</fieldset>'
|
||||
);
|
||||
|
||||
return implode("\n", $lines);
|
||||
}
|
||||
}
|
||||
?>
|
||||
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/* @package Joomla
|
||||
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
||||
* @extension Phoca Extension
|
||||
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||||
*/
|
||||
defined('_JEXEC') or die();
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
if (! class_exists('HTMLHelperGrid')) {
|
||||
require_once( JPATH_SITE.'/libraries/joomla/html/html/grid.php' );
|
||||
}
|
||||
//jimport('joomla.html.html.jgrid');
|
||||
class PhocaDownloadGrid extends HTMLHelperJGrid
|
||||
{
|
||||
|
||||
public static function approved($value, $i, $prefix = '', $enabled = true, $checkbox='cb')
|
||||
{
|
||||
if (is_array($prefix)) {
|
||||
$options = $prefix;
|
||||
$enabled = array_key_exists('enabled', $options) ? $options['enabled'] : $enabled;
|
||||
$checkbox = array_key_exists('checkbox', $options) ? $options['checkbox'] : $checkbox;
|
||||
$prefix = array_key_exists('prefix', $options) ? $options['prefix'] : '';
|
||||
}
|
||||
$states = array(
|
||||
1 => array('disapprove', 'COM_PHOCADOWNLOAD_APPROVED', 'COM_PHOCADOWNLOAD_NOT_APPROVE_ITEM', 'COM_PHOCADOWNLOAD_APPROVED', false, 'publish', 'publish'),
|
||||
0 => array('approve', 'COM_PHOCADOWNLOAD_NOT_APPROVED', 'COM_PHOCADOWNLOAD_APPROVE_ITEM', 'COM_PHOCADOWNLOAD_NOT_APPROVED', false, 'unpublish', 'unpublish')
|
||||
);
|
||||
return self::state($states, $value, $i, $prefix, $enabled, true, $checkbox);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
<html><body></body></html>
|
||||
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/* @package Joomla
|
||||
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
||||
* @extension Phoca Extension
|
||||
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
||||
*/
|
||||
/*
|
||||
jimport('joomla.html.grid');
|
||||
jimport('joomla.html.html.grid');
|
||||
jimport('joomla.html.html.jgrid');
|
||||
*/
|
||||
defined('_JEXEC') or die();
|
||||
|
||||
use Joomla\CMS\HTML\Helpers\JGrid;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
if (! class_exists('HTMLHelperJGrid')) {
|
||||
require_once( JPATH_SITE.'/libraries/src/HTML/Helpers/JGrid.php' );
|
||||
}
|
||||
|
||||
class PhocaDownloadJGrid extends JGrid
|
||||
{
|
||||
|
||||
public static function approved($value, $i, $prefix = '', $enabled = true, $checkbox='cb')
|
||||
{
|
||||
if (is_array($prefix)) {
|
||||
$options = $prefix;
|
||||
$enabled = array_key_exists('enabled', $options) ? $options['enabled'] : $enabled;
|
||||
$checkbox = array_key_exists('checkbox', $options) ? $options['checkbox'] : $checkbox;
|
||||
$prefix = array_key_exists('prefix', $options) ? $options['prefix'] : '';
|
||||
}
|
||||
$states = array(
|
||||
1 => array('disapprove', 'COM_PHOCADOWNLOAD_APPROVED', 'COM_PHOCADOWNLOAD_NOT_APPROVE_ITEM', 'COM_PHOCADOWNLOAD_APPROVED', false, 'publish', 'publish'),
|
||||
0 => array('approve', 'COM_PHOCADOWNLOAD_NOT_APPROVED', 'COM_PHOCADOWNLOAD_APPROVE_ITEM', 'COM_PHOCADOWNLOAD_NOT_APPROVED', false, 'unpublish', 'unpublish')
|
||||
);
|
||||
return self::state($states, $value, $i, $prefix, $enabled, true, $checkbox);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user