├── admin ├── models │ ├── forms │ │ ├── index.html │ │ └── dropdowns.xml │ ├── index.html │ └── fields │ │ └── tablenumber.php ├── tables │ ├── index.html │ ├── heads.php │ ├── dropdowns.php │ └── dropdown.php ├── template │ ├── images │ │ ├── add.png │ │ ├── cross.png │ │ ├── uparrow.png │ │ ├── downarrow.png │ │ ├── menu │ │ │ ├── export.png │ │ │ ├── import.png │ │ │ ├── dropdowns.png │ │ │ ├── etetables.png │ │ │ └── eventtableedit.png │ │ ├── title │ │ │ ├── export.png │ │ │ ├── import.png │ │ │ ├── dropdown.png │ │ │ ├── etetable.png │ │ │ ├── dropdowns.png │ │ │ └── eventtableedit.png │ │ └── index.html │ ├── index.html │ └── css │ │ └── index.html ├── index.html ├── sql │ ├── index.html │ └── uninstall.mysql.utf8.sql ├── views │ ├── index.html │ ├── csvexport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── summary.php │ ├── csvimport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ ├── summary_newtable.php │ │ │ ├── summary_appendtable.php │ │ │ ├── summary_overwritetable.php │ │ │ └── summary.php │ ├── dropdown │ │ ├── index.html │ │ └── tmpl │ │ │ └── index.html │ ├── dropdowns │ │ ├── index.html │ │ └── tmpl │ │ │ └── index.html │ ├── etetable │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── edit_metadata.php │ ├── etetables │ │ ├── index.html │ │ └── tmpl │ │ │ └── index.html │ ├── xmlexport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── summary.php │ ├── xmlimport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ ├── summary_newtable.php │ │ │ ├── summary_appendtable.php │ │ │ ├── summary_overwritetable.php │ │ │ ├── summary.php │ │ │ ├── default.php │ │ │ └── newtable.php │ ├── appointmenttable │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── edit_metadata.php │ └── appointmenttables │ │ ├── index.html │ │ └── tmpl │ │ └── index.html ├── helpers │ └── index.html ├── language │ ├── index.html │ ├── de-DE │ │ └── index.html │ └── en-GB │ │ └── index.html ├── controllers │ ├── index.html │ ├── dropdowns.php │ ├── etetables.php │ ├── appointmenttables.php │ ├── etetable.php │ ├── dropdown.php │ └── appointmenttable.php ├── config.xml ├── access.xml ├── eventtableedit.php └── controller.php ├── site ├── template │ ├── images │ │ ├── cal.png │ │ ├── cross.png │ │ ├── move.png │ │ ├── tick.png │ │ ├── filesave.png │ │ ├── csv-upload.png │ │ ├── ajax-loader.gif │ │ ├── csv-download.png │ │ ├── icon-32-apply.png │ │ ├── icon-32-new.png │ │ ├── icon-32-save.png │ │ ├── question-mark.png │ │ ├── icon-32-cancel.png │ │ ├── pagination │ │ │ ├── j_button2_last.png │ │ │ ├── j_button2_left.png │ │ │ ├── j_button2_next.png │ │ │ ├── j_button2_prev.png │ │ │ ├── j_button2_first.png │ │ │ ├── j_button2_right.png │ │ │ ├── j_button2_first_off.png │ │ │ ├── j_button2_last_off.png │ │ │ ├── j_button2_next_off.png │ │ │ └── j_button2_prev_off.png │ │ └── index.html │ ├── index.html │ ├── js │ │ ├── index.html │ │ ├── tablesaw-init.old.js │ │ └── tablesaw-init.js │ ├── css │ │ ├── index.html │ │ ├── demo.css │ │ ├── ie.css │ │ └── ie7.css │ ├── ics │ │ └── index.html │ └── tablexml │ │ └── index.html ├── helpers │ ├── bb_code │ │ ├── emoticons │ │ │ ├── aw.png │ │ │ ├── gah.png │ │ │ ├── hm.png │ │ │ ├── meh.png │ │ │ ├── mmf.png │ │ │ ├── sad.png │ │ │ ├── angry.png │ │ │ ├── cool.png │ │ │ ├── happy.png │ │ │ ├── heart.png │ │ │ ├── kiss.png │ │ │ ├── what.png │ │ │ ├── wink.png │ │ │ ├── ecstatic.png │ │ │ ├── furious.png │ │ │ └── tongue.png │ │ ├── index.html │ │ └── vendor │ │ │ ├── mjohnson │ │ │ └── decoda │ │ │ │ └── src │ │ │ │ ├── Decoda │ │ │ │ ├── Hook │ │ │ │ │ ├── EmptyHook.php │ │ │ │ │ ├── AbstractHook.php │ │ │ │ │ └── CodeHook.php │ │ │ │ ├── Exception │ │ │ │ │ ├── IoException.php │ │ │ │ │ ├── MissingHookException.php │ │ │ │ │ ├── MissingFilterException.php │ │ │ │ │ ├── MissingItemException.php │ │ │ │ │ ├── MissingLocaleException.php │ │ │ │ │ └── UnsupportedTypeException.php │ │ │ │ ├── Storage │ │ │ │ │ ├── AbstractStorage.php │ │ │ │ │ ├── MemoryStorage.php │ │ │ │ │ ├── RedisStorage.php │ │ │ │ │ └── MemcacheStorage.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractLoader.php │ │ │ │ │ ├── DataLoader.php │ │ │ │ │ └── FileLoader.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Filter │ │ │ │ │ ├── EmptyFilter.php │ │ │ │ │ ├── QuoteFilter.php │ │ │ │ │ ├── CodeFilter.php │ │ │ │ │ └── ImageFilter.php │ │ │ │ ├── Storage.php │ │ │ │ ├── Engine.php │ │ │ │ ├── Engine │ │ │ │ │ ├── PhpEngine.php │ │ │ │ │ └── AbstractEngine.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Component.php │ │ │ │ └── Hook.php │ │ │ │ ├── templates │ │ │ │ ├── code.php │ │ │ │ ├── video.php │ │ │ │ ├── quote.php │ │ │ │ └── spoiler.php │ │ │ │ └── config │ │ │ │ ├── censored.php │ │ │ │ └── emoticons.php │ │ │ ├── composer │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_static.php │ │ │ ├── LICENSE │ │ │ ├── installed.json │ │ │ └── autoload_real.php │ │ │ └── autoload.php │ ├── bb_code-- │ │ ├── emoticons │ │ │ ├── aw.png │ │ │ ├── gah.png │ │ │ ├── hm.png │ │ │ ├── meh.png │ │ │ ├── mmf.png │ │ │ ├── sad.png │ │ │ ├── angry.png │ │ │ ├── cool.png │ │ │ ├── happy.png │ │ │ ├── heart.png │ │ │ ├── kiss.png │ │ │ ├── tongue.png │ │ │ ├── what.png │ │ │ ├── wink.png │ │ │ ├── ecstatic.png │ │ │ └── furious.png │ │ ├── index.html │ │ └── vendor │ │ │ ├── mjohnson │ │ │ └── decoda │ │ │ │ └── src │ │ │ │ ├── Decoda │ │ │ │ ├── Hook │ │ │ │ │ ├── EmptyHook.php │ │ │ │ │ ├── AbstractHook.php │ │ │ │ │ └── CodeHook.php │ │ │ │ ├── Exception │ │ │ │ │ ├── IoException.php │ │ │ │ │ ├── MissingHookException.php │ │ │ │ │ ├── MissingFilterException.php │ │ │ │ │ ├── MissingItemException.php │ │ │ │ │ ├── MissingLocaleException.php │ │ │ │ │ └── UnsupportedTypeException.php │ │ │ │ ├── Storage │ │ │ │ │ ├── AbstractStorage.php │ │ │ │ │ ├── MemoryStorage.php │ │ │ │ │ ├── RedisStorage.php │ │ │ │ │ └── MemcacheStorage.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractLoader.php │ │ │ │ │ ├── DataLoader.php │ │ │ │ │ └── FileLoader.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Filter │ │ │ │ │ ├── EmptyFilter.php │ │ │ │ │ ├── QuoteFilter.php │ │ │ │ │ ├── CodeFilter.php │ │ │ │ │ └── ImageFilter.php │ │ │ │ ├── Storage.php │ │ │ │ ├── Engine.php │ │ │ │ ├── Engine │ │ │ │ │ ├── PhpEngine.php │ │ │ │ │ └── AbstractEngine.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Component.php │ │ │ │ └── Hook.php │ │ │ │ ├── templates │ │ │ │ ├── code.php │ │ │ │ ├── video.php │ │ │ │ ├── quote.php │ │ │ │ └── spoiler.php │ │ │ │ └── config │ │ │ │ ├── censored.php │ │ │ │ └── emoticons.php │ │ │ ├── composer │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_static.php │ │ │ ├── LICENSE │ │ │ ├── installed.json │ │ │ └── autoload_real.php │ │ │ └── autoload.php │ └── index.html ├── index.html ├── models │ └── index.html ├── views │ ├── index.html │ ├── csvexport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── summary.php │ ├── csvimport │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ ├── summary_newtable.php │ │ │ ├── summary_appendtable.php │ │ │ ├── summary_overwritetable.php │ │ │ └── summary.php │ ├── etetable │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ └── default.xml │ ├── appointmentform │ │ ├── index.html │ │ └── tmpl │ │ │ └── index.html │ ├── appointments │ │ ├── index.html │ │ └── tmpl │ │ │ ├── index.html │ │ │ ├── default.xml │ │ │ ├── default_table.php │ │ │ ├── default_thead.php │ │ │ └── default_filter.php │ └── changetable │ │ ├── index.html │ │ └── tmpl │ │ ├── index.html │ │ └── default.xml ├── controllers │ ├── index.html │ └── appoinments.php ├── language │ ├── index.html │ ├── de-DE │ │ └── index.html │ └── en-GB │ │ └── index.html ├── eventtableedit.php └── controller.php └── plugins └── content └── loadete ├── templates ├── index.html └── default.xml ├── language ├── de-DE │ ├── de-DE.plg_content_loadete.ini │ └── de-DE.plg_content_loadete.sys.ini └── en-GB │ ├── en-GB.plg_content_loadete.ini │ └── en-GB.plg_content_loadete.sys.ini └── loadete.xml /admin/models/forms/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/tables/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /site/template/images/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/cal.png -------------------------------------------------------------------------------- /admin/template/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/add.png -------------------------------------------------------------------------------- /site/template/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/cross.png -------------------------------------------------------------------------------- /site/template/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/move.png -------------------------------------------------------------------------------- /site/template/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/tick.png -------------------------------------------------------------------------------- /admin/template/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/cross.png -------------------------------------------------------------------------------- /admin/template/images/uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/uparrow.png -------------------------------------------------------------------------------- /site/template/images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/filesave.png -------------------------------------------------------------------------------- /admin/template/images/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/downarrow.png -------------------------------------------------------------------------------- /site/template/images/csv-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/csv-upload.png -------------------------------------------------------------------------------- /admin/template/images/menu/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/menu/export.png -------------------------------------------------------------------------------- /admin/template/images/menu/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/menu/import.png -------------------------------------------------------------------------------- /admin/template/images/title/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/export.png -------------------------------------------------------------------------------- /admin/template/images/title/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/import.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/aw.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/gah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/gah.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/hm.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/meh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/meh.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/mmf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/mmf.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/sad.png -------------------------------------------------------------------------------- /site/template/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/ajax-loader.gif -------------------------------------------------------------------------------- /site/template/images/csv-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/csv-download.png -------------------------------------------------------------------------------- /site/template/images/icon-32-apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/icon-32-apply.png -------------------------------------------------------------------------------- /site/template/images/icon-32-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/icon-32-new.png -------------------------------------------------------------------------------- /site/template/images/icon-32-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/icon-32-save.png -------------------------------------------------------------------------------- /site/template/images/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/question-mark.png -------------------------------------------------------------------------------- /admin/template/images/menu/dropdowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/menu/dropdowns.png -------------------------------------------------------------------------------- /admin/template/images/menu/etetables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/menu/etetables.png -------------------------------------------------------------------------------- /admin/template/images/title/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/dropdown.png -------------------------------------------------------------------------------- /admin/template/images/title/etetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/etetable.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/aw.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/gah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/gah.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/hm.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/meh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/meh.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/mmf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/mmf.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/sad.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/angry.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/cool.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/happy.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/heart.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/kiss.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/what.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/wink.png -------------------------------------------------------------------------------- /site/template/images/icon-32-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/icon-32-cancel.png -------------------------------------------------------------------------------- /admin/template/images/title/dropdowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/dropdowns.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/angry.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/cool.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/happy.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/heart.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/kiss.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/tongue.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/what.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/wink.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/ecstatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/ecstatic.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/furious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/furious.png -------------------------------------------------------------------------------- /site/helpers/bb_code/emoticons/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code/emoticons/tongue.png -------------------------------------------------------------------------------- /admin/template/images/menu/eventtableedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/menu/eventtableedit.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/ecstatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/ecstatic.png -------------------------------------------------------------------------------- /site/helpers/bb_code--/emoticons/furious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/helpers/bb_code--/emoticons/furious.png -------------------------------------------------------------------------------- /admin/template/images/title/eventtableedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/admin/template/images/title/eventtableedit.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_last.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_left.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_next.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_prev.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_first.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_right.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_first_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_first_off.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_last_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_last_off.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_next_off.png -------------------------------------------------------------------------------- /site/template/images/pagination/j_button2_prev_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theophilix/event-table-edit-old/HEAD/site/template/images/pagination/j_button2_prev_off.png -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/sql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/template/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/language/de-DE/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/template/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/template/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/csvexport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/csvimport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/dropdown/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/dropdowns/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/etetable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/etetables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/xmlexport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/xmlimport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/helpers/bb_code/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/language/de-DE/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/ics/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/csvexport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/csvimport/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/etetable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/csvexport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/csvimport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/dropdown/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/dropdowns/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/etetable/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/etetables/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/xmlexport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/template/tablexml/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/appointmentform/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/appointments/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/changetable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/csvexport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/csvimport/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/etetable/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/appointmenttable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/appointmenttables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/appointmentform/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/appointments/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /site/views/changetable/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/appointmenttable/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/views/appointmenttables/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/content/loadete/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/sql/uninstall.mysql.utf8.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__eventtableedit_details`; 2 | DROP TABLE IF EXISTS `#__eventtableedit_heads`; 3 | DROP TABLE IF EXISTS `#__eventtableedit_dropdowns`; 4 | DROP TABLE IF EXISTS `#__eventtableedit_dropdown`; 5 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Hook/EmptyHook.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
>
-------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Exception/MissingFilterException.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
>
-------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Exception/MissingFilterException.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/mjohnson/decoda/src'), 15 | ); 16 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/mjohnson/decoda/src'), 15 | ); 16 | -------------------------------------------------------------------------------- /site/controllers/appoinments.php: -------------------------------------------------------------------------------- 1 | array() 21 | ); 22 | 23 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Filter/EmptyFilter.php: -------------------------------------------------------------------------------- 1 | array() 21 | ); 22 | 23 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/templates/video.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/templates/video.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /site/views/changetable/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 15 | 16 | 17 |
18 |
19 |
20 | -------------------------------------------------------------------------------- /site/views/etetable/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
13 | 20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /plugins/content/loadete/templates/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
13 | 20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /site/views/appointments/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 16 | 17 | 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /site/template/js/tablesaw-init.js: -------------------------------------------------------------------------------- 1 | /*! Tablesaw - v3.1.2 - 2020-03-19 2 | * https://github.com/filamentgroup/tablesaw 3 | * Copyright (c) 2019 Filament Group; Licensed MIT */ 4 | (function(win) { 5 | "use strict"; 6 | 7 | // DOM-ready auto-init of plugins. 8 | // Many plugins bind to an "enhance" event to init themselves on dom ready, or when new markup is inserted into the DOM 9 | // Use raw DOMContentLoaded instead of shoestring (may have issues in Android 2.3, exhibited by stack table) 10 | if (!("Tablesaw" in win)) { 11 | throw new Error("Tablesaw library not found."); 12 | } 13 | if (!("init" in Tablesaw)) { 14 | throw new Error("Your tablesaw-init.js is newer than the core Tablesaw version."); 15 | } 16 | 17 | Tablesaw.init(); 18 | })(typeof window !== "undefined" ? window : this); 19 | -------------------------------------------------------------------------------- /site/template/css/demo.css: -------------------------------------------------------------------------------- 1 | 2 | @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5){ 3 | #fg-logo { 4 | background-size: 287px 52px; 5 | background-image: url(http://filamentgroup.com/images/fg-logo-icon-lrg.png); 6 | } 7 | } 8 | 9 | /* Customized Demo CSS for our Demo Tables */ 10 | .tablesaw-columntoggle td.title a, 11 | .tablesaw-swipe td.title a { 12 | display: block; 13 | white-space: nowrap; 14 | overflow: hidden; 15 | text-overflow: ellipsis; 16 | max-width: 10em; 17 | max-width: 40vw; 18 | } 19 | @media (min-width: 40em) { 20 | td.title { 21 | max-width: 12em; 22 | } 23 | .tablesaw-stack td.title a { 24 | display: block; 25 | white-space: nowrap; 26 | overflow: hidden; 27 | text-overflow: ellipsis; 28 | max-width: 10em; 29 | max-width: 40vw; 30 | } 31 | } -------------------------------------------------------------------------------- /admin/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
8 | 9 | 18 |
19 |
24 | 25 | 34 |
35 |
36 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Loader/DataLoader.php: -------------------------------------------------------------------------------- 1 | _data = $data; 28 | } 29 | 30 | /** 31 | * Load the data. 32 | * 33 | * @return array 34 | */ 35 | public function load() { 36 | return (array) $this->_data; 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Loader/DataLoader.php: -------------------------------------------------------------------------------- 1 | _data = $data; 28 | } 29 | 30 | /** 31 | * Load the data. 32 | * 33 | * @return array 34 | */ 35 | public function load() { 36 | return (array) $this->_data; 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/config/censored.php: -------------------------------------------------------------------------------- 1 | 15 | array ( 16 | 'Decoda' => 17 | array ( 18 | 0 => __DIR__ . '/..' . '/mjohnson/decoda/src', 19 | ), 20 | ), 21 | ); 22 | 23 | public static function getInitializer(ClassLoader $loader) 24 | { 25 | return \Closure::bind(function () use ($loader) { 26 | $loader->prefixesPsr0 = ComposerStaticInita27476581bb8d06eb39f1c012c2e81bf::$prefixesPsr0; 27 | 28 | }, null, ClassLoader::class); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | 16 | array ( 17 | 'Decoda' => 18 | array ( 19 | 0 => __DIR__ . '/..' . '/mjohnson/decoda/src', 20 | ), 21 | ), 22 | ); 23 | 24 | public static function getInitializer(ClassLoader $loader) 25 | { 26 | return \Closure::bind(function () use ($loader) { 27 | $loader->prefixesPsr0 = ComposerStaticInita27476581bb8d06eb39f1c012c2e81bf::$prefixesPsr0; 28 | 29 | }, null, ClassLoader::class); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /admin/controllers/dropdowns.php: -------------------------------------------------------------------------------- 1 | true]); 34 | 35 | return $model; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /admin/controllers/etetables.php: -------------------------------------------------------------------------------- 1 | true]); 34 | 35 | return $model; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /admin/controllers/appointmenttables.php: -------------------------------------------------------------------------------- 1 | true]); 34 | 35 | return $model; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /site/template/css/ie.css: -------------------------------------------------------------------------------- 1 | /* 2 | * $Id: $ 3 | * @copyright (C) 2007 - 2020 Manuel Kaspar and Theophilix 4 | * @license GNU/GPL, see LICENSE.php in the installation package 5 | * This file is part of Event Table Edit 6 | * 7 | * Event Table Edit is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation, either version 3 of the License, or 10 | * (at your option) any later version. 11 | 12 | * Event Table Edit is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | 17 | * You should have received a copy of the GNU General Public License 18 | * along with Event Table Edit. If not, see . 19 | */ 20 | 21 | div.calendar { 22 | margin-top: 324px; 23 | margin-left: 407px; 24 | } 25 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/templates/quote.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 17 | 18 | getFilter()->message('quoteBy', array( 19 | 'author' => $this->escape($author) 20 | )); ?> 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 |
29 | 30 |
31 |
-------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/templates/quote.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 17 | 18 | getFilter()->message('quoteBy', array( 19 | 'author' => $this->escape($author) 20 | )); ?> 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 |
29 | 30 |
31 |
-------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Storage.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_content_loadete 4 | Manuel Kaspar and Theophilix 5 | 15-06-2020 6 | 2007 - 2020 Manuel Kaspar and Theophilix 7 | GNU/GPL 8 | webmaster@eventtableedit.com 9 | http://www.eventtableedit.com 10 | 1.0.0 11 | PLG_LOADETE_XML_DESCRIPTION 12 | 13 | loadete.php 14 | phpToJs.php 15 | popup.php 16 | tableAjax.php 17 | templates 18 | 19 | 20 | en-GB/en-GB.plg_content_loadete.ini 21 | en-GB/en-GB.plg_content_loadete.sys.ini 22 | de-DE/de-DE.plg_content_loadete.ini 23 | de-DE/de-DE.plg_content_loadete.sys.ini 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /site/template/css/ie7.css: -------------------------------------------------------------------------------- 1 | /* 2 | * $Id: $ 3 | * @copyright (C) 2007 - 2020 Manuel Kaspar and Theophilix 4 | * @license GNU/GPL, see LICENSE.php in the installation package 5 | * This file is part of Event Table Edit 6 | * 7 | * Event Table Edit is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU General Public License as published by 9 | * the Free Software Foundation, either version 3 of the License, or 10 | * (at your option) any later version. 11 | 12 | * Event Table Edit is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU General Public License for more details. 16 | 17 | * You should have received a copy of the GNU General Public License 18 | * along with Event Table Edit. If not, see . 19 | */ 20 | 21 | .etetable-filter .hasTip { 22 | margin-top: -12px; 23 | } 24 | 25 | .etetable-button { 26 | margin-top: -16px; 27 | } 28 | 29 | #etetable-buttons { 30 | width: 200px; 31 | } 32 | 33 | #changetable-toolbar li { 34 | width: 60px; 35 | } 36 | 37 | div.calendar { 38 | margin-top: 0px; 39 | margin-left: 0px; 40 | } 41 | -------------------------------------------------------------------------------- /admin/views/csvimport/tmpl/summary_newtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | ?> 26 | 27 | 28 | 29 |
30 |

