Version Notes
=== TPL Events Manager ===
=== Version: 1.0.1 , Note Date: 31/03/2016 ===
=== By TwinPrimeLabs Software Development India Pvt. Ltd, Pune ===
=== For more information visit : http://www.twinprimelabs.com/ ===
Overview :
TPL Events Manager is a Magento extension compatible with Magento 1.5.X to 1.9.X . This extension provides an easy and handy way of creating and managing various events with various permissions across your Magento store. This is the beta release of TPL Events Manager. The stable version will be released soon after few testings and users comments/ suggestions. We strongly suggest you do not install this extension directly on your deployment if you do so we will be not responsible for any losses. With the help of this extension you can create events of following types:
Sale Events
Product Launch Event
Local Exhibition Event
Notification Event
Installation : Installation steps are same as of like any simple Magento extension installation.
After Installation
After successful installation you will see ‘Events Manager’ menu in your Magento site admin panel. Under that you will see three submenu, from those click on ‘Event’ submenu and then click on ‘Add Event’ fill the required details and save. Now go to your site frontend and click on the event ‘Event’ menu from your main header menus ( if not visible then go to System > Configuration > TPL > Events Manager > Custom Settings > Enable Event Menu in Header Munus ), there you will see your event listed, no click on view details, this will take you to the event details page. For more Details about how to use TPL Events Manager do visit http://www.twinprimelabs.com/blogs/
Support
For any support or technical queries feel free to email us on ecommerce@twinprimelabs.com
Release Info
| Developer | TechPrimeLab Software Pvt. Ltd |
| Extension | Tpl_EventsManager |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Tpl/EventsManager/Helper/Data.php +18 -0
- app/code/community/Tpl/EventsManager/etc/config.xml +1 -1
- app/design/frontend/base/default/layout/tpl_eventsmanager.xml +8 -1
- app/locale/en_US/template/email/tpl_eventmanager_customer_invitation_mail.html +8 -0
- app/locale/en_US/template/email/tpl_eventmanager_event_cancel_mail.html +8 -0
- js/tpl_eventmanager/eventeditform_old.js +0 -240
- package.xml +7 -7
- skin/frontend/base/default/css/tpl_eventsmanager/monthly_old.css +0 -441
|
@@ -42,4 +42,22 @@ class Tpl_EventsManager_Helper_Data extends Mage_Core_Helper_Abstract
|
|
| 42 |
}
|
| 43 |
return $converted;
|
| 44 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
}
|
| 42 |
}
|
| 43 |
return $converted;
|
| 44 |
}
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
/* function to check if there already exist bootstrap if not the return file path */
|
| 48 |
+
public function checkBootstrapExist()
|
| 49 |
+
{
|
| 50 |
+
$layout = Mage::app()->getLayout();
|
| 51 |
+
$head= $layout->getBlock('head');
|
| 52 |
+
$jsget= $head->getCssJsHtml();//all magento js/css store in $jsget variable
|
| 53 |
+
//echo $jsget;
|
| 54 |
+
$bootstrap= strpos($jsget, 'bootstrap.css');
|
| 55 |
+
if(!$bootstrap){
|
| 56 |
+
return 'css/tpl_eventsmanager/bootstrap/css/bootstrap.css';
|
| 57 |
+
}
|
| 58 |
+
else{
|
| 59 |
+
return '';
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
}
|
| 63 |
}
|
|
@@ -19,7 +19,7 @@
|
|
| 19 |
<config>
|
| 20 |
<modules>
|
| 21 |
<Tpl_EventsManager>
|
| 22 |
-
<version>1.0.
|
| 23 |
</Tpl_EventsManager>
|
| 24 |
</modules>
|
| 25 |
<global>
|
| 19 |
<config>
|
| 20 |
<modules>
|
| 21 |
<Tpl_EventsManager>
|
| 22 |
+
<version>1.0.1</version>
|
| 23 |
</Tpl_EventsManager>
|
| 24 |
</modules>
|
| 25 |
<global>
|
|
@@ -22,9 +22,16 @@
|
|
| 22 |
<action method="addCss">
|
| 23 |
<stylesheet>css/tpl_eventsmanager/monthly.css</stylesheet>
|
| 24 |
</action>
|
| 25 |
-
<action method="addCss">
|
| 26 |
<stylesheet>css/tpl_eventsmanager/bootstrap/css/bootstrap.css</stylesheet>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
</action>
|
|
|
|
|
|
|
| 28 |
<action method="addJs">
|
| 29 |
<script>tpl_eventmanager/jquery.js</script>
|
| 30 |
</action>
|
| 22 |
<action method="addCss">
|
| 23 |
<stylesheet>css/tpl_eventsmanager/monthly.css</stylesheet>
|
| 24 |
</action>
|
| 25 |
+
<!-- <action method="addCss">
|
| 26 |
<stylesheet>css/tpl_eventsmanager/bootstrap/css/bootstrap.css</stylesheet>
|
| 27 |
+
</action>-->
|
| 28 |
+
<!-- First check if there exist bootstrap -->
|
| 29 |
+
<action method="addCss">
|
| 30 |
+
<file helper="tpl_eventsmanager/data/checkBootstrapExist" />
|
| 31 |
+
<!-- i.e. Mage::helper('module/helper')->getJsBasedOnConfig() -->
|
| 32 |
</action>
|
| 33 |
+
|
| 34 |
+
|
| 35 |
<action method="addJs">
|
| 36 |
<script>tpl_eventmanager/jquery.js</script>
|
| 37 |
</action>
|
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div>
|
| 2 |
+
<p>Hi {{var name}},</p>
|
| 3 |
+
<p>You have successfully {{var status}} the invitation of event.</p>
|
| 4 |
+
|
| 5 |
+
<br />
|
| 6 |
+
<p>Thank you,</p>
|
| 7 |
+
<p>TPL Product Event</p>
|
| 8 |
+
</div>
|
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div>
|
| 2 |
+
<p>Hi {{var name}},</p>
|
| 3 |
+
<p> "{{var event_name}}" event has been {{var status}} by admin.</p>
|
| 4 |
+
<p>For more details please visit <a href="{{var event_link}}">{{var event_link}}</a></p>
|
| 5 |
+
<br />
|
| 6 |
+
<p>Thank you,</p>
|
| 7 |
+
<p>Event Manager</p>
|
| 8 |
+
</div>
|
|
@@ -1,240 +0,0 @@
|
|
| 1 |
-
/*
|
| 2 |
-
* To change this license header, choose License Headers in Project Properties.
|
| 3 |
-
* To change this template file, choose Tools | Templates
|
| 4 |
-
* and open the template in the editor.
|
| 5 |
-
* For Tpl_EventsManager
|
| 6 |
-
*/
|
| 7 |
-
|
| 8 |
-
// Event Level related variables
|
| 9 |
-
var event_level_object;
|
| 10 |
-
var group_id_object;
|
| 11 |
-
var user_email_object;
|
| 12 |
-
|
| 13 |
-
//Event type related variables
|
| 14 |
-
var event_type_object;
|
| 15 |
-
var thumbnail_object;
|
| 16 |
-
var banner_object;
|
| 17 |
-
var product_launch_date_object;
|
| 18 |
-
var product_launch_time_object;
|
| 19 |
-
var address_object;
|
| 20 |
-
var city_object;
|
| 21 |
-
var state_object;
|
| 22 |
-
var country_object;
|
| 23 |
-
var contact_number_object;
|
| 24 |
-
var contact_email_object;
|
| 25 |
-
var pin_code_object;
|
| 26 |
-
var product_launch_date_trig_object;
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
window.onload = function() {
|
| 30 |
-
|
| 31 |
-
// Event Level related variables initialization
|
| 32 |
-
event_level_object = document.getElementById('event_level');
|
| 33 |
-
group_id_object = document.getElementById('group_id');
|
| 34 |
-
user_email_object = document.getElementById('user_email');
|
| 35 |
-
|
| 36 |
-
// Event Type related variables initialization
|
| 37 |
-
event_type_object = document.getElementById('event_type');
|
| 38 |
-
thumbnail_object = document.getElementById('thumbnail');
|
| 39 |
-
banner_object = document.getElementById('banner');
|
| 40 |
-
product_launch_date_object = document.getElementById('product_launch_date');
|
| 41 |
-
product_launch_time_object = document.getElementById('product_launch_time');
|
| 42 |
-
address_object = document.getElementById('address');
|
| 43 |
-
city_object = document.getElementById('city');
|
| 44 |
-
state_object = document.getElementById('state');
|
| 45 |
-
country_object = document.getElementById('country');
|
| 46 |
-
contact_number_object = document.getElementById('contact_number');
|
| 47 |
-
contact_email_object = document.getElementById('contact_email');
|
| 48 |
-
pin_code_object = document.getElementById('pin_code');
|
| 49 |
-
product_launch_date_trig_object = document.getElementById('product_launch_date_trig');
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
// trigger both on page load
|
| 54 |
-
on_event_level_select();
|
| 55 |
-
on_event_type_select();
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
event_level_object.onchange=function(){ on_event_level_select();};
|
| 60 |
-
event_type_object.onchange=function(){ on_event_type_select();};
|
| 61 |
-
|
| 62 |
-
//console.log(event_level_object);
|
| 63 |
-
|
| 64 |
-
};
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
function on_event_level_select()
|
| 71 |
-
{
|
| 72 |
-
switch(event_level_object.value) {
|
| 73 |
-
case '15':
|
| 74 |
-
handleglobalevent();
|
| 75 |
-
|
| 76 |
-
break;
|
| 77 |
-
case '16':
|
| 78 |
-
handleglobalcustomerevent();
|
| 79 |
-
|
| 80 |
-
break;
|
| 81 |
-
case '17':
|
| 82 |
-
handleuserevents()
|
| 83 |
-
|
| 84 |
-
break;
|
| 85 |
-
case '18':
|
| 86 |
-
handlegroupevents();
|
| 87 |
-
|
| 88 |
-
break;
|
| 89 |
-
|
| 90 |
-
default:
|
| 91 |
-
console.log('in level default default');
|
| 92 |
-
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
//console.log(event_level_object.value);
|
| 96 |
-
}
|
| 97 |
-
|
| 98 |
-
// Event Level Handles
|
| 99 |
-
function handleglobalevent()
|
| 100 |
-
{
|
| 101 |
-
|
| 102 |
-
group_id_object.disabled = true;
|
| 103 |
-
user_email_object.disabled = true;
|
| 104 |
-
|
| 105 |
-
console.log('15');
|
| 106 |
-
}
|
| 107 |
-
|
| 108 |
-
function handleglobalcustomerevent()
|
| 109 |
-
{ group_id_object.disabled = true;
|
| 110 |
-
user_email_object.disabled = true;
|
| 111 |
-
console.log('16');
|
| 112 |
-
}
|
| 113 |
-
|
| 114 |
-
function handleuserevents()
|
| 115 |
-
{
|
| 116 |
-
group_id_object.disabled = true;
|
| 117 |
-
user_email_object.disabled = false;
|
| 118 |
-
console.log('17');
|
| 119 |
-
}
|
| 120 |
-
|
| 121 |
-
function handlegroupevents()
|
| 122 |
-
{ group_id_object.disabled = false;
|
| 123 |
-
user_email_object.disabled = true;
|
| 124 |
-
console.log('18');
|
| 125 |
-
}
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
function on_event_type_select()
|
| 144 |
-
{
|
| 145 |
-
switch(event_type_object.value) {
|
| 146 |
-
case '19':
|
| 147 |
-
handlesalesevent();
|
| 148 |
-
|
| 149 |
-
break;
|
| 150 |
-
case '20':
|
| 151 |
-
handleproductlaunchevent();
|
| 152 |
-
|
| 153 |
-
break;
|
| 154 |
-
case '21':
|
| 155 |
-
handlelocalexibitionevent()
|
| 156 |
-
|
| 157 |
-
break;
|
| 158 |
-
case '22':
|
| 159 |
-
handlenotificationevent();
|
| 160 |
-
|
| 161 |
-
break;
|
| 162 |
-
|
| 163 |
-
default:
|
| 164 |
-
console.log('in event type default');
|
| 165 |
-
|
| 166 |
-
}
|
| 167 |
-
}
|
| 168 |
-
|
| 169 |
-
// Event Type Handels
|
| 170 |
-
function handlesalesevent()
|
| 171 |
-
{
|
| 172 |
-
thumbnail_object.disabled = false;
|
| 173 |
-
banner_object.disabled = false;
|
| 174 |
-
|
| 175 |
-
product_launch_date_object.disabled = true;
|
| 176 |
-
product_launch_date_trig_object.style.visibility = 'hidden';
|
| 177 |
-
product_launch_time_object.disabled = true;
|
| 178 |
-
address_object.disabled = true;
|
| 179 |
-
city_object.disabled = true;
|
| 180 |
-
state_object.disabled = true;
|
| 181 |
-
country_object.disabled = true;
|
| 182 |
-
contact_number_object.disabled = true;
|
| 183 |
-
contact_email_object.disabled = true;
|
| 184 |
-
pin_code_object.disabled = true;
|
| 185 |
-
console.log('19');
|
| 186 |
-
}
|
| 187 |
-
|
| 188 |
-
function handleproductlaunchevent()
|
| 189 |
-
{
|
| 190 |
-
product_launch_date_object.disabled = false;
|
| 191 |
-
product_launch_date_trig_object.style.visibility = 'initial';
|
| 192 |
-
product_launch_time_object.disabled = false;
|
| 193 |
-
thumbnail_object.disabled = false;
|
| 194 |
-
banner_object.disabled = false;
|
| 195 |
-
|
| 196 |
-
address_object.disabled = true;
|
| 197 |
-
city_object.disabled = true;
|
| 198 |
-
state_object.disabled = true;
|
| 199 |
-
country_object.disabled = true;
|
| 200 |
-
contact_number_object.disabled = true;
|
| 201 |
-
contact_email_object.disabled = true;
|
| 202 |
-
pin_code_object.disabled = true;
|
| 203 |
-
console.log('20');
|
| 204 |
-
|
| 205 |
-
}
|
| 206 |
-
|
| 207 |
-
function handlelocalexibitionevent()
|
| 208 |
-
{
|
| 209 |
-
thumbnail_object.disabled = false;
|
| 210 |
-
banner_object.disabled = false;
|
| 211 |
-
address_object.disabled = false;
|
| 212 |
-
city_object.disabled = false;
|
| 213 |
-
state_object.disabled = false;
|
| 214 |
-
country_object.disabled = false;
|
| 215 |
-
contact_number_object.disabled = false;
|
| 216 |
-
contact_email_object.disabled = false;
|
| 217 |
-
pin_code_object.disabled = false;
|
| 218 |
-
|
| 219 |
-
product_launch_date_object.disabled = true;
|
| 220 |
-
product_launch_date_trig_object.style.visibility = 'initial';
|
| 221 |
-
product_launch_time_object.disabled = true;
|
| 222 |
-
console.log('21');
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
function handlenotificationevent()
|
| 226 |
-
{
|
| 227 |
-
// thumbnail_object.disabled = true;
|
| 228 |
-
// banner_object.disabled = true;
|
| 229 |
-
address_object.disabled = true;
|
| 230 |
-
city_object.disabled = true;
|
| 231 |
-
state_object.disabled = true;
|
| 232 |
-
country_object.disabled = true;
|
| 233 |
-
contact_number_object.disabled = true;
|
| 234 |
-
contact_email_object.disabled = true;
|
| 235 |
-
pin_code_object.disabled = true;
|
| 236 |
-
|
| 237 |
-
console.log('22');
|
| 238 |
-
}
|
| 239 |
-
|
| 240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tpl_EventsManager</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>beta</stability>
|
| 6 |
<license uri="https://opensource.org/licenses/mit-license.php">The MIT License (MIT)</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,11 +10,11 @@
|
|
| 10 |
<description>TPL Events Manager extension provides an easy and handy way of creating and managing various types of events with various permissions across your Magento store. These events can be made visible on frontend of store through event listing, event detail page and widgets. Events can be created and managed from the admin panel. 
|
| 11 |
</description>
|
| 12 |
<notes>=== TPL Events Manager ===
|
| 13 |
-
=== Version: 1.0.
|
| 14 |
=== By TwinPrimeLabs Software Development India Pvt. Ltd, Pune ===
|
| 15 |
=== For more information visit : http://www.twinprimelabs.com/ ===
|
| 16 |

|
| 17 |
-
Overview
|
| 18 |
TPL Events Manager is a Magento extension compatible with Magento 1.5.X to 1.9.X . This extension provides an easy and handy way of creating and managing various events with various permissions across your Magento store. This is the beta release of TPL Events Manager. The stable version will be released soon after few testings and users comments/ suggestions. We strongly suggest you do not install this extension directly on your deployment if you do so we will be not responsible for any losses. With the help of this extension you can create events of following types:
|
| 19 |
Sale Events
|
| 20 |
Product Launch Event
|
|
@@ -30,10 +30,10 @@ After successful installation you will see ‘Events Manager’ menu i
|
|
| 30 |
Support 
|
| 31 |
For any support or technical queries feel free to email us on ecommerce@twinprimelabs.com
|
| 32 |
</notes>
|
| 33 |
-
<authors><author><name>TwinPrimeLabs Software Development India Pvt. Ltd</name><user>
|
| 34 |
-
<date>2016-
|
| 35 |
-
<time>
|
| 36 |
-
<contents><target name="magecommunity"><dir name="Tpl"><dir name="EventsManager"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Event.php" hash="cff3ffbd6034f22dc900ece155c8b15e"/></dir></dir></dir></dir><dir name="Event"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="29d854b4fd7ee4c28c60e9d2d9110bed"/><dir name="Tab"><file name="Main.php" hash="32146139b91c199a3143738ce5b528a5"/><file name="Options.php" hash="fb95f887d87d03e721f2ff5e15818579"/></dir><file name="Tabs.php" hash="560d5e04c05038ec3859a4442fcefa2c"/></dir><file name="Edit.php" hash="4012e540aef249f395f6984b70b05831"/><file name="Grid.php" hash="c28bf1c9409c52f4664b1ade0fe18107"/></dir><file name="Attribute.php" hash="ed425e04ec92ee77615bd6c1593934b6"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="08bd9c7297c69f700d01f12e6003b295"/><dir name="Tab"><file name="Form.php" hash="d4d8ec6a405e5467452a4353687a498a"/><file name="Stores.php" hash="000593ad3d36740fabe19a3d047dfb72"/></dir><file name="Tabs.php" hash="5fe3797142bd8e32d4b5966b2ee5ef63"/></dir><file name="Edit.php" hash="4d6e5621542b90dd4fa58ad4feb4e73a"/><file name="Grid.php" hash="06a3bcb290af5993206503721b226aa5"/></dir><file name="Comment.php" hash="9169614cd9c0389b8d87b71b20919291"/><dir name="Edit"><file name="Form.php" hash="cd5b024f1562796914c1144cc7f9df12"/><dir name="Tab"><file name="Attributes.php" hash="df666fee01f94a32a0a1c96843dd000e"/><file name="Product.php" hash="7ed01208dc8122cf20ade85c88cd68a2"/></dir><file name="Tabs.php" hash="4699029a193a56980e74860d7dd87a81"/></dir><file name="Edit.php" hash="c8218c242fce23dc3532fecd2b5ec9de"/><file name="Grid.php" hash="551769267de460a2c8ed23664648a796"/><dir name="Helper"><file name="File.php" hash="699eb91d21590e52a856fabecd40e05c"/><file name="Image.php" hash="c2584fdfe506c95d1fa29d02b35b8ca4"/></dir><dir name="Widget"><file name="Chooser.php" hash="dc5bc4a2c3aea8d5795e54877cbfd508"/></dir></dir><file name="Event.php" hash="f2e871d6ddf45e6ddc79a238c3dce470"/><dir name="Eventsmanager"><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="b2cd6558db09e625a2353de302d16761"/></dir></dir></dir><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="629dab209f968f69a00b4e648bf7f83d"/></dir></dir></dir><dir name="Helper"><dir name="Column"><dir name="Renderer"><file name="Relation.php" hash="7037254e396a6f66f5d3764163aa22e5"/></dir></dir></dir><dir name="Invitationstatus"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="671034d8e53e7c639a1d8c1a6a01c8ba"/><dir name="Tab"><file name="Main.php" hash="8c58f6ff6f3c1f347b303815ca00b749"/><file name="Options.php" hash="b9a97bac817041ca94a17bdbcfb9a37a"/></dir><file name="Tabs.php" hash="21a234922eda3623cbace8504132fd5f"/></dir><file name="Edit.php" hash="8ea85b4168e4a4e6e9a2edd1abd5eb2a"/><file name="Grid.php" hash="f132b87730c38c66fa3b93e82822eb9a"/></dir><file name="Attribute.php" hash="75f79c3ec06954b024886d514380f4ba"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a4464dd3c35d826e40c7fa96b9d3333e"/><dir name="Tab"><file name="Form.php" hash="48ec720703d7044c976077243f5fe90b"/><file name="Stores.php" hash="6b6cc9b86a25a3868689c365189a8749"/></dir><file name="Tabs.php" hash="2b665926bd8a161c294f41a8a1386718"/></dir><file name="Edit.php" hash="f9ac8ec21724f2a9d96eca469064e333"/><file name="Grid.php" hash="7d1faea6fd5ce850420b94b9ff6b4f89"/></dir><file name="Comment.php" hash="87dc1a297965f367c29ad0795649aa11"/><dir name="Edit"><file name="Form.php" hash="530e6f3d098094540fa39a140bab607a"/><dir name="Tab"><file name="Attributes.php" hash="c68f5f9eb05944a3ce0a151021131b91"/></dir><file name="Tabs.php" hash="d99f0a11160be411dbba3d0a3f941226"/></dir><file name="Edit.php" hash="7da24dd25ca094020f5b960b6e808094"/><file name="Grid.php" hash="93bd16dd3d6cebc3ea28229fa4e1a497"/><dir name="Helper"><file name="File.php" hash="9d5c9065eecc41546991b050240ba595"/><file name="Image.php" hash="ebafec139642c314e58caf468f9de183"/></dir></dir><file name="Invitationstatus.php" hash="31fbe242a50a34542025973e063372af"/></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Event.php" hash="62802d8685af2b5314db900cc15cdaeb"/></dir></dir></dir><dir name="Event"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="26c97a0d72bf32a284ff77fc8962a6ab"/></dir></dir><dir name="Comment"><file name="Form.php" hash="3b124410b7735ab6d6675b923d17681b"/><file name="List.php" hash="b20cf8969e2dbb985eeb7fca5a88f1e5"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="e8fc53074ad309a8e6340e427bf84692"/><file name="View.php" hash="214bab3e64f6aeff5b961706da242505"/></dir></dir><file name="List.php" hash="eb3a9614e535805cf4e9be1d7f593ddf"/><file name="Notification.php" hash="71001772542df0c18bb27fc3d511433e"/><file name="Rss.php" hash="0681ac5666ba362583acc439e95ad34a"/><file name="View.php" hash="b01118270ded765c34f573299316f023"/><dir name="Widget"><file name="Banner.php" hash="caf8bdc2d4596a60ddd280de7e9f2f63"/><file name="Link.php" hash="54eca3c218c2c96a06551d33a55663c8"/><file name="View.php" hash="fc7b1b85c269a7946cc035ff6d64475d"/></dir></dir><dir name="Invitationstatus"><dir name="Comment"><file name="Form.php" hash="c6c128a8eeeea65c99ddbd0ac31e1ad0"/><file name="List.php" hash="68b2961104638628ac36c6e6ba51360a"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="0122a070f363508334ad60ac0ceb043b"/><file name="View.php" hash="23e01f642cf4645cf2c7e4a31b81cc39"/></dir></dir><file name="List.php" hash="3dbb9dbf8a4a80b8a834bc53b3dd8346"/><file name="Rss.php" hash="f10d7de5d9d82912d33aa83ecdaed137"/><file name="View.php" hash="aa87af42ee7e22157f19071219f4b84e"/></dir><file name="Rss.php" hash="4eccf803704a1a4e220901a15fde685e"/></dir><dir name="Controller"><file name="Router.php" hash="85c5fe42f6b486b08f5eaa190c8ab721"/></dir><dir name="Helper"><file name="Data.php" hash="cbe695f5f8c6eca768dd56b9eadaf2bb"/><dir name="Event"><file name="Image.php" hash="f502fcdb1cea90218179406d2e014ad6"/></dir><file name="Event.php" hash="bfa4353a6cee63dff5ac3346d0b3c808"/><dir name="Image"><file name="Abstract.php" hash="aa6f51a9414794d2e7ed22b32ef51d80"/></dir><dir name="Invitationstatus"><file name="Image.php" hash="8da3dbad04cf32fbf0161ff1904a1622"/></dir><file name="Invitationstatus.php" hash="55e41e362f239fb802d1777f888dc98e"/><file name="Product.php" hash="d799a63a2aea4ab43d98b252a475a605"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="e8fa9962948028ab9f707317cb76398e"/><dir name="Search"><file name="Event.php" hash="d516392d54961ac8241cef9f9b951a34"/><file name="Invitationstatus.php" hash="7d27528b51b27f49264bb7c1c1d57699"/></dir><dir name="Source"><file name="Yesnodefault.php" hash="26edc4fd48aa8393218aa44ead769bfe"/></dir></dir><file name="Attribute.php" hash="4768bf7e380e142e9a103b8425604dda"/><dir name="Event"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="c0347c727bb2acb19a6c0337feb37d1b"/><file name="Image.php" hash="e4965b1a81711203dae33b7da781ec82"/><file name="Urlkey.php" hash="14701ee693d5a1b6bfc138f1b9c8a5b9"/></dir></dir><file name="Comment.php" hash="4e3870dfdeba568a5186260c533aa4f5"/><file name="Product.php" hash="aa84e75391bdaa78b79af1e986ebe2d7"/><file name="Source.php" hash="0248a1deee8f05ebdbd95f063efc6b23"/></dir><file name="Event.php" hash="7d51d5a6a4b1eb5d5f5af2c564f0cf5c"/><dir name="Invitationstatus"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="fdbab0df610b7f3af59c75ab815cfc3d"/><file name="Image.php" hash="1c3fed8eaa859409107d1abbcbf9eeb8"/><file name="Urlkey.php" hash="884963e1319b86773bf1e52eb16fdc0b"/></dir></dir><file name="Comment.php" hash="478f6686759f19a94a47d1a22f56e165"/></dir><file name="Invitationstatus.php" hash="74f9d92a9eea770e722d8c219a44bba9"/><file name="Observer.php" hash="40cf63d06d3a595fff4efdbaecd1f863"/><dir name="Resource"><file name="Attribute.php" hash="4d8dfebd6e67fdff9662b3e555c47aaa"/><dir name="Eav"><file name="Attribute.php" hash="ba432f7ad402294a26d88d98315c4f34"/></dir><dir name="Event"><dir name="Attribute"><file name="Collection.php" hash="e3f971aee6d0d11bab3e6f097773f3cb"/></dir><file name="Collection.php" hash="70dd5f00dc0ead7caf945452b72a4628"/><dir name="Comment"><file name="Collection.php" hash="02f15b3921f66dee6f01bcb4294094ad"/><dir name="Event"><file name="Collection.php" hash="367e1ac367e90c0938ae4d2d23f9ecfd"/></dir></dir><file name="Comment.php" hash="c49d516faa8de6b22e36af50b3546d71"/><dir name="Product"><file name="Collection.php" hash="a1de9e36077090671ab837ae513562f4"/></dir><file name="Product.php" hash="63a997811867abdb9f92f63c6290eda3"/></dir><file name="Event.php" hash="cae2aa7d5838af95bf9c5b5c9d13abec"/><dir name="Invitationstatus"><dir name="Attribute"><file name="Collection.php" hash="67fb57d09b2c65eb03988095c4210c7a"/></dir><file name="Collection.php" hash="fef5488455af980d5b244faeec366203"/><dir name="Comment"><file name="Collection.php" hash="45fe20de97f7af680f1be9d23c7ef724"/><dir name="Invitationstatus"><file name="Collection.php" hash="ad13c2d07048f62402ec0e26afbd3c43"/></dir></dir><file name="Comment.php" hash="5582c69eb50bee2ad8c4a38d3c543b47"/></dir><file name="Invitationstatus.php" hash="327ae665855a4c99ab503fe7ca8aa203"/><file name="Setup.php" hash="d7c7d7779290719841ab5657c22b3b25"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eventsmanager"><dir name="Event"><file name="AttributeController.php" hash="0e19f1c9698f738a6e897df48d41514b"/><dir name="Catalog"><file name="ProductController.php" hash="bbe886df7d2a25776acd7d9693758de1"/></dir><file name="CommentController.php" hash="ebf4836fb14b85ca739d45d9ea7f1e95"/><file name="WidgetController.php" hash="ebd92ef9c22c9f15cb91184a74da4ebb"/></dir><file name="EventController.php" hash="aa85796dc9d76b4320c0763b1b54de1e"/><dir name="Invitationstatus"><file name="AttributeController.php" hash="711e6bc7a8e1bbcef0d21e6fbd2befb3"/><file name="CommentController.php" hash="ff52db18aa1a3ff47604790dee3cd7cb"/></dir><file name="InvitationstatusController.php" hash="6bf952fd40f938d3930d73147e00010d"/></dir></dir><dir name="Event"><dir name="Customer"><file name="CommentController.php" hash="cf6e279738ac74f643646da292e923bc"/></dir></dir><file name="EventController.php" hash="ee972e7fab13a0e3c5b8019b6c5a8cba"/><dir name="Invitationstatus"><dir name="Customer"><file name="CommentController.php" hash="55ab09d31d065bf2c6ab4d4830daf336"/></dir></dir><file name="InvitationstatusController.php" hash="fda729a439ab349b50ee3e16c1f4cc5b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3fc97572df7d9998b8582fd2f12d1bd7"/><file name="config.xml" hash="dd285c1fbcd6896c223a1f7b180e729c"/><file name="system.xml" hash="534e73840d0a7d5e4d14d3906f9d38c9"/><file name="widget.xml" hash="270dea388f1f54d7b6c8caea9814806f"/></dir><dir name="sql"><dir name="tpl_eventsmanager_setup"><file name="install-1.0.0.php" hash="5e03d590d384b3a94663f8e03638e999"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="58ac255c4960c4073ac615b97a69f82a"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="attribute"><file name="js.phtml" hash="4094bb37e9e66816d5da33617a120a50"/></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="3e20b55a4f85b958eaf71d77f948fbc6"/></dir></dir></dir><file name="grid.phtml" hash="6b4ae7b9a4c420ce1b0c2e11597008ef"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="a3d3ab45820a221ec2266ca5286d6a10"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="catalog"><dir name="product"><dir name="list"><file name="event.phtml" hash="6140cecae9cbcd23e9d0130a51f5b1f9"/></dir></dir></dir><dir name="event"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="2df5dc6f69679baba4ae9cece5ae5036"/></dir></dir><dir name="comment"><file name="form.phtml" hash="992a211a11c651d858e36f0240ce670e"/><file name="list.phtml" hash="6bc1ab981db15b61005e48cfa432d474"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="9c841e1f7d74b1841f32faafc53056b1"/><file name="view.phtml" hash="958aa3cf8b7ba38107baa7a33848fbed"/></dir></dir><file name="list.phtml" hash="f2ba0147096ea10f392c65b5944f789a"/><file name="notification.phtml" hash="3e68cf27e1488bcbc2d875897314eb1b"/><file name="view.phtml" hash="170e208aacbdbd438cbb2633a2148fc3"/><file name="viewright.phtml" hash="f119c7f3db688ba555b53ccf32305965"/><dir name="widget"><file name="banner.phtml" hash="913e43afb3b30bdb083584251b68c0fe"/><file name="link.phtml" hash="dd75a0521120509ee125d9cfabb9752a"/><file name="view.phtml" hash="514b3048a2d595b24004feeec420ea3a"/></dir></dir><dir name="invitationstatus"><dir name="comment"><file name="form.phtml" hash="d0fb221544946387a218ca1ba047ae4d"/><file name="list.phtml" hash="99f964781b35b9de432a769caaecad69"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="49ebf8090af1995d54eec823ef420721"/><file name="view.phtml" hash="9190f4ebc518ee1353c0f2190f8c467f"/></dir></dir><file name="list.phtml" hash="73d0e1d96399640abb845fc1724ce892"/><file name="view.phtml" hash="0746533642dc98ca39a3bbe40aa221c8"/></dir><file name="rss.phtml" hash="67ca1f2fd3259663f6f0c8dbaee09d36"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tpl_EventsManager.xml" hash="b1e8c92944d43a7506728d092d6c6f6e"/></dir></target><target name="mageweb"><dir name="js"><dir name="tpl_eventmanager"><file name="eventeditform.js" hash="52b4f2475ad8d7a21449adfcda2341b0"/><file name="eventeditform_old.js" hash="259f5cde472d55efef105119a0a72efe"/><file name="jquery.js" hash="895323ed2f7258af4fae2c738c8aea49"/><file name="monthly.js" hash="b11258ebaf9f8ae9c6940999e5fa1915"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="css"><file name="bootstrap-theme.css" hash="1e175b53796c46cb6835cbfb219fb248"/><file name="bootstrap-theme.css.map" hash="faebce397b393cd48125abdc529aa503"/><file name="bootstrap-theme.min.css" hash="ffb12f89f706291cb139b73c164a7722"/><file name="bootstrap.css" hash="e2958a4ebe9166dbaa6c59311b281021"/><file name="bootstrap.css.map" hash="3d2931e768a0bf96442072dcd0019aa6"/><file name="bootstrap.min.css" hash="385b964b68acb68d23cb43a5218fade9"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="7ad17c6085dee9a33787bac28fb23d46"/><file name="glyphicons-halflings-regular.svg" hash="32941d6330044744c02493835b799e90"/><file name="glyphicons-halflings-regular.ttf" hash="e49d52e74b7689a0727def99da31f3eb"/><file name="glyphicons-halflings-regular.woff" hash="68ed1dac06bf0409c18ae7bc62889170"/></dir></dir><file name="monthly.css" hash="6a43b23b7dafe258b388d5f8b91f42f6"/><file name="monthly_old.css" hash="51be0221395ca535a5ec5dcb82a005cf"/></dir></dir><dir name="js"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="js"><file name="bootstrap.js" hash="f91d38466de6410297c6dcd8287abbca"/><file name="bootstrap.min.js" hash="abda843684d022f3bc22bc83927fe05f"/></dir></dir></dir></dir><dir name="images"><dir name="tpl_eventsmanager"><file name="bg.jpg" hash="e4df7be76ac0496d24f44041302b1e75"/><file name="calendar-icon.png" hash="d78ff4410a3297a77804f2eaa8e11c1a"/><file name="clock.png" hash="6629a078dfacc2a8de4a90f0b9dbb3d5"/><file name="contact.png" hash="b04761748bd486bbe37a794c709836f5"/><file name="location-marker.png" hash="7eaa49fabb3fe03b980adc60028a599a"/><file name="no-image-available.png" hash="fd6fd9721b09b0cef5e23cffa0b22d75"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Tpl_EventsManager.csv" hash="a038ec3d1908a22509afe8b8a7a4f195"/><dir name="template"><dir name="email"><file name="tpl_eventmanager_customer_invitation_mail.html" hash=""/><file name="tpl_eventmanager_event_cancel_mail.html" hash=""/></dir></dir></dir></target></contents>
|
| 37 |
<compatible/>
|
| 38 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package></required></dependencies>
|
| 39 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tpl_EventsManager</name>
|
| 4 |
+
<version>1.0.1</version>
|
| 5 |
<stability>beta</stability>
|
| 6 |
<license uri="https://opensource.org/licenses/mit-license.php">The MIT License (MIT)</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>TPL Events Manager extension provides an easy and handy way of creating and managing various types of events with various permissions across your Magento store. These events can be made visible on frontend of store through event listing, event detail page and widgets. Events can be created and managed from the admin panel. 
|
| 11 |
</description>
|
| 12 |
<notes>=== TPL Events Manager ===
|
| 13 |
+
=== Version: 1.0.1 , Note Date: 31/03/2016 ===
|
| 14 |
=== By TwinPrimeLabs Software Development India Pvt. Ltd, Pune ===
|
| 15 |
=== For more information visit : http://www.twinprimelabs.com/ ===
|
| 16 |

|
| 17 |
+
Overview :
|
| 18 |
TPL Events Manager is a Magento extension compatible with Magento 1.5.X to 1.9.X . This extension provides an easy and handy way of creating and managing various events with various permissions across your Magento store. This is the beta release of TPL Events Manager. The stable version will be released soon after few testings and users comments/ suggestions. We strongly suggest you do not install this extension directly on your deployment if you do so we will be not responsible for any losses. With the help of this extension you can create events of following types:
|
| 19 |
Sale Events
|
| 20 |
Product Launch Event
|
| 30 |
Support 
|
| 31 |
For any support or technical queries feel free to email us on ecommerce@twinprimelabs.com
|
| 32 |
</notes>
|
| 33 |
+
<authors><author><name>TwinPrimeLabs Software Development India Pvt. Ltd</name><user>TPLIndia</user><email>ecommerce@twinprimelabs.com</email></author></authors>
|
| 34 |
+
<date>2016-04-01</date>
|
| 35 |
+
<time>09:52:04</time>
|
| 36 |
+
<contents><target name="magecommunity"><dir name="Tpl"><dir name="EventsManager"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Event.php" hash="cff3ffbd6034f22dc900ece155c8b15e"/></dir></dir></dir></dir><dir name="Event"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="29d854b4fd7ee4c28c60e9d2d9110bed"/><dir name="Tab"><file name="Main.php" hash="32146139b91c199a3143738ce5b528a5"/><file name="Options.php" hash="fb95f887d87d03e721f2ff5e15818579"/></dir><file name="Tabs.php" hash="560d5e04c05038ec3859a4442fcefa2c"/></dir><file name="Edit.php" hash="4012e540aef249f395f6984b70b05831"/><file name="Grid.php" hash="c28bf1c9409c52f4664b1ade0fe18107"/></dir><file name="Attribute.php" hash="ed425e04ec92ee77615bd6c1593934b6"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="08bd9c7297c69f700d01f12e6003b295"/><dir name="Tab"><file name="Form.php" hash="d4d8ec6a405e5467452a4353687a498a"/><file name="Stores.php" hash="000593ad3d36740fabe19a3d047dfb72"/></dir><file name="Tabs.php" hash="5fe3797142bd8e32d4b5966b2ee5ef63"/></dir><file name="Edit.php" hash="4d6e5621542b90dd4fa58ad4feb4e73a"/><file name="Grid.php" hash="06a3bcb290af5993206503721b226aa5"/></dir><file name="Comment.php" hash="9169614cd9c0389b8d87b71b20919291"/><dir name="Edit"><file name="Form.php" hash="cd5b024f1562796914c1144cc7f9df12"/><dir name="Tab"><file name="Attributes.php" hash="df666fee01f94a32a0a1c96843dd000e"/><file name="Product.php" hash="7ed01208dc8122cf20ade85c88cd68a2"/></dir><file name="Tabs.php" hash="4699029a193a56980e74860d7dd87a81"/></dir><file name="Edit.php" hash="c8218c242fce23dc3532fecd2b5ec9de"/><file name="Grid.php" hash="551769267de460a2c8ed23664648a796"/><dir name="Helper"><file name="File.php" hash="699eb91d21590e52a856fabecd40e05c"/><file name="Image.php" hash="c2584fdfe506c95d1fa29d02b35b8ca4"/></dir><dir name="Widget"><file name="Chooser.php" hash="dc5bc4a2c3aea8d5795e54877cbfd508"/></dir></dir><file name="Event.php" hash="f2e871d6ddf45e6ddc79a238c3dce470"/><dir name="Eventsmanager"><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="b2cd6558db09e625a2353de302d16761"/></dir></dir></dir><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="629dab209f968f69a00b4e648bf7f83d"/></dir></dir></dir><dir name="Helper"><dir name="Column"><dir name="Renderer"><file name="Relation.php" hash="7037254e396a6f66f5d3764163aa22e5"/></dir></dir></dir><dir name="Invitationstatus"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="671034d8e53e7c639a1d8c1a6a01c8ba"/><dir name="Tab"><file name="Main.php" hash="8c58f6ff6f3c1f347b303815ca00b749"/><file name="Options.php" hash="b9a97bac817041ca94a17bdbcfb9a37a"/></dir><file name="Tabs.php" hash="21a234922eda3623cbace8504132fd5f"/></dir><file name="Edit.php" hash="8ea85b4168e4a4e6e9a2edd1abd5eb2a"/><file name="Grid.php" hash="f132b87730c38c66fa3b93e82822eb9a"/></dir><file name="Attribute.php" hash="75f79c3ec06954b024886d514380f4ba"/><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a4464dd3c35d826e40c7fa96b9d3333e"/><dir name="Tab"><file name="Form.php" hash="48ec720703d7044c976077243f5fe90b"/><file name="Stores.php" hash="6b6cc9b86a25a3868689c365189a8749"/></dir><file name="Tabs.php" hash="2b665926bd8a161c294f41a8a1386718"/></dir><file name="Edit.php" hash="f9ac8ec21724f2a9d96eca469064e333"/><file name="Grid.php" hash="7d1faea6fd5ce850420b94b9ff6b4f89"/></dir><file name="Comment.php" hash="87dc1a297965f367c29ad0795649aa11"/><dir name="Edit"><file name="Form.php" hash="530e6f3d098094540fa39a140bab607a"/><dir name="Tab"><file name="Attributes.php" hash="c68f5f9eb05944a3ce0a151021131b91"/></dir><file name="Tabs.php" hash="d99f0a11160be411dbba3d0a3f941226"/></dir><file name="Edit.php" hash="7da24dd25ca094020f5b960b6e808094"/><file name="Grid.php" hash="93bd16dd3d6cebc3ea28229fa4e1a497"/><dir name="Helper"><file name="File.php" hash="9d5c9065eecc41546991b050240ba595"/><file name="Image.php" hash="ebafec139642c314e58caf468f9de183"/></dir></dir><file name="Invitationstatus.php" hash="31fbe242a50a34542025973e063372af"/></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Event.php" hash="62802d8685af2b5314db900cc15cdaeb"/></dir></dir></dir><dir name="Event"><dir name="Catalog"><dir name="Product"><file name="List.php" hash="26c97a0d72bf32a284ff77fc8962a6ab"/></dir></dir><dir name="Comment"><file name="Form.php" hash="3b124410b7735ab6d6675b923d17681b"/><file name="List.php" hash="b20cf8969e2dbb985eeb7fca5a88f1e5"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="e8fc53074ad309a8e6340e427bf84692"/><file name="View.php" hash="214bab3e64f6aeff5b961706da242505"/></dir></dir><file name="List.php" hash="eb3a9614e535805cf4e9be1d7f593ddf"/><file name="Notification.php" hash="71001772542df0c18bb27fc3d511433e"/><file name="Rss.php" hash="0681ac5666ba362583acc439e95ad34a"/><file name="View.php" hash="b01118270ded765c34f573299316f023"/><dir name="Widget"><file name="Banner.php" hash="caf8bdc2d4596a60ddd280de7e9f2f63"/><file name="Link.php" hash="54eca3c218c2c96a06551d33a55663c8"/><file name="View.php" hash="fc7b1b85c269a7946cc035ff6d64475d"/></dir></dir><dir name="Invitationstatus"><dir name="Comment"><file name="Form.php" hash="c6c128a8eeeea65c99ddbd0ac31e1ad0"/><file name="List.php" hash="68b2961104638628ac36c6e6ba51360a"/></dir><dir name="Customer"><dir name="Comment"><file name="List.php" hash="0122a070f363508334ad60ac0ceb043b"/><file name="View.php" hash="23e01f642cf4645cf2c7e4a31b81cc39"/></dir></dir><file name="List.php" hash="3dbb9dbf8a4a80b8a834bc53b3dd8346"/><file name="Rss.php" hash="f10d7de5d9d82912d33aa83ecdaed137"/><file name="View.php" hash="aa87af42ee7e22157f19071219f4b84e"/></dir><file name="Rss.php" hash="4eccf803704a1a4e220901a15fde685e"/></dir><dir name="Controller"><file name="Router.php" hash="85c5fe42f6b486b08f5eaa190c8ab721"/></dir><dir name="Helper"><file name="Data.php" hash="91b8d83756702cb098382f901cc4b8af"/><dir name="Event"><file name="Image.php" hash="f502fcdb1cea90218179406d2e014ad6"/></dir><file name="Event.php" hash="bfa4353a6cee63dff5ac3346d0b3c808"/><dir name="Image"><file name="Abstract.php" hash="aa6f51a9414794d2e7ed22b32ef51d80"/></dir><dir name="Invitationstatus"><file name="Image.php" hash="8da3dbad04cf32fbf0161ff1904a1622"/></dir><file name="Invitationstatus.php" hash="55e41e362f239fb802d1777f888dc98e"/><file name="Product.php" hash="d799a63a2aea4ab43d98b252a475a605"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Observer.php" hash="e8fa9962948028ab9f707317cb76398e"/><dir name="Search"><file name="Event.php" hash="d516392d54961ac8241cef9f9b951a34"/><file name="Invitationstatus.php" hash="7d27528b51b27f49264bb7c1c1d57699"/></dir><dir name="Source"><file name="Yesnodefault.php" hash="26edc4fd48aa8393218aa44ead769bfe"/></dir></dir><file name="Attribute.php" hash="4768bf7e380e142e9a103b8425604dda"/><dir name="Event"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="c0347c727bb2acb19a6c0337feb37d1b"/><file name="Image.php" hash="e4965b1a81711203dae33b7da781ec82"/><file name="Urlkey.php" hash="14701ee693d5a1b6bfc138f1b9c8a5b9"/></dir></dir><file name="Comment.php" hash="4e3870dfdeba568a5186260c533aa4f5"/><file name="Product.php" hash="aa84e75391bdaa78b79af1e986ebe2d7"/><file name="Source.php" hash="0248a1deee8f05ebdbd95f063efc6b23"/></dir><file name="Event.php" hash="7d51d5a6a4b1eb5d5f5af2c564f0cf5c"/><dir name="Invitationstatus"><dir name="Attribute"><dir name="Backend"><file name="File.php" hash="fdbab0df610b7f3af59c75ab815cfc3d"/><file name="Image.php" hash="1c3fed8eaa859409107d1abbcbf9eeb8"/><file name="Urlkey.php" hash="884963e1319b86773bf1e52eb16fdc0b"/></dir></dir><file name="Comment.php" hash="478f6686759f19a94a47d1a22f56e165"/></dir><file name="Invitationstatus.php" hash="74f9d92a9eea770e722d8c219a44bba9"/><file name="Observer.php" hash="40cf63d06d3a595fff4efdbaecd1f863"/><dir name="Resource"><file name="Attribute.php" hash="4d8dfebd6e67fdff9662b3e555c47aaa"/><dir name="Eav"><file name="Attribute.php" hash="ba432f7ad402294a26d88d98315c4f34"/></dir><dir name="Event"><dir name="Attribute"><file name="Collection.php" hash="e3f971aee6d0d11bab3e6f097773f3cb"/></dir><file name="Collection.php" hash="70dd5f00dc0ead7caf945452b72a4628"/><dir name="Comment"><file name="Collection.php" hash="02f15b3921f66dee6f01bcb4294094ad"/><dir name="Event"><file name="Collection.php" hash="367e1ac367e90c0938ae4d2d23f9ecfd"/></dir></dir><file name="Comment.php" hash="c49d516faa8de6b22e36af50b3546d71"/><dir name="Product"><file name="Collection.php" hash="a1de9e36077090671ab837ae513562f4"/></dir><file name="Product.php" hash="63a997811867abdb9f92f63c6290eda3"/></dir><file name="Event.php" hash="cae2aa7d5838af95bf9c5b5c9d13abec"/><dir name="Invitationstatus"><dir name="Attribute"><file name="Collection.php" hash="67fb57d09b2c65eb03988095c4210c7a"/></dir><file name="Collection.php" hash="fef5488455af980d5b244faeec366203"/><dir name="Comment"><file name="Collection.php" hash="45fe20de97f7af680f1be9d23c7ef724"/><dir name="Invitationstatus"><file name="Collection.php" hash="ad13c2d07048f62402ec0e26afbd3c43"/></dir></dir><file name="Comment.php" hash="5582c69eb50bee2ad8c4a38d3c543b47"/></dir><file name="Invitationstatus.php" hash="327ae665855a4c99ab503fe7ca8aa203"/><file name="Setup.php" hash="d7c7d7779290719841ab5657c22b3b25"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Eventsmanager"><dir name="Event"><file name="AttributeController.php" hash="0e19f1c9698f738a6e897df48d41514b"/><dir name="Catalog"><file name="ProductController.php" hash="bbe886df7d2a25776acd7d9693758de1"/></dir><file name="CommentController.php" hash="ebf4836fb14b85ca739d45d9ea7f1e95"/><file name="WidgetController.php" hash="ebd92ef9c22c9f15cb91184a74da4ebb"/></dir><file name="EventController.php" hash="aa85796dc9d76b4320c0763b1b54de1e"/><dir name="Invitationstatus"><file name="AttributeController.php" hash="711e6bc7a8e1bbcef0d21e6fbd2befb3"/><file name="CommentController.php" hash="ff52db18aa1a3ff47604790dee3cd7cb"/></dir><file name="InvitationstatusController.php" hash="6bf952fd40f938d3930d73147e00010d"/></dir></dir><dir name="Event"><dir name="Customer"><file name="CommentController.php" hash="cf6e279738ac74f643646da292e923bc"/></dir></dir><file name="EventController.php" hash="ee972e7fab13a0e3c5b8019b6c5a8cba"/><dir name="Invitationstatus"><dir name="Customer"><file name="CommentController.php" hash="55ab09d31d065bf2c6ab4d4830daf336"/></dir></dir><file name="InvitationstatusController.php" hash="fda729a439ab349b50ee3e16c1f4cc5b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3fc97572df7d9998b8582fd2f12d1bd7"/><file name="config.xml" hash="aa487dea6f380b9a5151944171bd4ac0"/><file name="system.xml" hash="534e73840d0a7d5e4d14d3906f9d38c9"/><file name="widget.xml" hash="270dea388f1f54d7b6c8caea9814806f"/></dir><dir name="sql"><dir name="tpl_eventsmanager_setup"><file name="install-1.0.0.php" hash="5e03d590d384b3a94663f8e03638e999"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="58ac255c4960c4073ac615b97a69f82a"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="attribute"><file name="js.phtml" hash="4094bb37e9e66816d5da33617a120a50"/></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="3e20b55a4f85b958eaf71d77f948fbc6"/></dir></dir></dir><file name="grid.phtml" hash="6b4ae7b9a4c420ce1b0c2e11597008ef"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tpl_eventsmanager.xml" hash="39e5d34ab1c21d4685452600f5961a29"/></dir><dir name="template"><dir name="tpl_eventsmanager"><dir name="catalog"><dir name="product"><dir name="list"><file name="event.phtml" hash="6140cecae9cbcd23e9d0130a51f5b1f9"/></dir></dir></dir><dir name="event"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="2df5dc6f69679baba4ae9cece5ae5036"/></dir></dir><dir name="comment"><file name="form.phtml" hash="992a211a11c651d858e36f0240ce670e"/><file name="list.phtml" hash="6bc1ab981db15b61005e48cfa432d474"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="9c841e1f7d74b1841f32faafc53056b1"/><file name="view.phtml" hash="958aa3cf8b7ba38107baa7a33848fbed"/></dir></dir><file name="list.phtml" hash="f2ba0147096ea10f392c65b5944f789a"/><file name="notification.phtml" hash="3e68cf27e1488bcbc2d875897314eb1b"/><file name="view.phtml" hash="170e208aacbdbd438cbb2633a2148fc3"/><file name="viewright.phtml" hash="f119c7f3db688ba555b53ccf32305965"/><dir name="widget"><file name="banner.phtml" hash="913e43afb3b30bdb083584251b68c0fe"/><file name="link.phtml" hash="dd75a0521120509ee125d9cfabb9752a"/><file name="view.phtml" hash="514b3048a2d595b24004feeec420ea3a"/></dir></dir><dir name="invitationstatus"><dir name="comment"><file name="form.phtml" hash="d0fb221544946387a218ca1ba047ae4d"/><file name="list.phtml" hash="99f964781b35b9de432a769caaecad69"/></dir><dir name="customer"><dir name="comment"><file name="list.phtml" hash="49ebf8090af1995d54eec823ef420721"/><file name="view.phtml" hash="9190f4ebc518ee1353c0f2190f8c467f"/></dir></dir><file name="list.phtml" hash="73d0e1d96399640abb845fc1724ce892"/><file name="view.phtml" hash="0746533642dc98ca39a3bbe40aa221c8"/></dir><file name="rss.phtml" hash="67ca1f2fd3259663f6f0c8dbaee09d36"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tpl_EventsManager.xml" hash="b1e8c92944d43a7506728d092d6c6f6e"/></dir></target><target name="mageweb"><dir name="js"><dir name="tpl_eventmanager"><file name="eventeditform.js" hash="52b4f2475ad8d7a21449adfcda2341b0"/><file name="jquery.js" hash="895323ed2f7258af4fae2c738c8aea49"/><file name="monthly.js" hash="b11258ebaf9f8ae9c6940999e5fa1915"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="css"><file name="bootstrap-theme.css" hash="1e175b53796c46cb6835cbfb219fb248"/><file name="bootstrap-theme.css.map" hash="faebce397b393cd48125abdc529aa503"/><file name="bootstrap-theme.min.css" hash="ffb12f89f706291cb139b73c164a7722"/><file name="bootstrap.css" hash="e2958a4ebe9166dbaa6c59311b281021"/><file name="bootstrap.css.map" hash="3d2931e768a0bf96442072dcd0019aa6"/><file name="bootstrap.min.css" hash="385b964b68acb68d23cb43a5218fade9"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="7ad17c6085dee9a33787bac28fb23d46"/><file name="glyphicons-halflings-regular.svg" hash="32941d6330044744c02493835b799e90"/><file name="glyphicons-halflings-regular.ttf" hash="e49d52e74b7689a0727def99da31f3eb"/><file name="glyphicons-halflings-regular.woff" hash="68ed1dac06bf0409c18ae7bc62889170"/></dir></dir><file name="monthly.css" hash="6a43b23b7dafe258b388d5f8b91f42f6"/></dir></dir><dir name="js"><dir name="tpl_eventsmanager"><dir name="bootstrap"><dir name="js"><file name="bootstrap.js" hash="f91d38466de6410297c6dcd8287abbca"/><file name="bootstrap.min.js" hash="abda843684d022f3bc22bc83927fe05f"/></dir></dir></dir></dir><dir name="images"><dir name="tpl_eventsmanager"><file name="bg.jpg" hash="e4df7be76ac0496d24f44041302b1e75"/><file name="calendar-icon.png" hash="d78ff4410a3297a77804f2eaa8e11c1a"/><file name="clock.png" hash="6629a078dfacc2a8de4a90f0b9dbb3d5"/><file name="contact.png" hash="b04761748bd486bbe37a794c709836f5"/><file name="location-marker.png" hash="7eaa49fabb3fe03b980adc60028a599a"/><file name="no-image-available.png" hash="fd6fd9721b09b0cef5e23cffa0b22d75"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Tpl_EventsManager.csv" hash="a038ec3d1908a22509afe8b8a7a4f195"/><dir name="template"><dir name="email"><file name="tpl_eventmanager_customer_invitation_mail.html" hash="5fdffc3d090731c320337d20e04b8652"/><file name="tpl_eventmanager_event_cancel_mail.html" hash="9b7a098d2c278a7094ca67489625e004"/></dir></dir></dir></target></contents>
|
| 37 |
<compatible/>
|
| 38 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package></required></dependencies>
|
| 39 |
</package>
|
|
@@ -1,441 +0,0 @@
|
|
| 1 |
-
/* Overall wrapper */
|
| 2 |
-
.monthly {
|
| 3 |
-
background: #F3F3F5;
|
| 4 |
-
color:#545454;
|
| 5 |
-
-webkit-user-select: none;
|
| 6 |
-
-moz-user-select: none;
|
| 7 |
-
-ms-user-select: none;
|
| 8 |
-
user-select: none;
|
| 9 |
-
position: relative;
|
| 10 |
-
}
|
| 11 |
-
|
| 12 |
-
/* Contains title & nav */
|
| 13 |
-
.monthly-header {
|
| 14 |
-
position: relative;
|
| 15 |
-
text-align:center;
|
| 16 |
-
padding:10px;
|
| 17 |
-
background: #fff;
|
| 18 |
-
height: 40px;
|
| 19 |
-
box-sizing: border-box;
|
| 20 |
-
}
|
| 21 |
-
.monthly-header-title {
|
| 22 |
-
font-size:.8em;
|
| 23 |
-
text-transform: uppercase;
|
| 24 |
-
}
|
| 25 |
-
/* wrapper for left button to make the clickable area bigger */
|
| 26 |
-
.monthly-prev {
|
| 27 |
-
position: absolute;
|
| 28 |
-
top:0;
|
| 29 |
-
left:0;
|
| 30 |
-
width:50px;
|
| 31 |
-
height:100%;
|
| 32 |
-
opacity: .5;
|
| 33 |
-
}
|
| 34 |
-
.monthly-prev:hover {
|
| 35 |
-
opacity: 1;
|
| 36 |
-
}
|
| 37 |
-
/* Left Arrow */
|
| 38 |
-
.monthly-prev:after{
|
| 39 |
-
content:'';
|
| 40 |
-
position: absolute;
|
| 41 |
-
top:50%;
|
| 42 |
-
left:50%;
|
| 43 |
-
border-left:2px solid #222;
|
| 44 |
-
border-bottom:2px solid #222;
|
| 45 |
-
width:5px;
|
| 46 |
-
height:5px;
|
| 47 |
-
margin:-3px 0 0 -5px;
|
| 48 |
-
-webkit-transform:rotate(45deg) ;
|
| 49 |
-
-ms-transform:rotate(45deg) ;
|
| 50 |
-
transform:rotate(45deg) ;
|
| 51 |
-
}
|
| 52 |
-
/* wrapper for right button to make the clickable area bigger */
|
| 53 |
-
.monthly-next {
|
| 54 |
-
position: absolute;
|
| 55 |
-
top:0;
|
| 56 |
-
right:0;
|
| 57 |
-
width:50px;
|
| 58 |
-
height:100%;
|
| 59 |
-
opacity: .5;
|
| 60 |
-
}
|
| 61 |
-
.monthly-next:hover {
|
| 62 |
-
opacity: 1;
|
| 63 |
-
}
|
| 64 |
-
/* Right Arrow */
|
| 65 |
-
.monthly-next:after{
|
| 66 |
-
content:'';
|
| 67 |
-
position: absolute;
|
| 68 |
-
top:50%;
|
| 69 |
-
left:50%;
|
| 70 |
-
border-right:2px solid #222;
|
| 71 |
-
border-top:2px solid #222;
|
| 72 |
-
width:5px;
|
| 73 |
-
height:5px;
|
| 74 |
-
margin:-3px 0 0 -5px;
|
| 75 |
-
-webkit-transform:rotate(45deg) ;
|
| 76 |
-
-ms-transform:rotate(45deg) ;
|
| 77 |
-
transform:rotate(45deg) ;
|
| 78 |
-
}
|
| 79 |
-
|
| 80 |
-
/* Day of the week headings */
|
| 81 |
-
.monthly-day-title-wrap {
|
| 82 |
-
display:table;
|
| 83 |
-
width:100%;
|
| 84 |
-
background: #fff;
|
| 85 |
-
border-bottom: 1px solid #EBEBEB;
|
| 86 |
-
}
|
| 87 |
-
.monthly-day-title-wrap div {
|
| 88 |
-
width: 14.28%!important;
|
| 89 |
-
display:table-cell;
|
| 90 |
-
box-sizing:border-box;
|
| 91 |
-
position: relative;
|
| 92 |
-
font-weight: bold;
|
| 93 |
-
text-align:center;
|
| 94 |
-
text-transform: uppercase;
|
| 95 |
-
font-size:11px;
|
| 96 |
-
}
|
| 97 |
-
|
| 98 |
-
/* Calendar days wrapper */
|
| 99 |
-
.monthly-day-wrap {
|
| 100 |
-
display:table;
|
| 101 |
-
width:100%;
|
| 102 |
-
overflow: hidden;
|
| 103 |
-
}
|
| 104 |
-
.monthly-week {
|
| 105 |
-
display:table-row;
|
| 106 |
-
width:100%;
|
| 107 |
-
}
|
| 108 |
-
/* Calendar Days */
|
| 109 |
-
.monthly-day, .monthly-day-blank {
|
| 110 |
-
width: 14.28%!important;
|
| 111 |
-
display:table-cell;
|
| 112 |
-
vertical-align: top;
|
| 113 |
-
box-sizing:border-box;
|
| 114 |
-
position: relative;
|
| 115 |
-
font-weight: bold;
|
| 116 |
-
color:inherit;
|
| 117 |
-
background: #fff;
|
| 118 |
-
box-shadow: 0 0 0 1px #EBEBEB;
|
| 119 |
-
-webkit-transition: .25s;
|
| 120 |
-
transition:.25s;
|
| 121 |
-
padding:0;
|
| 122 |
-
text-decoration: none;
|
| 123 |
-
}
|
| 124 |
-
|
| 125 |
-
/* Trick to make the days' width equal their height */
|
| 126 |
-
.monthly-day:before {
|
| 127 |
-
content: "";
|
| 128 |
-
display: block;
|
| 129 |
-
padding-top: 100%;
|
| 130 |
-
float: left;
|
| 131 |
-
}
|
| 132 |
-
|
| 133 |
-
/* Hover effect for non event calendar days */
|
| 134 |
-
.monthly-day-wrap > a:hover {
|
| 135 |
-
background: #A1C2E3;
|
| 136 |
-
}
|
| 137 |
-
|
| 138 |
-
/* Days that are part of previous or next month */
|
| 139 |
-
.monthly-day-blank {
|
| 140 |
-
background:#F3F3F5;
|
| 141 |
-
}
|
| 142 |
-
|
| 143 |
-
/* Event calendar day number styles */
|
| 144 |
-
.monthly-day-event > .monthly-day-number {
|
| 145 |
-
position: absolute;
|
| 146 |
-
line-height: 1em;
|
| 147 |
-
top:2px;
|
| 148 |
-
left:2px;
|
| 149 |
-
font-size:11px;
|
| 150 |
-
}
|
| 151 |
-
|
| 152 |
-
/* Non-Event calendar day number styles */
|
| 153 |
-
.monthly-day-pick {
|
| 154 |
-
}
|
| 155 |
-
.monthly-day-pick > .monthly-day-number {
|
| 156 |
-
line-height: 1em;
|
| 157 |
-
font-size:11px;
|
| 158 |
-
padding-top:35%;
|
| 159 |
-
}
|
| 160 |
-
|
| 161 |
-
.monthly-day-pick > .monthly-indicator-wrap {
|
| 162 |
-
margin:0;
|
| 163 |
-
}
|
| 164 |
-
|
| 165 |
-
/* Days in the past in "picker" mode */
|
| 166 |
-
.monthly-past-day:after{
|
| 167 |
-
content: '';
|
| 168 |
-
width: 150%;
|
| 169 |
-
height: 2px;
|
| 170 |
-
-webkit-transform-origin: left top;
|
| 171 |
-
-ms-transform-origin: left top;
|
| 172 |
-
transform-origin: left top;
|
| 173 |
-
-webkit-transform: rotate(45deg);
|
| 174 |
-
-ms-transform: rotate(45deg);
|
| 175 |
-
transform: rotate(45deg);
|
| 176 |
-
background: rgba(0, 0, 0, 0.1);
|
| 177 |
-
position: absolute;
|
| 178 |
-
left: 0;
|
| 179 |
-
top: 0;
|
| 180 |
-
}
|
| 181 |
-
.monthly-past-day:hover {
|
| 182 |
-
background: #fff!important;
|
| 183 |
-
}
|
| 184 |
-
/* Current day style */
|
| 185 |
-
.monthly-today .monthly-day-number {
|
| 186 |
-
color: #FFF;
|
| 187 |
-
background: #EA6565;
|
| 188 |
-
border-radius: 20px;
|
| 189 |
-
top: 1px;
|
| 190 |
-
left: 1px;
|
| 191 |
-
font-size: 10px;
|
| 192 |
-
width: 18px;
|
| 193 |
-
height: 18px;
|
| 194 |
-
line-height: 18px;
|
| 195 |
-
text-align: center;
|
| 196 |
-
}
|
| 197 |
-
.monthly-day-pick.monthly-today .monthly-day-number {
|
| 198 |
-
padding:0;
|
| 199 |
-
margin:22% 22% 0 22%;
|
| 200 |
-
}
|
| 201 |
-
|
| 202 |
-
/* Button to reset to current month */
|
| 203 |
-
.monthly-reset {
|
| 204 |
-
display: inline-block;
|
| 205 |
-
width: 9px;
|
| 206 |
-
height: 9px;
|
| 207 |
-
border: 2px solid #222;
|
| 208 |
-
border-radius: 9px;
|
| 209 |
-
position: relative;
|
| 210 |
-
opacity: .5;
|
| 211 |
-
margin-left: 5px;
|
| 212 |
-
vertical-align: middle;
|
| 213 |
-
}
|
| 214 |
-
.monthly-reset:hover {
|
| 215 |
-
opacity: 1;
|
| 216 |
-
}
|
| 217 |
-
/* Makes the little arrow on the reset button */
|
| 218 |
-
.monthly-reset:before {
|
| 219 |
-
content: '';
|
| 220 |
-
border: 3px solid transparent;
|
| 221 |
-
border-left: 3px solid #fff;
|
| 222 |
-
border-bottom: 3px solid #fff;
|
| 223 |
-
position: absolute;
|
| 224 |
-
left: 2px;
|
| 225 |
-
top: 6px;
|
| 226 |
-
}
|
| 227 |
-
.monthly-reset:after {
|
| 228 |
-
content: '';
|
| 229 |
-
border: 3px solid transparent;
|
| 230 |
-
border-left: 3px solid #222;
|
| 231 |
-
border-bottom: 3px solid #222;
|
| 232 |
-
position: absolute;
|
| 233 |
-
left: 5px;
|
| 234 |
-
top: 5px;
|
| 235 |
-
}
|
| 236 |
-
/* Button to return to month view */
|
| 237 |
-
.monthly-cal {
|
| 238 |
-
display: inline-block;
|
| 239 |
-
height:11px;
|
| 240 |
-
width:13px;
|
| 241 |
-
background:#222;
|
| 242 |
-
position: relative;
|
| 243 |
-
top:1px;
|
| 244 |
-
margin-right:5px;
|
| 245 |
-
opacity: .5;
|
| 246 |
-
}
|
| 247 |
-
.monthly-cal:hover {
|
| 248 |
-
cursor: pointer;
|
| 249 |
-
opacity: 1;
|
| 250 |
-
}
|
| 251 |
-
.monthly-cal:before {
|
| 252 |
-
content:'';
|
| 253 |
-
position: absolute;
|
| 254 |
-
width:2px;
|
| 255 |
-
height: 3px;
|
| 256 |
-
border:1px solid #fff;
|
| 257 |
-
background:#222;
|
| 258 |
-
top:-2px;
|
| 259 |
-
left:2px;
|
| 260 |
-
}
|
| 261 |
-
.monthly-cal:after {
|
| 262 |
-
content:'';
|
| 263 |
-
position: absolute;
|
| 264 |
-
width:2px;
|
| 265 |
-
height: 3px;
|
| 266 |
-
border:1px solid #fff;
|
| 267 |
-
background:#222;
|
| 268 |
-
top:-2px;
|
| 269 |
-
right:2px;
|
| 270 |
-
}
|
| 271 |
-
.monthly-cal div {
|
| 272 |
-
background: #fff;
|
| 273 |
-
height:6px;
|
| 274 |
-
width:11px;
|
| 275 |
-
position: absolute;
|
| 276 |
-
top:4px;
|
| 277 |
-
left:1px;
|
| 278 |
-
}
|
| 279 |
-
|
| 280 |
-
|
| 281 |
-
/* Wrapper around events */
|
| 282 |
-
.monthly-indicator-wrap {
|
| 283 |
-
position: relative;
|
| 284 |
-
text-align: center;
|
| 285 |
-
line-height: 0;
|
| 286 |
-
max-width: 20px;
|
| 287 |
-
margin:0 auto;
|
| 288 |
-
padding-top:40%;
|
| 289 |
-
}
|
| 290 |
-
|
| 291 |
-
/* Event indicator dots */
|
| 292 |
-
.monthly-day .monthly-event-indicator {
|
| 293 |
-
display: inline-block;
|
| 294 |
-
margin: 1px;
|
| 295 |
-
width: 8px;
|
| 296 |
-
height: 8px;
|
| 297 |
-
border-radius: 6px;
|
| 298 |
-
vertical-align: middle;
|
| 299 |
-
border-radius: 6px;
|
| 300 |
-
background:#7BA7CE;
|
| 301 |
-
font-size:0;
|
| 302 |
-
color:transparent;
|
| 303 |
-
}
|
| 304 |
-
|
| 305 |
-
.monthly-day .monthly-event-indicator:hover {
|
| 306 |
-
cursor: pointer;
|
| 307 |
-
}
|
| 308 |
-
/* Listing of events under calendar */
|
| 309 |
-
.monthly-event-list {
|
| 310 |
-
background: rgba(233, 235, 236, 0.9);
|
| 311 |
-
overflow: auto;
|
| 312 |
-
position: absolute;
|
| 313 |
-
top: 42px;
|
| 314 |
-
width: 100%;
|
| 315 |
-
height: calc(100% - 42px);
|
| 316 |
-
display: none;
|
| 317 |
-
-webkit-transition: .25s;
|
| 318 |
-
transition:.25s;
|
| 319 |
-
-webkit-transform:scale(0);
|
| 320 |
-
-ms-transform:scale(0);
|
| 321 |
-
transform:scale(0);
|
| 322 |
-
}
|
| 323 |
-
|
| 324 |
-
/* Days in Events List */
|
| 325 |
-
.monthly-list-item {
|
| 326 |
-
position: relative;
|
| 327 |
-
padding:10px 10px 5px 50px;
|
| 328 |
-
display: none;
|
| 329 |
-
border-top: 1px solid #D6D6D6;
|
| 330 |
-
text-align: left;
|
| 331 |
-
}
|
| 332 |
-
|
| 333 |
-
.monthly-list-item:after{
|
| 334 |
-
content:'No Events';
|
| 335 |
-
padding:4px 10px;
|
| 336 |
-
display:block;
|
| 337 |
-
margin-bottom:5px;
|
| 338 |
-
}
|
| 339 |
-
|
| 340 |
-
.monthly-event-list .monthly-today .monthly-event-list-date {
|
| 341 |
-
color: #EA6565;
|
| 342 |
-
}
|
| 343 |
-
|
| 344 |
-
/* Events in Events List */
|
| 345 |
-
.monthly-event-list .listed-event {
|
| 346 |
-
display: block;
|
| 347 |
-
color:#fff;
|
| 348 |
-
padding:4px 10px;
|
| 349 |
-
border-radius:2px;
|
| 350 |
-
margin-bottom: 5px;
|
| 351 |
-
}
|
| 352 |
-
|
| 353 |
-
.monthly-list-item a:link, .monthly-list-item a:visited {
|
| 354 |
-
text-decoration: none;
|
| 355 |
-
}
|
| 356 |
-
|
| 357 |
-
.item-has-event {
|
| 358 |
-
display: block;
|
| 359 |
-
}
|
| 360 |
-
|
| 361 |
-
.item-has-event:after{
|
| 362 |
-
display:none!important;
|
| 363 |
-
}
|
| 364 |
-
|
| 365 |
-
.monthly-event-list-date {
|
| 366 |
-
width:50px;
|
| 367 |
-
position: absolute;
|
| 368 |
-
left:0;
|
| 369 |
-
top:13px;
|
| 370 |
-
text-align: center;
|
| 371 |
-
font-size: 12px;
|
| 372 |
-
font-weight: bold;
|
| 373 |
-
line-height: 1.2em;
|
| 374 |
-
}
|
| 375 |
-
|
| 376 |
-
.monthly-list-time-start,
|
| 377 |
-
.monthly-list-time-end {
|
| 378 |
-
font-size:.8em;
|
| 379 |
-
display: inline-block;
|
| 380 |
-
}
|
| 381 |
-
.monthly-list-time-start:not(:empty):after {
|
| 382 |
-
content:' -';
|
| 383 |
-
padding-right:5px;
|
| 384 |
-
}
|
| 385 |
-
|
| 386 |
-
/* Events List custom webkit scrollbar */
|
| 387 |
-
|
| 388 |
-
.monthly-event-list::-webkit-scrollbar {width: 9px;}
|
| 389 |
-
|
| 390 |
-
/* Track */
|
| 391 |
-
.monthly-event-list::-webkit-scrollbar-track {background: none;}
|
| 392 |
-
|
| 393 |
-
/* Handle */
|
| 394 |
-
.monthly-event-list::-webkit-scrollbar-thumb {
|
| 395 |
-
background:#ccc;
|
| 396 |
-
border:1px solid #E9EBEC;
|
| 397 |
-
border-radius: 10px;
|
| 398 |
-
}
|
| 399 |
-
.monthly-event-list::-webkit-scrollbar-thumb:hover {background:#555;}
|
| 400 |
-
|
| 401 |
-
/* Increase font & spacing over larger size */
|
| 402 |
-
@media (min-width: 400px) {
|
| 403 |
-
.monthly-day-number {
|
| 404 |
-
top: 5px;
|
| 405 |
-
left: 5px;
|
| 406 |
-
font-size: 13px;
|
| 407 |
-
}
|
| 408 |
-
}
|
| 409 |
-
/* Styles for large mode where text is revealed within events */
|
| 410 |
-
@media (min-width: 600px) {
|
| 411 |
-
.monthly-day-event {
|
| 412 |
-
padding-top: 20px;
|
| 413 |
-
}
|
| 414 |
-
.monthly-day-event:before {
|
| 415 |
-
padding-top: 77%;
|
| 416 |
-
}
|
| 417 |
-
.monthly-day-event > .monthly-indicator-wrap {
|
| 418 |
-
width:auto;
|
| 419 |
-
max-width: none;
|
| 420 |
-
}
|
| 421 |
-
.monthly-indicator-wrap {
|
| 422 |
-
padding:0;
|
| 423 |
-
}
|
| 424 |
-
.monthly-day .monthly-event-indicator {
|
| 425 |
-
display: block;
|
| 426 |
-
margin: 0 0 1px 0;
|
| 427 |
-
width: auto;
|
| 428 |
-
height:20px;
|
| 429 |
-
font-size: 10px;
|
| 430 |
-
padding: 4px;
|
| 431 |
-
border-radius:0;
|
| 432 |
-
overflow: hidden;
|
| 433 |
-
text-overflow: ellipsis;
|
| 434 |
-
color:#fff;
|
| 435 |
-
text-shadow:0 0 2px rgba(0,0,0,.2);
|
| 436 |
-
text-decoration: none;
|
| 437 |
-
line-height: 1em;
|
| 438 |
-
white-space: nowrap;
|
| 439 |
-
box-sizing: border-box;
|
| 440 |
-
}
|
| 441 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
