Uname: Linux webm005.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: 6036 (villadal)
Group: 100 (users)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//home/villadal/www/old///////booked/tpl/Admin      ( Reset | Go to )
File Name: manage_announcements.tpl
Edit
{*
Copyright 2011-2014 Nick Korbel

This file is part of Booked Scheduler.

Booked Scheduler is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Booked Scheduler is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Booked Scheduler.  If not, see <http://www.gnu.org/licenses/>.
*}
{include file='globalheader.tpl' cssFiles='css/admin.css'}

<h1>{translate key=ManageAnnouncements}</h1>

<table class="list">
    <tr>
        <th class="id">&nbsp;</th>
        <th>{translate key='Announcement'}</th>
        <th>{translate key='Priority'}</th>
        <th>{translate key='BeginDate'}</th>
        <th>{translate key='EndDate'}</th>
        <th>{translate key='Actions'}</th>
    </tr>
{foreach from=$announcements item=announcement}
    {cycle values='row0,row1' assign=rowCss}
    <tr class="{$rowCss}">
        <td class="id"><input type="hidden" class="id" value="{$announcement->Id()}"/></td>
        <td style="width:300px;">{$announcement->Text()|nl2br}</td>
        <td>{$announcement->Priority()}</td>
        <td style="width: 100px;">{formatdate date=$announcement->Start()->ToTimezone($timezone)}</td>
        <td style="width: 100px;">{formatdate date=$announcement->End()->ToTimezone($timezone)}</td>
        <td align="center"><a href="#" class="update edit">{translate key='Edit'}</a> | <a href="#" class="update delete">{translate key='Delete'}</a></td>
    </tr>
{/foreach}
</table>

<input type="hidden" id="activeId" />

<div id="deleteDialog" class="dialog" style="display:none;" title="{translate key=Delete}">
    <form id="deleteForm" method="post">
        <div class="error" style="margin-bottom: 25px;">
            <h3>{translate key=DeleteWarning}</h3>
        </div>
        <button type="button" class="button save">{html_image src="cross-button.png"} {translate key='Delete'}</button>
        <button type="button" class="button cancel">{html_image src="slash.png"} {translate key='Cancel'}</button>
    </form>
</div>

<div id="editDialog" class="dialog" style="display:none;" title="{translate key=Edit}">
    <form id="editForm" method="post">
        {translate key=Announcement}<br/>
        <textarea id="editText" class="textbox required" style="width:500px" {formname key=ANNOUNCEMENT_TEXT}></textarea><br/>
        {translate key='BeginDate'}<br/>
        <input type="text" id="editBegin" class="textbox" />
        <input type="hidden" id="formattedEditBegin" {formname key=ANNOUNCEMENT_START} />
        <br/>
        {translate key='EndDate'}<br/>
        <input type="text" id="editEnd" class="textbox" />
        <input type="hidden" id="formattedEditEnd" {formname key=ANNOUNCEMENT_END} />
        <br/>
        {translate key='Priority'} <br/>
        <select id="editPriority" class="textbox" {formname key=ANNOUNCEMENT_PRIORITY}>
            <option value="">---</option>
            {html_options values=$priorities output=$priorities}
        </select><br/>
        <button type="button" class="button save">{html_image src="disk-black.png"} {translate key='Update'}</button>
        <button type="button" class="button cancel">{html_image src="slash.png"} {translate key='Cancel'}</button>
    </form>
</div>

<div class="admin" style="margin-top:30px">
    <div class="title">
        {translate key=AddAnnouncement}
    </div>
    <div>
        <div id="addResults" class="error" style="display:none;"></div>
        <form id="addForm" method="post">
            <table>
                <tr>
                    <th>{translate key='Announcement'}</th>
                    <th>{translate key='BeginDate'}</th>
                    <th>{translate key='EndDate'}</th>
                    <th>{translate key='Priority'}</th>
                    <th>&nbsp;</th>
                </tr>
                <tr>
                    <td>
                        <textarea class="textbox required" style="width:500px" {formname key=ANNOUNCEMENT_TEXT}></textarea>
                    </td>
                    <td>
                        <input type="text" id="BeginDate" class="textbox" {formname key=ANNOUNCEMENT_START} />
                        <input type="hidden" id="formattedBeginDate" {formname key=ANNOUNCEMENT_START} />
                    </td>
                    <td>
                        <input type="text" id="EndDate" class="textbox" {formname key=ANNOUNCEMENT_END} />
                        <input type="hidden" id="formattedEndDate" {formname key=ANNOUNCEMENT_END} />
                    </td>
                    <td>
                        <select class="textbox" {formname key=ANNOUNCEMENT_PRIORITY}>
                            <option value="">---</option>
                            {html_options values=$priorities output=$priorities}
                        </select>
                    </td>
                    <td>
                        <button type="button" class="button save">{html_image src="plus-button.png"} {translate key=AddAnnouncement}</button>
                    </td>
                </tr>
            </table>
        </form>
    </div>
</div>

{control type="DatePickerSetupControl" ControlId="BeginDate" AltId="formattedBeginDate"}
{control type="DatePickerSetupControl" ControlId="EndDate" AltId="formattedEndDate"}
{control type="DatePickerSetupControl" ControlId="editBegin" AltId="formattedEditBegin"}
{control type="DatePickerSetupControl" ControlId="editEnd" AltId="formattedEditEnd"}

{html_image src="admin-ajax-indicator.gif" class="indicator" style="display:none;"}

{jsfile src="admin/edit.js"}
{jsfile src="admin/announcement.js"}
{jsfile src="js/jquery.form-3.09.min.js"}

<script type="text/javascript">
    $(document).ready(function() {

    var actions = {
        add: '{ManageAnnouncementsActions::Add}',
        edit: '{ManageAnnouncementsActions::Change}',
        deleteAnnouncement: '{ManageAnnouncementsActions::Delete}'
    };

    var accessoryOptions = {
        submitUrl: '{$smarty.server.SCRIPT_NAME}',
        saveRedirect: '{$smarty.server.SCRIPT_NAME}',
        actions: actions
    };

    var announcementManagement = new AnnouncementManagement(accessoryOptions);
    announcementManagement.init();

    {foreach from=$announcements item=announcement}
    announcementManagement.addAnnouncement(
        '{$announcement->Id()}',
        '{$announcement->Text()|escape:"quotes"|regex_replace:"/[\n]/":"\\n"}',
        '{formatdate date=$announcement->Start()->ToTimezone($timezone)}',
        '{formatdate date=$announcement->End()->ToTimezone($timezone)}',
        '{$announcement->Priority()}'
    );
    {/foreach}

    });
</script>
{include file='globalfooter.tpl'}

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL