__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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) 2024 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\Calendar;
use Joomla\Registry\Registry;
interface CalendarInterface
{
public function getId(): string;
public function getTitle(): string;
public function getDescription(): string;
public function getIcalUrl(): string;
public function getLevel(): int;
public function getColor(): string;
public function getAccess(): int;
public function getAccessContent(): int;
public function canCreate(): bool;
public function canEdit(): bool;
public function canEditOwn(): bool;
public function canDelete(): bool;
public function canBook(): bool;
public function getParams(): Registry;
/**
* @return CalendarInterface[]
*/
public function getChildren(bool $recursive = true): array;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Calendar.php | File | 4.17 KB | 0664 |
|
| CalendarInterface.php | File | 940 B | 0664 |
|
| ExternalCalendar.php | File | 2.39 KB | 0664 |
|
| ExternalCalendarInterface.php | File | 567 B | 0664 |
|
| InternalCalendar.php | File | 1.28 KB | 0664 |
|