-------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/summary_newtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | ?> 26 | 27 | 28 | 29 |
30 |

-------------------------------------------------------------------------------- /site/views/csvimport/tmpl/summary_newtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | ?> 26 | 27 | 28 | 29 |
30 |

-------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Filter/QuoteFilter.php: -------------------------------------------------------------------------------- 1 | 'M jS Y, H:i:s' 23 | ); 24 | 25 | /** 26 | * Supported tags. 27 | * 28 | * @type array 29 | */ 30 | protected $_tags = array( 31 | 'quote' => array( 32 | 'template' => 'quote', 33 | 'displayType' => Decoda::TYPE_BLOCK, 34 | 'allowedTypes' => Decoda::TYPE_BOTH, 35 | 'attributes' => array( 36 | 'default' => self::WILDCARD, 37 | 'date' => self::WILDCARD 38 | ), 39 | 'mapAttributes' => array( 40 | 'default' => 'author' 41 | ), 42 | 'maxChildDepth' => 2, 43 | 'persistContent' => false, 44 | 'stripContent' => true 45 | ) 46 | ); 47 | 48 | } -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Filter/QuoteFilter.php: -------------------------------------------------------------------------------- 1 | 'M jS Y, H:i:s' 23 | ); 24 | 25 | /** 26 | * Supported tags. 27 | * 28 | * @type array 29 | */ 30 | protected $_tags = array( 31 | 'quote' => array( 32 | 'template' => 'quote', 33 | 'displayType' => Decoda::TYPE_BLOCK, 34 | 'allowedTypes' => Decoda::TYPE_BOTH, 35 | 'attributes' => array( 36 | 'default' => self::WILDCARD, 37 | 'date' => self::WILDCARD 38 | ), 39 | 'mapAttributes' => array( 40 | 'default' => 'author' 41 | ), 42 | 'maxChildDepth' => 2, 43 | 'persistContent' => false, 44 | 'stripContent' => true 45 | ) 46 | ); 47 | 48 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/config/emoticons.php: -------------------------------------------------------------------------------- 1 | array('>(', '>:(', '>[', '>:[', ':angry:'), 13 | 'aw' => array(':aw:'), 14 | 'cool' => array('8)', '8]', ':cool:'), 15 | 'ecstatic' => array(':D', '8D', ':ecstatic:'), 16 | 'furious' => array('>:D', '><', ':furious:'), 17 | 'gah' => array('D:', ':O', ':gah:'), 18 | 'happy' => array(':)', ':]', ':happy:'), 19 | 'heart' => array('<3', ':heart:'), 20 | 'hm' => array(':/', ':\\', ':hm:'), 21 | 'kiss' => array(':3', ':kiss:'), 22 | 'meh' => array(':|', '-.-', '<_<', '>_>', ':meh:'), 23 | 'mmf' => array(':x', ':X', ':mmf:'), 24 | 'sad' => array(':(', ':[', ';(', ';[', ':\'(', ':\'[', ';\'(', ';\'[', ':sad:'), 25 | 'tongue' => array(':P', ':p', ':tongue:'), 26 | 'what' => array(':o', ':?', ':what:'), 27 | 'wink' => array(';)', ';]', ';D', ':wink:'), 28 | ); -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/config/emoticons.php: -------------------------------------------------------------------------------- 1 | array('>(', '>:(', '>[', '>:[', ':angry:'), 13 | 'aw' => array(':aw:'), 14 | 'cool' => array('8)', '8]', ':cool:'), 15 | 'ecstatic' => array(':D', '8D', ':ecstatic:'), 16 | 'furious' => array('>:D', '><', ':furious:'), 17 | 'gah' => array('D:', ':O', ':gah:'), 18 | 'happy' => array(':)', ':]', ':happy:'), 19 | 'heart' => array('<3', ':heart:'), 20 | 'hm' => array(':/', ':\\', ':hm:'), 21 | 'kiss' => array(':3', ':kiss:'), 22 | 'meh' => array(':|', '-.-', '<_<', '>_>', ':meh:'), 23 | 'mmf' => array(':x', ':X', ':mmf:'), 24 | 'sad' => array(':(', ':[', ';(', ';[', ':\'(', ':\'[', ';\'(', ';\'[', ':sad:'), 25 | 'tongue' => array(':P', ':p', ':tongue:'), 26 | 'what' => array(':o', ':?', ':what:'), 27 | 'wink' => array(';)', ';]', ';D', ':wink:'), 28 | ); -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Storage/MemoryStorage.php: -------------------------------------------------------------------------------- 1 | has($key)) { 28 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 29 | } 30 | 31 | return $this->_cache[$key]; 32 | } 33 | 34 | /** 35 | * {@inheritdoc} 36 | */ 37 | public function has($key) { 38 | return isset($this->_cache[$key]); 39 | } 40 | 41 | /** 42 | * {@inheritdoc} 43 | */ 44 | public function remove($key) { 45 | unset($this->_cache[$key]); 46 | 47 | return true; 48 | } 49 | 50 | /** 51 | * {@inheritdoc} 52 | */ 53 | public function set($key, $value, $expires) { 54 | $this->_cache[$key] = $value; 55 | 56 | return true; 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Storage/MemoryStorage.php: -------------------------------------------------------------------------------- 1 | has($key)) { 28 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 29 | } 30 | 31 | return $this->_cache[$key]; 32 | } 33 | 34 | /** 35 | * {@inheritdoc} 36 | */ 37 | public function has($key) { 38 | return isset($this->_cache[$key]); 39 | } 40 | 41 | /** 42 | * {@inheritdoc} 43 | */ 44 | public function remove($key) { 45 | unset($this->_cache[$key]); 46 | 47 | return true; 48 | } 49 | 50 | /** 51 | * {@inheritdoc} 52 | */ 53 | public function set($key, $value, $expires) { 54 | $this->_cache[$key] = $value; 55 | 56 | return true; 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /admin/tables/dropdown.php: -------------------------------------------------------------------------------- 1 | name)) { 31 | $this->setError(JText::_('COM_EVENTTABLEEDIT_WARNING_PROVIDE_VALID_NAME')); 32 | return false; 33 | } 34 | /** check for existing name */ 35 | $query = 'SELECT id FROM #__eventtableedit_dropdown '. 36 | ' WHERE name = '.$this->_db->Quote($this->name); 37 | $this->_db->setQuery($query); 38 | 39 | $xid = intval($this->_db->loadResult()); 40 | if ($xid && $xid !== intval($this->id)) { 41 | $this->setError(JText::_('COM_EVENTTABLEEDIT_ERROR_SAME_NAME')); 42 | return false; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /admin/models/forms/dropdowns.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 13 | 14 | 22 | 23 | 32 | 34 | 36 | 38 | 40 | 41 | 42 | 43 | 49 | 50 | 54 | 55 | 59 |
60 |
61 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Engine.php: -------------------------------------------------------------------------------- 1 | getFilter()->getTag($tag['tag']); 23 | $attributes = $tag['attributes']; 24 | 25 | // Dashes aren't allowed in variables, so change to underscores 26 | foreach ($attributes as $key => $value) { 27 | $attributes[str_replace('-', '_', $key)] = $value; 28 | } 29 | 30 | foreach ($this->getPaths() as $path) { 31 | $template = sprintf('%s%s.php', $path, $setup['template']); 32 | 33 | if (file_exists($template)) { 34 | extract($attributes, EXTR_OVERWRITE); 35 | ob_start(); 36 | 37 | include $template; 38 | 39 | return trim(ob_get_clean()); 40 | } 41 | } 42 | 43 | throw new IoException(sprintf('Template file %s does not exist', $setup['template'])); 44 | } 45 | 46 | } -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Engine.php: -------------------------------------------------------------------------------- 1 | getFilter()->getTag($tag['tag']); 23 | $attributes = $tag['attributes']; 24 | 25 | // Dashes aren't allowed in variables, so change to underscores 26 | foreach ($attributes as $key => $value) { 27 | $attributes[str_replace('-', '_', $key)] = $value; 28 | } 29 | 30 | foreach ($this->getPaths() as $path) { 31 | $template = sprintf('%s%s.php', $path, $setup['template']); 32 | 33 | if (file_exists($template)) { 34 | extract($attributes, EXTR_OVERWRITE); 35 | ob_start(); 36 | 37 | include $template; 38 | 39 | return trim(ob_get_clean()); 40 | } 41 | } 42 | 43 | throw new IoException(sprintf('Template file %s does not exist', $setup['template'])); 44 | } 45 | 46 | } -------------------------------------------------------------------------------- /admin/views/appointmenttable/tmpl/edit_metadata.php: -------------------------------------------------------------------------------- 1 | form->getFieldsets('metadata'); 13 | 14 | foreach ($fieldSets as $name => $fieldSet) : 15 | // echo JHtml::_('sliders.panel',JText::_($fieldSet->label), $name.'-options'); 16 | if (isset($fieldSet->description) && trim($fieldSet->description)) : 17 | echo '

'.$this->escape(JText::_($fieldSet->description)).'

'; 18 | endif; 19 | ?> 20 |
21 |
    22 | 23 |
  • form->getLabel('metadesc'); ?> 24 | form->getInput('metadesc'); ?>
  • 25 | 26 |
  • form->getLabel('metakey'); ?> 27 | form->getInput('metakey'); ?>
  • 28 | 29 | 31 | 32 | form->getFieldset($name) as $field) : ?> 33 |
  • label; ?> 34 | input; ?>
  • 35 | 36 |
