__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package DPCalendar
* @copyright Copyright (C) 2015 Digital Peak GmbH. <https://www.digital-peak.com>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
*/
namespace DigitalPeak\Component\DPCalendar\Administrator\Field;
\defined('_JEXEC') or die();
use DigitalPeak\Component\DPCalendar\Administrator\HTML\Document\HtmlDocument;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\CategoryField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Plugin\PluginHelper;
class DPCalendarField extends CategoryField
{
public $type = 'DPCalendar';
protected function getOptions()
{
// @phpstan-ignore-next-line
$this->element['extension'] = 'com_dpcalendar';
$doc = new HtmlDocument();
$doc->loadScriptFile('fields/dpcalendar.js');
$doc->loadStyleFile('dpcalendar/fields/dpcalendar.css');
$options = parent::getOptions();
if ((bool)$this->element->attributes()->internal) {
return $options;
}
PluginHelper::importPlugin('dpcalendar');
$tmp = Factory::getApplication()->triggerEvent('onCalendarsFetch');
if (!empty($tmp)) {
foreach ($tmp as $calendars) {
foreach ($calendars as $calendar) {
// Don't show caldav calendars
if (str_starts_with((string)$calendar->getId(), 'cd-')) {
continue;
}
$options[] = HTMLHelper::_('select.option', $calendar->getId(), $calendar->getTitle());
}
}
}
$ids = (string)$this->element['ids'];
if ($ids !== '' && $ids !== '0') {
$ids = explode(',', $ids);
// Allow options which are empty for placeholder, in defined array or when all are selected
return array_values(
array_filter(
$options,
static fn ($o): bool => $o->value === '' || \in_array($o->value, $ids) || \in_array('-1', $ids)
)
);
}
return $options;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DatetimechooserField.php | File | 3.21 KB | 0664 |
|
| DpauthorField.php | File | 1007 B | 0664 |
|
| DpcalendarField.php | File | 1.74 KB | 0664 |
|
| DpcalendareditField.php | File | 3.21 KB | 0664 |
|
| DpcfieldsField.php | File | 2.24 KB | 0664 |
|
| DpcountriesField.php | File | 1.07 KB | 0664 |
|
| DpcroomsField.php | File | 1.16 KB | 0664 |
|
| DpcurrencyField.php | File | 1.02 KB | 0664 |
|
| DpmenuitemsField.php | File | 2.62 KB | 0664 |
|
| DppaymentproviderField.php | File | 1.02 KB | 0664 |
|
| DpradioField.php | File | 2.69 KB | 0664 |
|
| DptokenField.php | File | 1.16 KB | 0664 |
|
| EventField.php | File | 9.04 KB | 0664 |
|
| ExtcalendarField.php | File | 1.35 KB | 0664 |
|
| GeocompleteField.php | File | 1.08 KB | 0664 |
|
| LocationField.php | File | 1007 B | 0664 |
|