__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php
/**
 * @package   DPCalendar
 * @copyright Copyright (C) 2017 Digital Peak GmbH. <https://www.digital-peak.com>
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
 */

\defined('_JEXEC') or die();

use DigitalPeak\Component\DPCalendar\Administrator\Helper\Booking;
use DigitalPeak\Component\DPCalendar\Administrator\HTML\Block\Icon;
use DigitalPeak\Component\DPCalendar\Site\Helper\RouteHelper;

$this->translator->translateJS('COM_DPCALENDAR_CONFIRM_DELETE');

$return = $this->input->getInt('Itemid', 0) ? '&return=' . base64_encode('index.php?Itemid=' . $this->input->getInt('Itemid', 0)) : '';
?>
<div class="com-dpcalendar-booking__actions dp-button-bar dp-print-hide">
	<?php if ($this->booking->state == 5) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-invite-accept"
			data-href="<?php echo RouteHelper::getInviteChangeRoute($this->booking, true, false); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::OK]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_INVITE_ACCEPT'); ?>
		</button>
		<button type="button" class="dp-button dp-button-action dp-button-invite-decline"
			data-href="<?php echo RouteHelper::getInviteChangeRoute($this->booking, false, false); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::OK]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_INVITE_DECLINE'); ?>
		</button>
	<?php } ?>
	<?php if ($this->booking->state == 0 && $this->user->id == $this->booking->user_id) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-edit"
			data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&view=booking&layout=review&uid=' . $this->booking->uid); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_REVIEW_TICKETS_BUTTON'); ?>
		</button>
	<?php } ?>
	<?php if (in_array($this->booking->state, [2, 3]) && $this->user->id == $this->booking->user_id) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-edit"
			data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&view=booking&layout=confirm&uid=' . $this->booking->uid); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::NEXT]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_CONFIRM_BUTTON' . ($this->booking->price ? '_PAY' : '')); ?>
		</button>
	<?php } ?>
	<?php if ($this->booking->params->get('access-edit')) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-edit"
			data-href="<?php echo $this->router->getBookingFormRoute($this->booking); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::EDIT]); ?>
			<?php echo $this->translate('JGLOBAL_EDIT'); ?>
		</button>
	<?php } ?>
	<?php if ($this->booking->invoice == 1 && $this->booking->price) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-download-invoice"
			data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&task=booking.invoice&b_id=' . $this->booking->id . $this->tmpl); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::INVOICE]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_INVOICE'); ?>
		</button>
	<?php } ?>
	<button type="button" class="dp-button dp-button-action dp-button-download-receipt"
		data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&task=booking.receipt&b_id=' . $this->booking->id . $this->tmpl); ?>">
		<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::RECEIPT]); ?>
		<?php echo $this->translate('COM_DPCALENDAR_RECEIPT'); ?>
	</button>
	<?php if ($this->booking->params->get('access-delete') && $this->booking->state != 5) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-delete dp-action-delete"
			data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&task=bookingform.delete&b_id=' . $this->booking->id . $return . $this->tmpl); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::DELETE]); ?>
			<?php echo $this->translate('JACTION_DELETE'); ?>
		</button>
	<?php } ?>
	<?php if ($this->booking->price && $this->booking->state != 6 && Booking::openForCancel($this->booking)) { ?>
		<button type="button" class="dp-button dp-button-action dp-button-cancel dp-action-delete"
			data-confirmtext="<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_CANCEL_TICKET_CONFIRMATION'); ?>"
			data-href="<?php echo $this->router->route('index.php?option=com_dpcalendar&task=booking.cancel&b_id=' . $this->booking->id . $return . $this->tmpl); ?>">
			<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::DELETE]); ?>
			<?php echo $this->translate('COM_DPCALENDAR_VIEW_BOOKING_CANCEL_BOOKING'); ?>
		</button>
	<?php } ?>
	<button type="button" class="dp-button dp-button-print" data-selector=".com-dpcalendar-booking">
		<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::PRINTING]); ?>
		<?php echo $this->translate('COM_DPCALENDAR_VIEW_CALENDAR_TOOLBAR_PRINT'); ?>
	</button>
</div>

Filemanager

Name Type Size Permission Actions
abort.php File 779 B 0664
cancel.php File 797 B 0664
confirm.php File 1.77 KB 0664
confirm_actions.php File 1.6 KB 0664
confirm_content.php File 2.17 KB 0664
confirm_heading.php File 443 B 0664
confirm_payment.php File 2.11 KB 0664
confirm_terms.php File 817 B 0664
confirm_tickets.php File 3.72 KB 0664
confirm_title.php File 394 B 0664
default.php File 1.2 KB 0664
default_content.php File 3.53 KB 0664
default_header.php File 5.14 KB 0664
default_heading.php File 443 B 0664
default_registration.php File 1.85 KB 0664
default_steps.php File 2.08 KB 0664
default_tickets.php File 3.74 KB 0664
default_waiting.php File 407 B 0664
order.php File 976 B 0664
order_content.php File 300 B 0664
order_header.php File 1.91 KB 0664
order_heading.php File 443 B 0664
pay.php File 910 B 0664
pay_heading.php File 443 B 0664
review.php File 1.56 KB 0664
review_actions.php File 888 B 0664
review_heading.php File 443 B 0664
review_message.php File 445 B 0664
review_tickets.php File 1.97 KB 0664
review_title.php File 393 B 0664
Filemanager