37 |
38 | -------------------------------------------------------------------------------- /admin/models/fields/tablenumber.php: -------------------------------------------------------------------------------- 1 | setQuery($query); 24 | 25 | $products = $db->loadObjectList(); 26 | $i = 1; 27 | $list = []; 28 | $list[0]['value'] = ''; 29 | $list[0]['text'] = 'Select table'; 30 | 31 | foreach ($products as $product) { 32 | $list[$i]['value'] = $product->id; 33 | $list[$i]['text'] = $product->name; 34 | ++$i; 35 | } 36 | 37 | $key = ($this->element['key_field'] ? $this->element['key_field'] : 'value'); 38 | $val = ($this->element['value_field'] ? $this->element['value_field'] : $this->name); 39 | 40 | return JHtml::_('select.genericlist', $list, $this->name, 'class="inputbox" ', 'value', 'text', $this->value, $this->id); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/templates/spoiler.php: -------------------------------------------------------------------------------- 1 | 7 | getFilter(); 10 | $show = $filter->message('spoiler') . ' (' . $filter->message('show') . ')'; 11 | $hide = $filter->message('spoiler') . ' (' . $filter->message('hide') . ')'; ?> 12 | 13 | 28 | 29 |
30 | 39 | 40 | 43 |
44 | -------------------------------------------------------------------------------- /admin/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
-------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/templates/spoiler.php: -------------------------------------------------------------------------------- 1 | 7 | getFilter(); 10 | $show = $filter->message('spoiler') . ' (' . $filter->message('show') . ')'; 11 | $hide = $filter->message('spoiler') . ' (' . $filter->message('hide') . ')'; ?> 12 | 13 | 28 | 29 |
30 | 39 | 40 | 43 |
44 | -------------------------------------------------------------------------------- /admin/eventtableedit.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | if (!defined('DS')) { 26 | define('DS', DIRECTORY_SEPARATOR); 27 | } 28 | // Access check. 29 | if (!JFactory::getUser()->authorise('core.manage', 'com_eventtableedit')) { 30 | return JFactory::getApplication()->enqueueMessage(JText::_('JERROR_ALERTNOAUTHOR'), 'warning'); 31 | } 32 | 33 | // Include dependancies 34 | jimport('joomla.application.component.controller'); 35 | $input = JFactory::getApplication()->input; 36 | 37 | $controller = JControllerLegacy::getInstance('eventtableedit'); 38 | $controller->execute($input->get('task')); 39 | $controller->redirect(); 40 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Filter.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/summary_appendtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /site/views/csvimport/tmpl/summary_appendtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /admin/views/csvimport/tmpl/summary_overwritetable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/summary_overwritetable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /site/views/csvimport/tmpl/summary_overwritetable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 | 29 | 30 | getUserState('com_eventtableedit.csvError', true)) :?> 31 |
32 |

