Files
crm-ms1/smartadmroot/calendar.php
2026-05-27 11:44:10 -04:00

514 lines
17 KiB
PHP

<?php
//initilize the page
require_once 'init.web.php';
/*---------------- PHP Custom Scripts ---------
YOU CAN SET CONFIGURATION VARIABLES HERE BEFORE IT GOES TO NAV, RIBBON, ETC.
E.G. $page_title = "Custom Title" */
$page_title = "3 Calendar";
/* ---------------- END PHP Custom Scripts ------------- */
//include header
//you can add your custom css in $page_css array.
//Note: all css files are inside css/ folder
$page_css[] = "your_style.css";
include("inc/header.php");
//include left panel (navigation)
//follow the tree in inc/config.ui.php
$page_nav["cool"]["sub"]["cal"]["active"] = true;
include("inc/nav.php");
?>
<!-- ==========================CONTENT STARTS HERE ========================== -->
<!-- MAIN PANEL -->
<div id="main" role="main">
<?php
//configure ribbon (breadcrumbs) array("name"=>"url"), leave url empty if no url
//$breadcrumbs["New Crumb"] => "http://url.com"
$breadcrumbs[$page_nav["cool"]["title"]] = "";
include("inc/ribbon.php");
?>
<!-- MAIN CONTENT -->
<div id="content">
<div class="row">
<div class="col-xs-12 col-sm-7 col-md-7 col-lg-4">
<h1 class="page-title txt-color-blueDark"><i class="fa fa-calendar fa-fw "></i>
Calendar
<span>>
Add events
</span>
</h1>
</div>
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-8">
<ul id="sparks" class="">
<li class="sparks-info">
<h5> My Income <span class="txt-color-blue">$47,171</span></h5>
<div class="sparkline txt-color-blue hidden-mobile hidden-md hidden-sm">
1300, 1877, 2500, 2577, 2000, 2100, 3000, 2700, 3631, 2471, 2700, 3631, 2471
</div>
</li>
<li class="sparks-info">
<h5> Site Traffic <span class="txt-color-purple"><i class="fa fa-arrow-circle-up" data-rel="bootstrap-tooltip" title="Increased"></i>&nbsp;45%</span></h5>
<div class="sparkline txt-color-purple hidden-mobile hidden-md hidden-sm">
110,150,300,130,400,240,220,310,220,300, 270, 210
</div>
</li>
<li class="sparks-info">
<h5> Site Orders <span class="txt-color-greenDark"><i class="fa fa-shopping-cart"></i>&nbsp;2447</span></h5>
<div class="sparkline txt-color-greenDark hidden-mobile hidden-md hidden-sm">
110,150,300,130,400,240,220,310,220,300, 270, 210
</div>
</li>
</ul>
</div>
</div>
<!-- row -->
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-3">
<!-- new widget -->
<div class="jarviswidget jarviswidget-color-blueDark">
<header>
<h2> Add Events </h2>
</header>
<!-- widget div-->
<div>
<div class="widget-body">
<!-- content goes here -->
<form id="add-event-form">
<fieldset>
<div class="form-group">
<label>Select Event Icon</label>
<div class="btn-group btn-group-sm btn-group-justified" data-toggle="buttons">
<label class="btn btn-default active">
<input type="radio" name="iconselect" id="icon-1" value="fa-info" checked>
<i class="fa fa-info text-muted"></i> </label>
<label class="btn btn-default">
<input type="radio" name="iconselect" id="icon-2" value="fa-warning">
<i class="fa fa-warning text-muted"></i> </label>
<label class="btn btn-default">
<input type="radio" name="iconselect" id="icon-3" value="fa-check">
<i class="fa fa-check text-muted"></i> </label>
<label class="btn btn-default">
<input type="radio" name="iconselect" id="icon-4" value="fa-user">
<i class="fa fa-user text-muted"></i> </label>
<label class="btn btn-default">
<input type="radio" name="iconselect" id="icon-5" value="fa-lock">
<i class="fa fa-lock text-muted"></i> </label>
<label class="btn btn-default">
<input type="radio" name="iconselect" id="icon-6" value="fa-clock-o">
<i class="fa fa-clock-o text-muted"></i> </label>
</div>
</div>
<div class="form-group">
<label>Event Title</label>
<input class="form-control" id="title" name="title" maxlength="40" type="text" placeholder="Event Title">
</div>
<div class="form-group">
<label>Event Description</label>
<textarea class="form-control" placeholder="Please be brief" rows="3" maxlength="40" id="description"></textarea>
<p class="note">Maxlength is set to 40 characters</p>
</div>
<div class="form-group">
<label>Select Event Color</label>
<div class="btn-group btn-group-justified btn-select-tick" data-toggle="buttons">
<label class="btn bg-color-darken active">
<input type="radio" name="priority" id="option1" value="bg-color-darken txt-color-white" checked>
<i class="fa fa-check txt-color-white"></i> </label>
<label class="btn bg-color-blue">
<input type="radio" name="priority" id="option2" value="bg-color-blue txt-color-white">
<i class="fa fa-check txt-color-white"></i> </label>
<label class="btn bg-color-orange">
<input type="radio" name="priority" id="option3" value="bg-color-orange txt-color-white">
<i class="fa fa-check txt-color-white"></i> </label>
<label class="btn bg-color-greenLight">
<input type="radio" name="priority" id="option4" value="bg-color-greenLight txt-color-white">
<i class="fa fa-check txt-color-white"></i> </label>
<label class="btn bg-color-blueLight">
<input type="radio" name="priority" id="option5" value="bg-color-blueLight txt-color-white">
<i class="fa fa-check txt-color-white"></i> </label>
<label class="btn bg-color-red">
<input type="radio" name="priority" id="option6" value="bg-color-red txt-color-white">
<i class="fa fa-check txt-color-white"></i> </label>
</div>
</div>
</fieldset>
<div class="form-actions">
<div class="row">
<div class="col-md-12">
<button class="btn btn-default" type="button" id="add-event" >
Add Event
</button>
</div>
</div>
</div>
</form>
<!-- end content -->
</div>
</div>
<!-- end widget div -->
</div>
<!-- end widget -->
<div class="well well-sm" id="event-container">
<form>
<fieldset>
<legend>
Draggable Events
</legend>
<ul id='external-events' class="list-unstyled">
<li>
<span class="bg-color-darken txt-color-white" data-description="Currently busy" data-icon="fa-time">Office Meeting</span>
</li>
<li>
<span class="bg-color-blue txt-color-white" data-description="No Description" data-icon="fa-pie">Lunch Break</span>
</li>
<li>
<span class="bg-color-red txt-color-white" data-description="Urgent Tasks" data-icon="fa-alert">URGENT</span>
</li>
</ul>
<div class="checkbox">
<label>
<input type="checkbox" id="drop-remove" class="checkbox style-0" checked="checked">
<span>remove after drop</span> </label>
</div>
</fieldset>
</form>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-9">
<!-- new widget -->
<div class="jarviswidget jarviswidget-color-blueDark">
<!-- widget options:
usage: <div class="jarviswidget" id="wid-id-0" data-widget-editbutton="false">
data-widget-colorbutton="false"
data-widget-editbutton="false"
data-widget-togglebutton="false"
data-widget-deletebutton="false"
data-widget-fullscreenbutton="false"
data-widget-custombutton="false"
data-widget-collapsed="true"
data-widget-sortable="false"
-->
<header>
<span class="widget-icon"> <i class="fa fa-calendar"></i> </span>
<h2> My Events </h2>
<div class="widget-toolbar">
<!-- add: non-hidden - to disable auto hide -->
<div class="btn-group">
<button class="btn dropdown-toggle btn-xs btn-default" data-toggle="dropdown">
Showing <i class="fa fa-caret-down"></i>
</button>
<ul class="dropdown-menu js-status-update pull-right">
<li>
<a href="javascript:void(0);" id="mt">Month</a>
</li>
<li>
<a href="javascript:void(0);" id="ag">Agenda</a>
</li>
<li>
<a href="javascript:void(0);" id="td">Today</a>
</li>
</ul>
</div>
</div>
</header>
<!-- widget div-->
<div>
<div class="widget-body no-padding">
<!-- content goes here -->
<div class="widget-body-toolbar">
<div id="calendar-buttons">
<div class="btn-group">
<a href="javascript:void(0)" class="btn btn-default btn-xs" id="btn-prev"><i class="fa fa-chevron-left"></i></a>
<a href="javascript:void(0)" class="btn btn-default btn-xs" id="btn-next"><i class="fa fa-chevron-right"></i></a>
</div>
</div>
</div>
<div id="calendar"></div>
<!-- end content -->
</div>
</div>
<!-- end widget div -->
</div>
<!-- end widget -->
</div>
</div>
<!-- end row -->
</div>
<!-- END MAIN CONTENT -->
</div>
<!-- END MAIN PANEL -->
<!-- ==========================CONTENT ENDS HERE ========================== -->
<?php
// include page footer
include("inc/footer.php");
?>
<?php
//include required scripts
include("inc/scripts.php");
?>
<!-- PAGE RELATED PLUGIN(S) -->
<script src="<?php echo ASSETS_URL; ?>/js/plugin/moment/moment.min.js"></script>
<script src="<?php echo ASSETS_URL; ?>/js/plugin/fullcalendar/fullcalendar.min.js"></script>
<script type="text/javascript">
// DO NOT REMOVE : GLOBAL FUNCTIONS!
$(document).ready(function() {
pageSetUp();
"use strict";
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
var hdr = {
left: 'title',
center: 'month,agendaWeek,agendaDay',
right: 'prev,today,next'
};
var initDrag = function (e) {
// create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/)
// it doesn't need to have a start or end
var eventObject = {
title: $.trim(e.children().text()), // use the element's text as the event title
description: $.trim(e.children('span').attr('data-description')),
icon: $.trim(e.children('span').attr('data-icon')),
className: $.trim(e.children('span').attr('class')) // use the element's children as the event class
};
// store the Event Object in the DOM element so we can get to it later
e.data('eventObject', eventObject);
// make the event draggable using jQuery UI
e.draggable({
zIndex: 999,
revert: true, // will cause the event to go back to its
revertDuration: 0 // original position after the drag
});
};
var addEvent = function (title, priority, description, icon) {
title = title.length === 0 ? "Untitled Event" : title;
description = description.length === 0 ? "No Description" : description;
icon = icon.length === 0 ? " " : icon;
priority = priority.length === 0 ? "label label-default" : priority;
var html = $('<li><span class="' + priority + '" data-description="' + description + '" data-icon="' +
icon + '">' + title + '</span></li>').prependTo('ul#external-events').hide().fadeIn();
$("#event-container").effect("highlight", 800);
initDrag(html);
};
/* initialize the external events
-----------------------------------------------------------------*/
$('#external-events > li').each(function () {
initDrag($(this));
});
$('#add-event').click(function () {
var title = $('#title').val(),
priority = $('input:radio[name=priority]:checked').val(),
description = $('#description').val(),
icon = $('input:radio[name=iconselect]:checked').val();
addEvent(title, priority, description, icon);
});
/* initialize the calendar
-----------------------------------------------------------------*/
$('#calendar').fullCalendar({
header: hdr,
editable: true,
droppable: true, // this allows things to be dropped onto the calendar !!!
drop: function (date, allDay) { // this function is called when something is dropped
// retrieve the dropped element's stored Event Object
var originalEventObject = $(this).data('eventObject');
// we need to copy it, so that multiple events don't have a reference to the same object
var copiedEventObject = $.extend({}, originalEventObject);
// assign it the date that was reported
copiedEventObject.start = date;
copiedEventObject.allDay = allDay;
// render the event on the calendar
// the last `true` argument determines if the event "sticks" (http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/)
$('#calendar').fullCalendar('renderEvent', copiedEventObject, true);
// is the "remove after drop" checkbox checked?
if ($('#drop-remove').is(':checked')) {
// if so, remove the element from the "Draggable Events" list
$(this).remove();
}
},
select: function (start, end, allDay) {
var title = prompt('Event Title:');
if (title) {
calendar.fullCalendar('renderEvent', {
title: title,
start: start,
end: end,
allDay: allDay
}, true // make the event "stick"
);
}
calendar.fullCalendar('unselect');
},
events: [{
title: 'All Day Event',
start: new Date(y, m, 1),
description: 'long description',
className: ["event", "bg-color-greenLight"],
icon: 'fa-check'
}, {
title: 'Long Event',
start: new Date(y, m, d - 5),
end: new Date(y, m, d - 2),
className: ["event", "bg-color-red"],
icon: 'fa-lock'
}, {
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d - 3, 16, 0),
allDay: false,
className: ["event", "bg-color-blue"],
icon: 'fa-clock-o'
}, {
id: 999,
title: 'Repeating Event',
start: new Date(y, m, d + 4, 16, 0),
allDay: false,
className: ["event", "bg-color-blue"],
icon: 'fa-clock-o'
}, {
title: 'Meeting',
start: new Date(y, m, d, 10, 30),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Lunch',
start: new Date(y, m, d, 12, 0),
end: new Date(y, m, d, 14, 0),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Birthday Party',
start: new Date(y, m, d + 1, 19, 0),
end: new Date(y, m, d + 1, 22, 30),
allDay: false,
className: ["event", "bg-color-darken"]
}, {
title: 'Smartadmin Open Day',
start: new Date(y, m, 28),
end: new Date(y, m, 29),
className: ["event", "bg-color-darken"]
}],
eventRender: function (event, element, icon) {
if (!event.description == "") {
element.find('.fc-title').append("<br/><span class='ultra-light'>" + event.description +
"</span>");
}
if (!event.icon == "") {
element.find('.fc-title').append("<i class='air air-top-right fa " + event.icon +
" '></i>");
}
},
windowResize: function (event, ui) {
$('#calendar').fullCalendar('render');
}
});
/* hide default buttons */
$('.fc-right, .fc-center').hide();
$('#calendar-buttons #btn-prev').click(function () {
$('.fc-prev-button').click();
return false;
});
$('#calendar-buttons #btn-next').click(function () {
$('.fc-next-button').click();
return false;
});
$('#calendar-buttons #btn-today').click(function () {
$('.fc-today-button').click();
return false;
});
$('#mt').click(function () {
$('#calendar').fullCalendar('changeView', 'month');
});
$('#ag').click(function () {
$('#calendar').fullCalendar('changeView', 'agendaWeek');
});
$('#td').click(function () {
$('#calendar').fullCalendar('changeView', 'agendaDay');
});
})
</script>
<?php
//include footer
include("inc/google-analytics.php");
?>