33 | 34 |
35 |

36 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Hook/AbstractHook.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | defined('_JEXEC') or die; 23 | header('Content-Type: text/html; charset=utf-8'); 24 | header('Expires: Mon, 10 Jan 1970 01:01:01 GMT'); 25 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 26 | header('Cache-Control: no-store, no-cache, must-revalidate'); 27 | header('Pragma: no-cache'); 28 | if (!defined('DS')) { 29 | define('DS', DIRECTORY_SEPARATOR); 30 | } 31 | $docHTML = JFactory::getDocument(); 32 | $docHTML->setHtml5(true); 33 | jimport('joomla.application.component.controller'); 34 | $input = JFactory::getApplication()->input; 35 | 36 | $controller = JControllerLegacy::getInstance('eventtableedit'); 37 | $controller->execute($input->get('task')); 38 | $controller->redirect(); 39 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Engine/AbstractEngine.php: -------------------------------------------------------------------------------- 1 | _paths[] = $path; 41 | 42 | return $this; 43 | } 44 | 45 | /** 46 | * Escape HTML characters and entities. 47 | * 48 | * @param string $string 49 | * @return string 50 | */ 51 | public function escape($string) { 52 | return $this->getParser()->escape($string); 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function getFilter() { 59 | return $this->_filter; 60 | } 61 | 62 | /** 63 | * {@inheritdoc} 64 | */ 65 | public function getPaths() { 66 | return $this->_paths; 67 | } 68 | 69 | /** 70 | * {@inheritdoc} 71 | */ 72 | public function setFilter(Filter $filter) { 73 | $this->_filter = $filter; 74 | 75 | return $this; 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Engine/AbstractEngine.php: -------------------------------------------------------------------------------- 1 | _paths[] = $path; 41 | 42 | return $this; 43 | } 44 | 45 | /** 46 | * Escape HTML characters and entities. 47 | * 48 | * @param string $string 49 | * @return string 50 | */ 51 | public function escape($string) { 52 | return $this->getParser()->escape($string); 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function getFilter() { 59 | return $this->_filter; 60 | } 61 | 62 | /** 63 | * {@inheritdoc} 64 | */ 65 | public function getPaths() { 66 | return $this->_paths; 67 | } 68 | 69 | /** 70 | * {@inheritdoc} 71 | */ 72 | public function setFilter(Filter $filter) { 73 | $this->_filter = $filter; 74 | 75 | return $this; 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /admin/views/etetable/tmpl/edit_metadata.php: -------------------------------------------------------------------------------- 1 | form->getFieldsets('metadata'); 13 | 14 | foreach ($fieldSets as $name => $fieldSet) : 15 | // echo JHtml::_('sliders.panel',JText::_($fieldSet->label), $name.'-options'); 16 | if (isset($fieldSet->description) && trim($fieldSet->description)) : 17 | echo '

'.$this->escape(JText::_($fieldSet->description)).'

'; 18 | endif; 19 | ?> 20 |
21 |
    22 | 23 |
  • 24 |
    form->getLabel('metadesc'); ?>
    25 |
    form->getInput('metadesc'); ?>
    26 |
  • 27 | 28 |
  • 29 |
    form->getLabel('metakey'); ?>
    30 |
    form->getInput('metakey'); ?>
    31 |
  • 32 | 33 | 37 | 38 | form->getFieldset($name) as $field) : ?> 39 |
  • 40 |
    label; ?>
    41 |
    input; ?>
    42 |
  • 43 | 44 |
45 |
46 | -------------------------------------------------------------------------------- /site/views/appointments/tmpl/default_table.php: -------------------------------------------------------------------------------- 1 | input; 13 | $postget = $main->getArray(); 14 | //echo "
";print_r($postget);die;
15 | $switcher_enable = 'columntoggle';
16 | if (@$postget['currentmode']) {
17 |     $tmodes = $postget['currentmode'];
18 | } elseif (@$postget[$this->item->alias.'change_mode']) {
19 |     $tmodes = $postget[$this->item->alias.'change_mode'];
20 | } else {
21 |     $tmodes = ($this->item->standardlayout) ? $this->item->standardlayout : $switcher_enable;
22 | }
23 | ?>
24 | 
28 | 
29 | 
30 | 	
31 | 		
32 | 			loadTemplate('thead'); ?>
33 | 		
34 | 	
35 | 
36 | 	
37 | 	rows) {
42 |         for ($this->rowCount = 0; $this->rowCount < count($this->rows); ++$this->rowCount) { ?>
43 | 			
44 | 				loadTemplate('row'); ?> 
45 | 			
46 | 			
47 | 			
50 | 	
51 | 
52 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Component.php: -------------------------------------------------------------------------------- 1 | _redis = $redis; 31 | } 32 | 33 | /** 34 | * {@inheritdoc} 35 | */ 36 | public function get($key) { 37 | $value = $this->getRedis()->get($key); 38 | 39 | if ($value === false) { 40 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 41 | } 42 | 43 | return $value; 44 | } 45 | 46 | /** 47 | * Return the Redis instance. 48 | * 49 | * @return \Redis 50 | */ 51 | public function getRedis() { 52 | return $this->_redis; 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function has($key) { 59 | return $this->getRedis()->exists($key); 60 | } 61 | 62 | /** 63 | * {@inheritdoc} 64 | */ 65 | public function remove($key) { 66 | return (bool) $this->getRedis()->delete($key); 67 | } 68 | 69 | /** 70 | * {@inheritdoc} 71 | */ 72 | public function set($key, $value, $expires) { 73 | return $this->getRedis()->setex($key, (int) $expires - time(), $value); // Redis is TTL 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Component.php: -------------------------------------------------------------------------------- 1 | _redis = $redis; 31 | } 32 | 33 | /** 34 | * {@inheritdoc} 35 | */ 36 | public function get($key) { 37 | $value = $this->getRedis()->get($key); 38 | 39 | if ($value === false) { 40 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 41 | } 42 | 43 | return $value; 44 | } 45 | 46 | /** 47 | * Return the Redis instance. 48 | * 49 | * @return \Redis 50 | */ 51 | public function getRedis() { 52 | return $this->_redis; 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function has($key) { 59 | return $this->getRedis()->exists($key); 60 | } 61 | 62 | /** 63 | * {@inheritdoc} 64 | */ 65 | public function remove($key) { 66 | return (bool) $this->getRedis()->delete($key); 67 | } 68 | 69 | /** 70 | * {@inheritdoc} 71 | */ 72 | public function set($key, $value, $expires) { 73 | return $this->getRedis()->setex($key, (int) $expires - time(), $value); // Redis is TTL 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Loader/FileLoader.php: -------------------------------------------------------------------------------- 1 | _path = $path; 36 | } 37 | 38 | /** 39 | * Load the resources contents. 40 | * 41 | * @return array 42 | * @throws \Decoda\Exception\UnsupportedTypeException 43 | */ 44 | public function load() { 45 | $ext = mb_strtolower(pathinfo($this->_path, PATHINFO_EXTENSION)); 46 | 47 | switch ($ext) { 48 | case 'php': 49 | return include $this->_path; 50 | break; 51 | case 'json': 52 | return json_decode(file_get_contents($this->_path), true); 53 | break; 54 | case 'ini': 55 | return parse_ini_file($this->_path, true); 56 | break; 57 | case 'txt': 58 | return file($this->_path, FILE_IGNORE_NEW_LINES); 59 | break; 60 | } 61 | 62 | throw new UnsupportedTypeException(sprintf('Unsupported FileLoader file type %s', $ext)); 63 | } 64 | 65 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Loader/FileLoader.php: -------------------------------------------------------------------------------- 1 | _path = $path; 36 | } 37 | 38 | /** 39 | * Load the resources contents. 40 | * 41 | * @return array 42 | * @throws \Decoda\Exception\UnsupportedTypeException 43 | */ 44 | public function load() { 45 | $ext = mb_strtolower(pathinfo($this->_path, PATHINFO_EXTENSION)); 46 | 47 | switch ($ext) { 48 | case 'php': 49 | return include $this->_path; 50 | break; 51 | case 'json': 52 | return json_decode(file_get_contents($this->_path), true); 53 | break; 54 | case 'ini': 55 | return parse_ini_file($this->_path, true); 56 | break; 57 | case 'txt': 58 | return file($this->_path, FILE_IGNORE_NEW_LINES); 59 | break; 60 | } 61 | 62 | throw new UnsupportedTypeException(sprintf('Unsupported FileLoader file type %s', $ext)); 63 | } 64 | 65 | } -------------------------------------------------------------------------------- /site/views/csvimport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 |
29 |
30 |
31 | getUserState('com_eventtableedit.importAction', 'newTable')) { 33 | case 'newTable': 34 | echo $this->loadTemplate('newtable'); 35 | break; 36 | case 'overwriteTable': 37 | echo $this->loadTemplate('overwritetable'); 38 | break; 39 | case 'appendTable': 40 | echo $this->loadTemplate('appendtable'); 41 | break; 42 | } 43 | 44 | ?> 45 |
46 |
47 | 48 | 49 | 50 |
51 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "mjohnson/decoda", 4 | "version": "6.12.0", 5 | "version_normalized": "6.12.0.0", 6 | "source": { 7 | "type": "git", 8 | "url": "https://github.com/milesj/decoda.git", 9 | "reference": "9817fd5abbd742384f59831d8a5953b01803b45d" 10 | }, 11 | "dist": { 12 | "type": "zip", 13 | "url": "https://api.github.com/repos/milesj/decoda/zipball/9817fd5abbd742384f59831d8a5953b01803b45d", 14 | "reference": "9817fd5abbd742384f59831d8a5953b01803b45d", 15 | "shasum": "" 16 | }, 17 | "require": { 18 | "ext-mbstring": "*", 19 | "php": ">=5.3.0" 20 | }, 21 | "require-dev": { 22 | "phpunit/phpunit": "~4.8|^7.5" 23 | }, 24 | "suggest": { 25 | "ext-memcached": "Cache data using Memcache", 26 | "ext-redis": "Cache data using Redis" 27 | }, 28 | "time": "2019-01-16T04:52:14+00:00", 29 | "type": "library", 30 | "installation-source": "dist", 31 | "autoload": { 32 | "psr-0": { 33 | "Decoda": "src/" 34 | } 35 | }, 36 | "notification-url": "https://packagist.org/downloads/", 37 | "license": [ 38 | "MIT" 39 | ], 40 | "authors": [ 41 | { 42 | "name": "Miles Johnson", 43 | "homepage": "http://milesj.me" 44 | } 45 | ], 46 | "description": "A lightweight lexical string parser for BBCode styled markup.", 47 | "homepage": "http://milesj.me/code/php/decoda", 48 | "keywords": [ 49 | "HOOK", 50 | "bbcode", 51 | "decoda", 52 | "filter", 53 | "lexer", 54 | "markup", 55 | "parser" 56 | ] 57 | } 58 | ] 59 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "mjohnson/decoda", 4 | "version": "6.12.0", 5 | "version_normalized": "6.12.0.0", 6 | "source": { 7 | "type": "git", 8 | "url": "https://github.com/milesj/decoda.git", 9 | "reference": "9817fd5abbd742384f59831d8a5953b01803b45d" 10 | }, 11 | "dist": { 12 | "type": "zip", 13 | "url": "https://api.github.com/repos/milesj/decoda/zipball/9817fd5abbd742384f59831d8a5953b01803b45d", 14 | "reference": "9817fd5abbd742384f59831d8a5953b01803b45d", 15 | "shasum": "" 16 | }, 17 | "require": { 18 | "ext-mbstring": "*", 19 | "php": ">=5.3.0" 20 | }, 21 | "require-dev": { 22 | "phpunit/phpunit": "~4.8|^7.5" 23 | }, 24 | "suggest": { 25 | "ext-memcached": "Cache data using Memcache", 26 | "ext-redis": "Cache data using Redis" 27 | }, 28 | "time": "2019-01-16T04:52:14+00:00", 29 | "type": "library", 30 | "installation-source": "dist", 31 | "autoload": { 32 | "psr-0": { 33 | "Decoda": "src/" 34 | } 35 | }, 36 | "notification-url": "https://packagist.org/downloads/", 37 | "license": [ 38 | "MIT" 39 | ], 40 | "authors": [ 41 | { 42 | "name": "Miles Johnson", 43 | "homepage": "http://milesj.me" 44 | } 45 | ], 46 | "description": "A lightweight lexical string parser for BBCode styled markup.", 47 | "homepage": "http://milesj.me/code/php/decoda", 48 | "keywords": [ 49 | "HOOK", 50 | "bbcode", 51 | "decoda", 52 | "filter", 53 | "lexer", 54 | "markup", 55 | "parser" 56 | ] 57 | } 58 | ] 59 | -------------------------------------------------------------------------------- /admin/controllers/etetable.php: -------------------------------------------------------------------------------- 1 | get('id'); 56 | 57 | // Check general edit permission first. 58 | if ($user->authorise('core.edit', $this->option)) { 59 | return true; 60 | } 61 | 62 | // Since there is no asset tracking, revert to the component permissions. 63 | return parent::allowEdit($data, $key); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Hook.php: -------------------------------------------------------------------------------- 1 | get('id'); 57 | 58 | // Check general edit permission first. 59 | if ($user->authorise('core.edit', $this->option)) { 60 | return true; 61 | } 62 | 63 | // Since there is no asset tracking, revert to the component permissions. 64 | return parent::allowEdit($data, $key); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Filter/CodeFilter.php: -------------------------------------------------------------------------------- 1 | 'lang-', 24 | 'highlightAttribute' => 'data-line' 25 | ); 26 | 27 | /** 28 | * Supported tags. 29 | * 30 | * @type array 31 | */ 32 | protected $_tags = array( 33 | 'code' => array( 34 | 'template' => 'code', 35 | 'displayType' => Decoda::TYPE_BLOCK, 36 | 'allowedTypes' => Decoda::TYPE_BOTH, 37 | 'lineBreaks' => Decoda::NL_PRESERVE, 38 | 'preserveTags' => true, 39 | 'attributes' => array( 40 | 'default' => self::ALPHA, 41 | 'hl' => self::NUMERIC 42 | ), 43 | 'mapAttributes' => array( 44 | 'default' => 'lang' 45 | ), 46 | 'stripContent' => true 47 | ), 48 | 'source' => array( 49 | 'htmlTag' => 'code', 50 | 'displayType' => Decoda::TYPE_INLINE, 51 | 'allowedTypes' => Decoda::TYPE_INLINE 52 | ), 53 | 'var' => array( 54 | 'htmlTag' => 'var', 55 | 'displayType' => Decoda::TYPE_INLINE, 56 | 'allowedTypes' => Decoda::TYPE_INLINE 57 | ) 58 | ); 59 | 60 | /** 61 | * Add any hook dependencies. 62 | * 63 | * @param \Decoda\Decoda $decoda 64 | * @return \Decoda\Filter\CodeFilter 65 | */ 66 | public function setupHooks(Decoda $decoda) { 67 | $decoda->addHook(new CodeHook()); 68 | 69 | return $this; 70 | } 71 | 72 | } -------------------------------------------------------------------------------- /admin/controllers/appointmenttable.php: -------------------------------------------------------------------------------- 1 | get('id'); 56 | 57 | // Check general edit permission first. 58 | if ($user->authorise('core.edit', $this->option)) { 59 | return true; 60 | } 61 | 62 | // Since there is no asset tracking, revert to the component permissions. 63 | return parent::allowEdit($data, $key); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Filter/CodeFilter.php: -------------------------------------------------------------------------------- 1 | 'lang-', 24 | 'highlightAttribute' => 'data-line' 25 | ); 26 | 27 | /** 28 | * Supported tags. 29 | * 30 | * @type array 31 | */ 32 | protected $_tags = array( 33 | 'code' => array( 34 | 'template' => 'code', 35 | 'displayType' => Decoda::TYPE_BLOCK, 36 | 'allowedTypes' => Decoda::TYPE_BOTH, 37 | 'lineBreaks' => Decoda::NL_PRESERVE, 38 | 'preserveTags' => true, 39 | 'attributes' => array( 40 | 'default' => self::ALPHA, 41 | 'hl' => self::NUMERIC 42 | ), 43 | 'mapAttributes' => array( 44 | 'default' => 'lang' 45 | ), 46 | 'stripContent' => true 47 | ), 48 | 'source' => array( 49 | 'htmlTag' => 'code', 50 | 'displayType' => Decoda::TYPE_INLINE, 51 | 'allowedTypes' => Decoda::TYPE_INLINE 52 | ), 53 | 'var' => array( 54 | 'htmlTag' => 'var', 55 | 'displayType' => Decoda::TYPE_INLINE, 56 | 'allowedTypes' => Decoda::TYPE_INLINE 57 | ) 58 | ); 59 | 60 | /** 61 | * Add any hook dependencies. 62 | * 63 | * @param \Decoda\Decoda $decoda 64 | * @return \Decoda\Filter\CodeFilter 65 | */ 66 | public function setupHooks(Decoda $decoda) { 67 | $decoda->addHook(new CodeHook()); 68 | 69 | return $this; 70 | } 71 | 72 | } -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Storage/MemcacheStorage.php: -------------------------------------------------------------------------------- 1 | _memcache = $memcache; 31 | } 32 | 33 | /** 34 | * {@inheritdoc} 35 | */ 36 | public function get($key) { 37 | $value = $this->getMemcache()->get($key); 38 | 39 | if ($value === false && $this->getMemcache()->getResultCode() === Memcached::RES_NOTFOUND) { 40 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 41 | } 42 | 43 | return $value; 44 | } 45 | 46 | /** 47 | * Return the Memcached instance. 48 | * 49 | * @return \Memcached 50 | */ 51 | public function getMemcache() { 52 | return $this->_memcache; 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function has($key) { 59 | return ( 60 | $this->getMemcache()->get($key) && 61 | $this->getMemcache()->getResultCode() === Memcached::RES_SUCCESS 62 | ); 63 | } 64 | 65 | /** 66 | * {@inheritdoc} 67 | */ 68 | public function remove($key) { 69 | return $this->getMemcache()->delete($key); 70 | } 71 | 72 | /** 73 | * {@inheritdoc} 74 | */ 75 | public function set($key, $value, $expires) { 76 | return $this->getMemcache()->set($key, $value, (int) $expires); 77 | } 78 | 79 | } 80 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Storage/MemcacheStorage.php: -------------------------------------------------------------------------------- 1 | _memcache = $memcache; 31 | } 32 | 33 | /** 34 | * {@inheritdoc} 35 | */ 36 | public function get($key) { 37 | $value = $this->getMemcache()->get($key); 38 | 39 | if ($value === false && $this->getMemcache()->getResultCode() === Memcached::RES_NOTFOUND) { 40 | throw new MissingItemException(sprintf('Item with key %s does not exist', $key)); 41 | } 42 | 43 | return $value; 44 | } 45 | 46 | /** 47 | * Return the Memcached instance. 48 | * 49 | * @return \Memcached 50 | */ 51 | public function getMemcache() { 52 | return $this->_memcache; 53 | } 54 | 55 | /** 56 | * {@inheritdoc} 57 | */ 58 | public function has($key) { 59 | return ( 60 | $this->getMemcache()->get($key) && 61 | $this->getMemcache()->getResultCode() === Memcached::RES_SUCCESS 62 | ); 63 | } 64 | 65 | /** 66 | * {@inheritdoc} 67 | */ 68 | public function remove($key) { 69 | return $this->getMemcache()->delete($key); 70 | } 71 | 72 | /** 73 | * {@inheritdoc} 74 | */ 75 | public function set($key, $value, $expires) { 76 | return $this->getMemcache()->set($key, $value, (int) $expires); 77 | } 78 | 79 | } 80 | -------------------------------------------------------------------------------- /admin/views/csvexport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | 26 | $app = JFactory::getApplication(); 27 | $id = $app->input->get('tableList'); 28 | $file = 'csv_'.$id.'.csv'; 29 | 30 | $this->csvFile = str_replace('csvcsv', '
', $this->csvFile); 31 | $pf = fopen(JPATH_ROOT.'/components/com_eventtableedit/template/tablexml/'.$file, 'w'); 32 | if (!$pf) { 33 | echo "Cannot create $file!".NL; 34 | return; 35 | } 36 | fwrite($pf, $this->csvFile); 37 | fclose($pf); 38 | ?> 39 | 40 |
41 |
42 |
43 | 44 | 45 | 46 | 47 | 48 |
49 |
50 | 51 | 52 | 53 | 54 |
55 | -------------------------------------------------------------------------------- /admin/controller.php: -------------------------------------------------------------------------------- 1 | input; 39 | $view = $input->get('view', 'etetables'); 40 | if ('eventtableedit' === $view) { 41 | $view = 'etetables'; 42 | } 43 | 44 | // Load the submenu. 45 | eteHelper::addSubmenu($view); 46 | 47 | $layout = $input->get('layout'); 48 | $id = $input->get('id'); 49 | 50 | // Check for edit form. 51 | if ('etetable' === $view && 'edit' === $layout && !$this->checkEditId('com_eventtableedit.edit.etetable', $id)) { 52 | // Somehow the person just went to the form - we don't allow that. 53 | $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id)); 54 | $this->setMessage($this->getError(), 'error'); 55 | $this->setRedirect(JRoute::_('index.php?option=com_eventtableedit&view=etetables', false)); 56 | 57 | return false; 58 | } 59 | 60 | parent::display(); 61 | 62 | return $this; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /site/views/appointments/tmpl/default_thead.php: -------------------------------------------------------------------------------- 1 | item->show_first_row) :?> 16 | # 17 | 18 | 19 | heads) > 6) { 26 | $cont = round(count($this->heads) / 12); 27 | } elseif (count($this->heads) > 3 && count($this->heads) < 6) { 28 | $cont = round(count($this->heads) / 6); 29 | } else { 30 | $cont = 1; 31 | } 32 | $j = 0; 33 | $ars = 0; 34 | foreach ($this->heads as $head) { 35 | if (0 === (int)$thcount) { 36 | $priority = 'persist'; 37 | $classofdynamic = ''; 38 | } else { 39 | $priority = $thcount; 40 | $classofdynamic = 'tablesaw-priority-'.$priority; 41 | } 42 | 43 | if ('' === $classofdynamic) { 44 | $myclass = $thcount; 45 | } else { 46 | $myclass = $thcount.' '.$classofdynamic; 47 | } 48 | // add weekday in first row (head) // 49 | if (1 === (int)$this->item->normalorappointment && 0 !== (int)$ars) { 50 | if (1 === (int)$this->item->showdayname) { 51 | $namesofday = strtoupper(date('l', strtotime(str_replace('.', '-', trim($head->name))))); 52 | $datesofhead = JTEXT::_('COM_EVENTTABLEEDIT_'.strtoupper($namesofday)).', '.$head->name; 53 | } else { 54 | $datesofhead = $head->name; 55 | } 56 | } else { 57 | $datesofhead = trim($head->name); 58 | } 59 | // END add weekday in first row (head) // ?> 60 | 61 | 70 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | = 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 32 | if ($useStaticLoader) { 33 | require_once __DIR__ . '/autoload_static.php'; 34 | 35 | call_user_func(\Composer\Autoload\ComposerStaticInita27476581bb8d06eb39f1c012c2e81bf::getInitializer($loader)); 36 | } else { 37 | $map = require __DIR__ . '/autoload_namespaces.php'; 38 | foreach ($map as $namespace => $path) { 39 | $loader->set($namespace, $path); 40 | } 41 | 42 | $map = require __DIR__ . '/autoload_psr4.php'; 43 | foreach ($map as $namespace => $path) { 44 | $loader->setPsr4($namespace, $path); 45 | } 46 | 47 | $classMap = require __DIR__ . '/autoload_classmap.php'; 48 | if ($classMap) { 49 | $loader->addClassMap($classMap); 50 | } 51 | } 52 | 53 | $loader->register(true); 54 | 55 | return $loader; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | = 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 32 | if ($useStaticLoader) { 33 | require_once __DIR__ . '/autoload_static.php'; 34 | 35 | call_user_func(\Composer\Autoload\ComposerStaticInita27476581bb8d06eb39f1c012c2e81bf::getInitializer($loader)); 36 | } else { 37 | $map = require __DIR__ . '/autoload_namespaces.php'; 38 | foreach ($map as $namespace => $path) { 39 | $loader->set($namespace, $path); 40 | } 41 | 42 | $map = require __DIR__ . '/autoload_psr4.php'; 43 | foreach ($map as $namespace => $path) { 44 | $loader->setPsr4($namespace, $path); 45 | } 46 | 47 | $classMap = require __DIR__ . '/autoload_classmap.php'; 48 | if ($classMap) { 49 | $loader->addClassMap($classMap); 50 | } 51 | } 52 | 53 | $loader->register(true); 54 | 55 | return $loader; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /site/controller.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die('Restricted access'); 25 | jimport('joomla.application.component.controller'); 26 | 27 | class EventtableeditController extends JControllerLegacy 28 | { 29 | public function __construct() 30 | { 31 | parent::__construct(); 32 | } 33 | 34 | public function display($cachable = false, $urlparams = false) 35 | { 36 | $cachable = true; 37 | 38 | // Get the document object. 39 | $document = JFactory::getDocument(); 40 | 41 | // Set the default view name and format from the Request. 42 | $main = JFactory::getApplication()->input; 43 | $vName = $main->get('view', ''); 44 | $main->get('view', $vName); 45 | 46 | $user = JFactory::getUser(); 47 | 48 | $safeurlparams = ['id' => 'INT', 'cid' => 'ARRAY', 'limit' => 'INT', 'limitstart' => 'INT', 49 | 'filter' => 'STRING', 'print' => 'BOOLEAN', 'lang' => 'CMD', 'filterstring' => 'STRING', 50 | 'filter_order' => 'STRING', 'filter_order_Dir' => 'STRING', ]; 51 | 52 | parent::display($cachable, $safeurlparams); 53 | 54 | return $this; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /admin/views/xmlexport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | 26 | $app = JFactory::getApplication(); 27 | $id = $app->input->get('tableList'); 28 | $xmlexporttimestamp = $app->input->get('xmlexporttimestamp'); 29 | $this->model = $this->getModel('xmlexport'); 30 | $name = $this->model->getTabledata($id); 31 | $name = str_replace(' ', '_', $name->name); 32 | $file = JPATH_ROOT.'/components/com_eventtableedit/template/tablexml/'.$name.'_'.$id.'.xml'; 33 | 34 | ?> 35 | 36 |
37 |
38 |
39 | 40 | 41 | 42 | 43 | 44 |
45 |
46 | 47 | 48 | 49 | 50 |
51 | -------------------------------------------------------------------------------- /site/views/csvexport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | 26 | $app = JFactory::getApplication(); 27 | $id = $app->input->get('tableList'); 28 | $file = 'csv_'.$id.'.csv'; 29 | 30 | $this->csvFile = str_replace('csvcsv', '
', $this->csvFile); 31 | $pf = fopen(JPATH_ROOT.'/components/com_eventtableedit/template/tablexml/'.$file, 'w'); 32 | if (!$pf) { 33 | echo "Cannot create $file!".NL; 34 | return; 35 | } 36 | fwrite($pf, $this->csvFile); 37 | fclose($pf); 38 | ?> 39 | 40 |
41 |
42 |
43 | 44 | 45 | 46 | 47 | 48 |
49 |
50 | 53 | 54 | 55 | 56 |
57 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Hook/CodeHook.php: -------------------------------------------------------------------------------- 1 | _cache = array(); 30 | 31 | return preg_replace_callback('/\[code(.*?)\](((?R)|.)*?)\[\/code\]/is', array($this, '_en_codeCallback'), $string); 32 | } 33 | 34 | /** 35 | * Retrieve code blocks after parsing. 36 | * 37 | * @param string $string 38 | * @return mixed 39 | */ 40 | public function afterParse($string) { 41 | $string = preg_replace_callback('/\(\$\$CODE(\d+)\$\$)<\/code>\<\/pre>/is', array($this, '_de_codeCallback'), $string); 42 | 43 | $this->_cache = array(); 44 | 45 | return $string; 46 | } 47 | 48 | /** 49 | * Encode content using base64. 50 | * 51 | * @param array $matches 52 | * @return string 53 | */ 54 | protected function _en_codeCallback(array $matches) { 55 | $cacheSize = count($this->_cache); 56 | $this->_cache[$cacheSize] = $matches[2]; 57 | 58 | return '[code' . $matches[1] . ']$$CODE' . $cacheSize . '$$[/code]'; 59 | } 60 | 61 | /** 62 | * Decode content using base64. 63 | * 64 | * @param array $matches 65 | * @return string 66 | */ 67 | protected function _de_codeCallback(array $matches) { 68 | return '' . $this->_cache[$matches[3]] . '
'; 69 | } 70 | 71 | } 72 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Hook/CodeHook.php: -------------------------------------------------------------------------------- 1 | _cache = array(); 30 | 31 | return preg_replace_callback('/\[code(.*?)\](((?R)|.)*?)\[\/code\]/is', array($this, '_en_codeCallback'), $string); 32 | } 33 | 34 | /** 35 | * Retrieve code blocks after parsing. 36 | * 37 | * @param string $string 38 | * @return mixed 39 | */ 40 | public function afterParse($string) { 41 | $string = preg_replace_callback('/\(\$\$CODE(\d+)\$\$)<\/code>\<\/pre>/is', array($this, '_de_codeCallback'), $string); 42 | 43 | $this->_cache = array(); 44 | 45 | return $string; 46 | } 47 | 48 | /** 49 | * Encode content using base64. 50 | * 51 | * @param array $matches 52 | * @return string 53 | */ 54 | protected function _en_codeCallback(array $matches) { 55 | $cacheSize = count($this->_cache); 56 | $this->_cache[$cacheSize] = $matches[2]; 57 | 58 | return '[code' . $matches[1] . ']$$CODE' . $cacheSize . '$$[/code]'; 59 | } 60 | 61 | /** 62 | * Decode content using base64. 63 | * 64 | * @param array $matches 65 | * @return string 66 | */ 67 | protected function _de_codeCallback(array $matches) { 68 | return '' . $this->_cache[$matches[3]] . ''; 69 | } 70 | 71 | } 72 | -------------------------------------------------------------------------------- /admin/views/csvimport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 |
29 |
30 |
31 | getUserState('com_eventtableedit.importAction', 'newTable')) { 33 | case 'newTable': 34 | echo $this->loadTemplate('newtable'); 35 | break; 36 | case 'overwriteTable': 37 | echo $this->loadTemplate('overwritetable'); 38 | break; 39 | case 'appendTable': 40 | echo $this->loadTemplate('appendtable'); 41 | break; 42 | } 43 | 44 | if (!$app->getUserState('com_eventtableedit.csvError', true)) : ?> 45 | 46 |

47 | 48 | 49 | 50 | 51 |

52 | 53 |
54 |
55 | 56 | 57 | 58 |
59 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/summary.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | $app = JFactory::getApplication(); 26 | ?> 27 | 28 |
29 |
30 |
31 | getUserState('com_eventtableedit.importAction', 'newTable')) { 33 | case 'newTable': 34 | echo $this->loadTemplate('newtable'); 35 | break; 36 | case 'overwriteTable': 37 | echo $this->loadTemplate('overwritetable'); 38 | break; 39 | case 'appendTable': 40 | echo $this->loadTemplate('appendtable'); 41 | break; 42 | } 43 | 44 | if (!$app->getUserState('com_eventtableedit.csvError', true)) : ?> 45 | 46 |

47 | 48 | 49 | 50 | 51 |

52 | 53 |
54 |
55 | 56 | 57 | 58 |
59 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/default.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | JHtml::_('behavior.tooltip'); 26 | JHtml::_('bootstrap.popover'); 27 | JHtml::_('behavior.formvalidation'); 28 | ?> 29 | 30 |
31 |
32 |
33 | 34 | 35 | 36 |
    37 | 45 |
  • 46 | 47 | 48 |
  • 49 | 50 | 51 | 52 | 53 |
54 |
55 |
56 | 57 | 58 | 59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /site/helpers/bb_code--/vendor/mjohnson/decoda/src/Decoda/Filter/ImageFilter.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'htmlTag' => 'img', 31 | 'displayType' => Decoda::TYPE_INLINE, 32 | 'allowedTypes' => Decoda::TYPE_NONE, 33 | 'contentPattern' => self::IMAGE_PATTERN, 34 | 'autoClose' => true, 35 | 'attributes' => array( 36 | 'default' => self::WIDTH_HEIGHT, 37 | 'width' => self::DIMENSION, 38 | 'height' => self::DIMENSION, 39 | 'alt' => self::WILDCARD 40 | ), 41 | 'htmlAttributes' => array( 42 | 'class' => 'decoda-image' 43 | ) 44 | ), 45 | 'image' => array( 46 | 'aliasFor' => 'img' 47 | ) 48 | ); 49 | 50 | /** 51 | * Use the content as the image source. 52 | * 53 | * @param array $tag 54 | * @param string $content 55 | * @return string 56 | */ 57 | public function parse(array $tag, $content) { 58 | 59 | // If more than 1 http:// is found in the string, possible XSS attack 60 | if ((mb_substr_count($content, 'http://') + mb_substr_count($content, 'https://')) > 1) { 61 | return null; 62 | } 63 | 64 | $tag['attributes']['src'] = $content; 65 | 66 | if (!empty($tag['attributes']['default'])) { 67 | list($width, $height) = explode('x', $tag['attributes']['default']); 68 | 69 | $tag['attributes']['width'] = $width; 70 | $tag['attributes']['height'] = $height; 71 | } 72 | 73 | if (empty($tag['attributes']['alt'])) { 74 | $tag['attributes']['alt'] = ''; 75 | } 76 | 77 | return parent::parse($tag, $content); 78 | } 79 | 80 | } 81 | -------------------------------------------------------------------------------- /site/helpers/bb_code/vendor/mjohnson/decoda/src/Decoda/Filter/ImageFilter.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'htmlTag' => 'img', 31 | 'displayType' => Decoda::TYPE_INLINE, 32 | 'allowedTypes' => Decoda::TYPE_NONE, 33 | 'contentPattern' => self::IMAGE_PATTERN, 34 | 'autoClose' => true, 35 | 'attributes' => array( 36 | 'default' => self::WIDTH_HEIGHT, 37 | 'width' => self::DIMENSION, 38 | 'height' => self::DIMENSION, 39 | 'alt' => self::WILDCARD 40 | ), 41 | 'htmlAttributes' => array( 42 | 'class' => 'decoda-image' 43 | ) 44 | ), 45 | 'image' => array( 46 | 'aliasFor' => 'img' 47 | ) 48 | ); 49 | 50 | /** 51 | * Use the content as the image source. 52 | * 53 | * @param array $tag 54 | * @param string $content 55 | * @return string 56 | */ 57 | public function parse(array $tag, $content) { 58 | 59 | // If more than 1 http:// is found in the string, possible XSS attack 60 | if ((mb_substr_count($content, 'http://') + mb_substr_count($content, 'https://')) > 1) { 61 | return null; 62 | } 63 | 64 | $tag['attributes']['src'] = $content; 65 | 66 | if (!empty($tag['attributes']['default'])) { 67 | list($width, $height) = explode('x', $tag['attributes']['default']); 68 | 69 | $tag['attributes']['width'] = $width; 70 | $tag['attributes']['height'] = $height; 71 | } 72 | 73 | if (empty($tag['attributes']['alt'])) { 74 | $tag['attributes']['alt'] = ''; 75 | } 76 | 77 | return parent::parse($tag, $content); 78 | } 79 | 80 | } 81 | -------------------------------------------------------------------------------- /admin/views/xmlimport/tmpl/newtable.php: -------------------------------------------------------------------------------- 1 | . 21 | */ 22 | 23 | // no direct access 24 | defined('_JEXEC') or die; 25 | ?> 26 | 27 | 45 | 46 |
47 |
48 |
49 | 50 |
    51 |
  • 52 | 53 | 54 |
  • 55 |
56 | 57 | headLine); ++$a) :?> 58 | 59 | 60 | 61 | 62 | 63 |
headLine[$a]; ?>listDatatypes; ?>
64 |
65 |
66 | 67 | 68 |
-------------------------------------------------------------------------------- /site/views/appointments/tmpl/default_filter.php: -------------------------------------------------------------------------------- 1 | item->standardlayout) ? $this->item->standardlayout : $switcher_enable; 16 | } 17 | ?> 18 | 19 |
20 | 21 | 22 | 23 | 24 | params->get('filterstring'); 26 | if ($this->additional['containsDate']) : 27 | echo JHTML::calendar($filterstring, 'filterstring', 'filterstring', '%Y-%m-%d', ['class' => 'filterstring', 'size' => '20', 'maxlength' => '100']); 28 | else : ?> 29 | 30 | 31 | 32 |   33 | 34 |
35 | 36 | 37 | 38 |
39 | 40 |
41 | 42 | 43 | 44 |
45 | 46 |   47 | 48 |
49 | 50 | --------------------------------------------------------------------------------