├── .gitignore ├── LICENSE ├── README.md ├── backup_restore.php ├── errors.txt ├── index.php ├── install.php ├── pcc ├── data │ ├── commands │ │ ├── smartphone │ │ │ ├── acp │ │ │ │ ├── acppage.class.php │ │ │ │ ├── backup │ │ │ │ │ ├── deletebackupaction.class.php │ │ │ │ │ ├── listbackupspage.class.php │ │ │ │ │ ├── loadbackupaction.class.php │ │ │ │ │ ├── makebackupaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── listbackups.html │ │ │ │ ├── database │ │ │ │ │ ├── databasepage.class.php │ │ │ │ │ ├── dumpdatabaseaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── database.html │ │ │ │ ├── infopage.class.php │ │ │ │ ├── settingsformpage.class.php │ │ │ │ ├── templates │ │ │ │ │ ├── acpinfo.html │ │ │ │ │ ├── acppage.html │ │ │ │ │ └── settingsform.html │ │ │ │ └── user │ │ │ │ │ ├── addgroupformpage.class.php │ │ │ │ │ ├── adduserformpage.class.php │ │ │ │ │ ├── deletegroupaction.class.php │ │ │ │ │ ├── deleteuseraction.class.php │ │ │ │ │ ├── editgroupformpage.class.php │ │ │ │ │ ├── edituserformpage.class.php │ │ │ │ │ ├── listgroupspage.class.php │ │ │ │ │ ├── listuserspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ ├── addgroupform.html │ │ │ │ │ ├── adduserform.html │ │ │ │ │ ├── editgroupform.html │ │ │ │ │ ├── edituserform.html │ │ │ │ │ ├── groupslist.html │ │ │ │ │ └── userlist.html │ │ │ ├── datapage.class.php │ │ │ ├── fbcalllistpage.class.php │ │ │ ├── fbsmarthomepage.class.php │ │ │ ├── fbstatepage.class.php │ │ │ ├── indexpage.class.php │ │ │ ├── login │ │ │ │ ├── loginajax.class.php │ │ │ │ └── logoutaction.class.php │ │ │ ├── statepage.class.php │ │ │ ├── statesyncajax.class.php │ │ │ └── templates │ │ │ │ ├── data.html │ │ │ │ ├── fbcalllist.html │ │ │ │ ├── fbsmarthome.html │ │ │ │ ├── fbstate.html │ │ │ │ ├── indexpage.html │ │ │ │ └── state.html │ │ └── web │ │ │ ├── acp │ │ │ ├── acppage.class.php │ │ │ ├── backup │ │ │ │ ├── deletebackupaction.class.php │ │ │ │ ├── listbackupspage.class.php │ │ │ │ ├── loadbackupaction.class.php │ │ │ │ ├── makebackupaction.class.php │ │ │ │ └── templates │ │ │ │ │ └── listbackups.html │ │ │ ├── database │ │ │ │ ├── databasepage.class.php │ │ │ │ ├── dumpdatabaseaction.class.php │ │ │ │ └── templates │ │ │ │ │ └── database.html │ │ │ ├── infopage.class.php │ │ │ ├── settingsformpage.class.php │ │ │ ├── templates │ │ │ │ ├── acpinfo.html │ │ │ │ ├── acppage.html │ │ │ │ └── settings.html │ │ │ └── user │ │ │ │ ├── addgroupformpage.class.php │ │ │ │ ├── adduserformpage.class.php │ │ │ │ ├── deletegroupaction.class.php │ │ │ │ ├── deleteuseraction.class.php │ │ │ │ ├── editgroupformpage.class.php │ │ │ │ ├── edituserformpage.class.php │ │ │ │ ├── listgroupspage.class.php │ │ │ │ ├── listuserspage.class.php │ │ │ │ └── templates │ │ │ │ ├── groupform.html │ │ │ │ ├── grouplist.html │ │ │ │ ├── userform.html │ │ │ │ └── userlist.html │ │ │ ├── dataajax.class.php │ │ │ ├── datasyncajax.class.php │ │ │ ├── fbcalllistajax.class.php │ │ │ ├── fbsmarthomeajax.class.php │ │ │ ├── fbstateajax.class.php │ │ │ ├── indexpage.class.php │ │ │ ├── login │ │ │ ├── loginajax.class.php │ │ │ └── logoutaction.class.php │ │ │ ├── stateajax.class.php │ │ │ ├── statesyncajax.class.php │ │ │ └── templates │ │ │ ├── data.html │ │ │ ├── fbcalllist.html │ │ │ ├── fbsmarthome.html │ │ │ ├── fbstate.html │ │ │ ├── indexpage.html │ │ │ └── state.html │ ├── lang │ │ ├── de │ │ │ ├── acp │ │ │ │ ├── acpindex.lang.php │ │ │ │ ├── acpinfo.lang.php │ │ │ │ ├── backupsmanagement.lang.php │ │ │ │ ├── database.lang.php │ │ │ │ ├── settings.lang.php │ │ │ │ └── usermanagement.lang.php │ │ │ ├── form.lang.php │ │ │ ├── global.lang.php │ │ │ └── index.lang.php │ │ └── en │ │ │ ├── acp │ │ │ ├── acpindex.lang.php │ │ │ ├── acpinfo.lang.php │ │ │ ├── backupsmanagement.lang.php │ │ │ ├── database.lang.php │ │ │ ├── settings.lang.php │ │ │ └── usermanagement.lang.php │ │ │ ├── form.lang.php │ │ │ ├── global.lang.php │ │ │ └── index.lang.php │ ├── storage │ │ └── default │ │ │ └── .gitignore │ └── templates │ │ ├── smartphone │ │ └── mobileHeadlineIndex.html │ │ └── web │ │ └── headline.html ├── global.php ├── inc │ ├── img │ │ ├── acpmenue │ │ │ ├── backup.png │ │ │ ├── database.png │ │ │ ├── info.png │ │ │ ├── settings.png │ │ │ └── usermanagement.png │ │ ├── buttons │ │ │ ├── add.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── editlist.png │ │ │ ├── not_active.png │ │ │ ├── reboot.png │ │ │ ├── remove.png │ │ │ ├── run.png │ │ │ ├── shutdown.png │ │ │ └── stop.png │ │ ├── icons │ │ │ ├── bootTime.png │ │ │ ├── call_type_1.png │ │ │ ├── call_type_10.png │ │ │ ├── call_type_11.png │ │ │ ├── call_type_2.png │ │ │ ├── call_type_3.png │ │ │ ├── call_type_9.png │ │ │ ├── clock.png │ │ │ ├── core.png │ │ │ ├── coreAvg.png │ │ │ ├── coreClock.png │ │ │ ├── coreFeatures.png │ │ │ ├── coreTemp.png │ │ │ ├── firmware.png │ │ │ ├── hostname.png │ │ │ ├── kernel.png │ │ │ ├── memory.png │ │ │ ├── os.png │ │ │ ├── overcklock.png │ │ │ ├── ramSplit.png │ │ │ ├── revision.png │ │ │ ├── serial.png │ │ │ ├── swap.png │ │ │ ├── uptime.png │ │ │ ├── usbCurrent.png │ │ │ └── video.png │ │ ├── pcc-icon.png │ │ ├── pcc-logo.png │ │ ├── pcc-message-error.png │ │ ├── pcc-message-info.png │ │ ├── pcc-message-successfully.png │ │ └── pcc-message-warning.png │ └── style │ │ ├── mobile │ │ ├── all │ │ │ └── 9-icons.css │ │ └── default │ │ │ ├── 1-jquery_mobile.css │ │ │ ├── 2-form.css │ │ │ ├── 3-style.css │ │ │ └── images │ │ │ ├── ajax-loader.gif │ │ │ ├── icons-png │ │ │ ├── action-black.png │ │ │ ├── action-white.png │ │ │ ├── alert-black.png │ │ │ ├── alert-white.png │ │ │ ├── arrow-d-black.png │ │ │ ├── arrow-d-l-black.png │ │ │ ├── arrow-d-l-white.png │ │ │ ├── arrow-d-r-black.png │ │ │ ├── arrow-d-r-white.png │ │ │ ├── arrow-d-white.png │ │ │ ├── arrow-l-black.png │ │ │ ├── arrow-l-white.png │ │ │ ├── arrow-r-black.png │ │ │ ├── arrow-r-white.png │ │ │ ├── arrow-u-black.png │ │ │ ├── arrow-u-l-black.png │ │ │ ├── arrow-u-l-white.png │ │ │ ├── arrow-u-r-black.png │ │ │ ├── arrow-u-r-white.png │ │ │ ├── arrow-u-white.png │ │ │ ├── audio-black.png │ │ │ ├── audio-white.png │ │ │ ├── back-black.png │ │ │ ├── back-white.png │ │ │ ├── bars-black.png │ │ │ ├── bars-white.png │ │ │ ├── bullets-black.png │ │ │ ├── bullets-white.png │ │ │ ├── calendar-black.png │ │ │ ├── calendar-white.png │ │ │ ├── camera-black.png │ │ │ ├── camera-white.png │ │ │ ├── carat-d-black.png │ │ │ ├── carat-d-white.png │ │ │ ├── carat-l-black.png │ │ │ ├── carat-l-white.png │ │ │ ├── carat-r-black.png │ │ │ ├── carat-r-white.png │ │ │ ├── carat-u-black.png │ │ │ ├── carat-u-white.png │ │ │ ├── check-black.png │ │ │ ├── check-white.png │ │ │ ├── clock-black.png │ │ │ ├── clock-white.png │ │ │ ├── cloud-black.png │ │ │ ├── cloud-white.png │ │ │ ├── comment-black.png │ │ │ ├── comment-white.png │ │ │ ├── delete-black.png │ │ │ ├── delete-white.png │ │ │ ├── edit-black.png │ │ │ ├── edit-white.png │ │ │ ├── eye-black.png │ │ │ ├── eye-white.png │ │ │ ├── forbidden-black.png │ │ │ ├── forbidden-white.png │ │ │ ├── forward-black.png │ │ │ ├── forward-white.png │ │ │ ├── gear-black.png │ │ │ ├── gear-white.png │ │ │ ├── grid-black.png │ │ │ ├── grid-white.png │ │ │ ├── heart-black.png │ │ │ ├── heart-white.png │ │ │ ├── home-black.png │ │ │ ├── home-white.png │ │ │ ├── info-black.png │ │ │ ├── info-white.png │ │ │ ├── location-black.png │ │ │ ├── location-white.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── mail-black.png │ │ │ ├── mail-white.png │ │ │ ├── minus-black.png │ │ │ ├── minus-white.png │ │ │ ├── navigation-black.png │ │ │ ├── navigation-white.png │ │ │ ├── phone-black.png │ │ │ ├── phone-white.png │ │ │ ├── plus-black.png │ │ │ ├── plus-white.png │ │ │ ├── power-black.png │ │ │ ├── power-white.png │ │ │ ├── recycle-black.png │ │ │ ├── recycle-white.png │ │ │ ├── refresh-black.png │ │ │ ├── refresh-white.png │ │ │ ├── search-black.png │ │ │ ├── search-white.png │ │ │ ├── shop-black.png │ │ │ ├── shop-white.png │ │ │ ├── star-black.png │ │ │ ├── star-white.png │ │ │ ├── tag-black.png │ │ │ ├── tag-white.png │ │ │ ├── user-black.png │ │ │ ├── user-white.png │ │ │ ├── video-black.png │ │ │ └── video-white.png │ │ │ └── icons-svg │ │ │ ├── action-black.svg │ │ │ ├── action-white.svg │ │ │ ├── alert-black.svg │ │ │ ├── alert-white.svg │ │ │ ├── arrow-d-black.svg │ │ │ ├── arrow-d-l-black.svg │ │ │ ├── arrow-d-l-white.svg │ │ │ ├── arrow-d-r-black.svg │ │ │ ├── arrow-d-r-white.svg │ │ │ ├── arrow-d-white.svg │ │ │ ├── arrow-l-black.svg │ │ │ ├── arrow-l-white.svg │ │ │ ├── arrow-r-black.svg │ │ │ ├── arrow-r-white.svg │ │ │ ├── arrow-u-black.svg │ │ │ ├── arrow-u-l-black.svg │ │ │ ├── arrow-u-l-white.svg │ │ │ ├── arrow-u-r-black.svg │ │ │ ├── arrow-u-r-white.svg │ │ │ ├── arrow-u-white.svg │ │ │ ├── audio-black.svg │ │ │ ├── audio-white.svg │ │ │ ├── back-black.svg │ │ │ ├── back-white.svg │ │ │ ├── bars-black.svg │ │ │ ├── bars-white.svg │ │ │ ├── bullets-black.svg │ │ │ ├── bullets-white.svg │ │ │ ├── calendar-black.svg │ │ │ ├── calendar-white.svg │ │ │ ├── camera-black.svg │ │ │ ├── camera-white.svg │ │ │ ├── carat-d-black.svg │ │ │ ├── carat-d-white.svg │ │ │ ├── carat-l-black.svg │ │ │ ├── carat-l-white.svg │ │ │ ├── carat-r-black.svg │ │ │ ├── carat-r-white.svg │ │ │ ├── carat-u-black.svg │ │ │ ├── carat-u-white.svg │ │ │ ├── check-black.svg │ │ │ ├── check-white.svg │ │ │ ├── clock-black.svg │ │ │ ├── clock-white.svg │ │ │ ├── cloud-black.svg │ │ │ ├── cloud-white.svg │ │ │ ├── comment-black.svg │ │ │ ├── comment-white.svg │ │ │ ├── delete-black.svg │ │ │ ├── delete-white.svg │ │ │ ├── edit-black.svg │ │ │ ├── edit-white.svg │ │ │ ├── eye-black.svg │ │ │ ├── eye-white.svg │ │ │ ├── forbidden-black.svg │ │ │ ├── forbidden-white.svg │ │ │ ├── forward-black.svg │ │ │ ├── forward-white.svg │ │ │ ├── gear-black.svg │ │ │ ├── gear-white.svg │ │ │ ├── grid-black.svg │ │ │ ├── grid-white.svg │ │ │ ├── heart-black.svg │ │ │ ├── heart-white.svg │ │ │ ├── home-black.svg │ │ │ ├── home-white.svg │ │ │ ├── info-black.svg │ │ │ ├── info-white.svg │ │ │ ├── location-black.svg │ │ │ ├── location-white.svg │ │ │ ├── lock-black.svg │ │ │ ├── lock-white.svg │ │ │ ├── mail-black.svg │ │ │ ├── mail-white.svg │ │ │ ├── minus-black.svg │ │ │ ├── minus-white.svg │ │ │ ├── navigation-black.svg │ │ │ ├── navigation-white.svg │ │ │ ├── phone-black.svg │ │ │ ├── phone-white.svg │ │ │ ├── plus-black.svg │ │ │ ├── plus-white.svg │ │ │ ├── power-black.svg │ │ │ ├── power-white.svg │ │ │ ├── recycle-black.svg │ │ │ ├── recycle-white.svg │ │ │ ├── refresh-black.svg │ │ │ ├── refresh-white.svg │ │ │ ├── search-black.svg │ │ │ ├── search-white.svg │ │ │ ├── shop-black.svg │ │ │ ├── shop-white.svg │ │ │ ├── star-black.svg │ │ │ ├── star-white.svg │ │ │ ├── tag-black.svg │ │ │ ├── tag-white.svg │ │ │ ├── user-black.svg │ │ │ ├── user-white.svg │ │ │ ├── video-black.svg │ │ │ └── video-white.svg │ │ └── web │ │ ├── all │ │ └── 9-icons.css │ │ ├── blitzer │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ ├── ui-icons_004276_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── dark_hive │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── flick │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_666666_256x240.png │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── redmond │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── ui_darkness │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── ui_lightness │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png └── lib │ ├── core │ └── pcc.class.php │ ├── form │ ├── formelements │ │ ├── languagechooser.class.php │ │ ├── usergroupchooser.class.php │ │ ├── usermaingroupchooser.class.php │ │ └── webstylechooser.class.php │ └── forms │ │ ├── settingsform.class.php │ │ ├── userform.class.php │ │ └── usergroupform.class.php │ └── template │ └── plugin │ ├── acpbuttoncompilerplugin.class.php │ ├── acpmenuitemcompilerplugin.class.php │ ├── contentboxcompilerblockplugin.class.php │ ├── deletelinkcompilerplugin.class.php │ ├── editlinkcompilerplugin.class.php │ └── editlistcompilerplugin.class.php ├── rwf ├── data │ ├── backup │ │ └── .gitignore │ ├── cache │ │ └── .gitignore │ ├── log │ │ └── .gitignore │ └── storage │ │ └── .gitignore ├── global.php ├── inc │ └── style │ │ ├── mobile │ │ ├── all │ │ │ ├── 1-jquery.js │ │ │ └── 2-jquery_mobile.js │ │ └── default │ │ │ └── .empty │ │ └── web │ │ ├── all │ │ ├── 1-jquery.js │ │ ├── 2-jquery_ui.js │ │ └── 3-jquery_cookie.js │ │ ├── blitzer │ │ └── .empty │ │ ├── dark_hive │ │ └── .empty │ │ ├── flick │ │ └── .empty │ │ ├── redmond │ │ └── .empty │ │ ├── ui_darkness │ │ └── .empty │ │ └── ui_lightness │ │ └── .empty └── lib │ ├── avm │ ├── fritzbox.class.php │ ├── fritzboxcalllist.class.php │ ├── fritzboxdevice.class.php │ ├── fritzboxfactory.class.php │ ├── fritzboxhosts.class.php │ ├── fritzboxphone.class.php │ ├── fritzboxsmarthome.class.php │ ├── fritzboxwan.class.php │ └── fritzboxwlan.class.php │ ├── backup │ ├── backup.class.php │ └── backupeditor.class.php │ ├── benchmark │ └── benchmark.class.php │ ├── classloader │ ├── classloader.class.php │ └── exception │ │ └── classnotfoundexception.class.php │ ├── core │ └── rwf.class.php │ ├── database │ ├── nosql │ │ └── redis.class.php │ └── sql │ │ ├── database.class.php │ │ ├── databaseeditor.class.php │ │ └── drivers │ │ └── mysqldatabase.class.php │ ├── date │ ├── calendar │ │ ├── calendar.class.php │ │ └── holidays │ │ │ └── germanholidays.class.php │ ├── datetime.class.php │ └── languagedatetime.class.php │ ├── edimax │ ├── sp1101w.class.php │ └── sp2101w.class.php │ ├── error │ └── error.class.php │ ├── exception │ ├── accessdeniedexception.class.php │ └── jsonexception.class.php │ ├── external │ ├── mobile_detect │ │ └── Mobile_Detect.php │ └── password │ │ └── password.php │ ├── form │ ├── abstractform.class.php │ ├── abstractformelement.class.php │ ├── defaulthtmlform.class.php │ ├── form.class.php │ ├── formelement.class.php │ ├── formelements │ │ ├── checkboxes.class.php │ │ ├── datechooser.class.php │ │ ├── daterangechooser.class.php │ │ ├── floatinputfield.class.php │ │ ├── integerinputfield.class.php │ │ ├── onoffoption.class.php │ │ ├── passwordfield.class.php │ │ ├── radiobuttons.class.php │ │ ├── select.class.php │ │ ├── selectmultiple.class.php │ │ ├── selectmultiplewithemptyelement.class.php │ │ ├── selectwithemptyelement.class.php │ │ ├── slider.class.php │ │ ├── textarea.class.php │ │ └── textfield.class.php │ └── tabbedhtmlform.class.php │ ├── html │ └── abstracthtmlelement.class.php │ ├── io │ ├── socket.class.php │ ├── socketserver.class.php │ ├── socketserverclient.class.php │ ├── udpsocket.class.php │ └── udpsocketserver.class.php │ ├── language │ └── language.class.php │ ├── request │ ├── abstractcommand.class.php │ ├── clirequest.class.php │ ├── cliresponse.class.php │ ├── command.class.php │ ├── commands │ │ ├── actioncommand.class.php │ │ ├── ajaxcommand.class.php │ │ ├── clicommand.class.php │ │ ├── pagecommand.class.php │ │ └── synccommand.class.php │ ├── cookie.class.php │ ├── file.class.php │ ├── httprequest.class.php │ ├── httpresponse.class.php │ ├── request.class.php │ ├── requesthandler.class.php │ ├── response.class.php │ └── sseresponse.class.php │ ├── runtime │ ├── raspberrypi.class.php │ └── runtime.class.php │ ├── session │ ├── login.class.php │ └── session.class.php │ ├── settings │ └── settings.class.php │ ├── style │ ├── style.class.php │ └── styleeditor.class.php │ ├── template │ ├── exception │ │ ├── templatecompilationexception.class.php │ │ ├── templatecompilerexception.class.php │ │ └── templateexception.class.php │ ├── plugin │ │ ├── datefunction.class.php │ │ ├── datetimefunction.class.php │ │ ├── filesizebinaryfunction.class.php │ │ ├── filesizefunction.class.php │ │ ├── ifsettingcompilerblockplugin.class.php │ │ ├── instanceofcompilerblockplugin.class.php │ │ ├── langcompilerplugin.class.php │ │ ├── langfunction.class.php │ │ ├── loadlangmodulcompilerplugin.class.php │ │ ├── premissioncompilerblockplugin.class.php │ │ ├── secondsfunction.class.php │ │ ├── settingcompilerplugin.class.php │ │ ├── srciptprefilter.class.php │ │ ├── timefunction.class.php │ │ └── timelinefunction.class.php │ ├── template.class.php │ ├── templateblockplugin.class.php │ ├── templatecompiler.class.php │ ├── templatecompilerblockplugin.class.php │ ├── templatecompilerplugin.class.php │ ├── templatefunction.class.php │ ├── templatepostfilter.class.php │ └── templateprefilter.class.php │ ├── user │ ├── guest.class.php │ ├── user.class.php │ ├── usereditor.class.php │ ├── usergroup.class.php │ └── visitor.class.php │ ├── util │ ├── arrayutil.class.php │ ├── cliutil.class.php │ ├── datatypeutil.class.php │ ├── fileutil.class.php │ ├── json.class.php │ ├── message.class.php │ ├── stringutils.class.php │ └── timeutil.class.php │ └── xml │ ├── exception │ └── xmlexception.class.php │ ├── xmleditor.class.php │ └── xmlfilemanager.class.php ├── shc ├── data │ ├── commands │ │ ├── all │ │ │ ├── executeswitchcommandajax.class.php │ │ │ ├── interface │ │ │ │ ├── executeappswitchcommandajax.class.php │ │ │ │ ├── getwarningsjsonajax.class.php │ │ │ │ ├── roomelementsjsonajax.class.php │ │ │ │ ├── roomsjsonajax.class.php │ │ │ │ ├── roomsyncjsonajax.class.php │ │ │ │ └── userathomejsonajax.class.php │ │ │ ├── pushsensorvaluesajax.class.php │ │ │ ├── roomsync.class.php │ │ │ ├── roomsyncajax.class.php │ │ │ └── switchservergetgpioajax.class.php │ │ ├── cli │ │ │ ├── daemonstatecli.class.php │ │ │ ├── sensordatattransmittercli.class.php │ │ │ ├── shedulerdeamoncli.class.php │ │ │ ├── switchcli.class.php │ │ │ └── switchservercli.class.php │ │ ├── smartphone │ │ │ ├── acp │ │ │ │ ├── acppage.class.php │ │ │ │ ├── backup │ │ │ │ │ ├── deletebackupaction.class.php │ │ │ │ │ ├── listbackupspage.class.php │ │ │ │ │ ├── loadbackupaction.class.php │ │ │ │ │ ├── makebackupaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── listbackups.html │ │ │ │ ├── conditions │ │ │ │ │ ├── addconditionformpage.class.php │ │ │ │ │ ├── deleteconditionaction.class.php │ │ │ │ │ ├── editconditionformpage.class.php │ │ │ │ │ ├── listconditionspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addconditionform.html │ │ │ │ │ │ ├── editconditionform.html │ │ │ │ │ │ └── listconditions.html │ │ │ │ ├── daemonstatepage.class.php │ │ │ │ ├── database │ │ │ │ │ ├── databasepage.class.php │ │ │ │ │ ├── dumpdatabaseaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── database.html │ │ │ │ ├── events │ │ │ │ │ ├── addconditiontoeventaction.class.php │ │ │ │ │ ├── addeventformpage.class.php │ │ │ │ │ ├── addswitchabletoeventaction.class.php │ │ │ │ │ ├── deleteconditionfromeventaction.class.php │ │ │ │ │ ├── deleteeventaction.class.php │ │ │ │ │ ├── deleteswitchablefromeventaction.class.php │ │ │ │ │ ├── editeventformpage.class.php │ │ │ │ │ ├── listeventspage.class.php │ │ │ │ │ ├── manageswitchablesineventspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addeventform.html │ │ │ │ │ │ ├── editeventform.html │ │ │ │ │ │ ├── listevents.html │ │ │ │ │ │ └── manageswitchablesinevents.html │ │ │ │ ├── infopage.class.php │ │ │ │ ├── room │ │ │ │ │ ├── addroomformpage.class.php │ │ │ │ │ ├── deleteroomaction.class.php │ │ │ │ │ ├── editroomformpage.class.php │ │ │ │ │ ├── listroomspage.class.php │ │ │ │ │ ├── saveroomorderaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addroomform.html │ │ │ │ │ │ ├── editroomform.html │ │ │ │ │ │ └── listrooms.html │ │ │ │ ├── sensorpoints │ │ │ │ │ ├── deletesensorpointaction.class.php │ │ │ │ │ ├── editsensorpointformpage.class.php │ │ │ │ │ ├── listsensorpointspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── editsensorpointform.html │ │ │ │ │ │ └── listsensorpoints.html │ │ │ │ ├── settingsformpage.class.php │ │ │ │ ├── switchables │ │ │ │ │ ├── addboxformpage.class.php │ │ │ │ │ ├── addelementformpage.class.php │ │ │ │ │ ├── addswitchabletocontaineraction.class.php │ │ │ │ │ ├── assignmentpage.class.php │ │ │ │ │ ├── deleteboxaction.class.php │ │ │ │ │ ├── deleteelementaction.class.php │ │ │ │ │ ├── deletesensoraction.class.php │ │ │ │ │ ├── deleteswitchableformcontaineraction.class.php │ │ │ │ │ ├── editboxformpage.class.php │ │ │ │ │ ├── editelementformpage.class.php │ │ │ │ │ ├── editsensorformpage.class.php │ │ │ │ │ ├── listroomswitchablespage.class.php │ │ │ │ │ ├── listswitchablespage.class.php │ │ │ │ │ ├── listswitchableswithoutroompage.class.php │ │ │ │ │ ├── listswitchfunctionspage.class.php │ │ │ │ │ ├── manageswitchablecontainerspage.class.php │ │ │ │ │ ├── saveswitchableorderaction.class.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── addboxform.html │ │ │ │ │ │ ├── addelementform.html │ │ │ │ │ │ ├── assignment.html │ │ │ │ │ │ ├── editboxform.html │ │ │ │ │ │ ├── editelementform.html │ │ │ │ │ │ ├── editsensorform.html │ │ │ │ │ │ ├── listroomswitchables.html │ │ │ │ │ │ ├── listswitchables.html │ │ │ │ │ │ ├── listswitchableswithoutroom.html │ │ │ │ │ │ ├── listswitchfunctions.html │ │ │ │ │ │ └── manageswitchablecontainers.html │ │ │ │ │ └── toggleswitchablecommandincontaineraction.class.php │ │ │ │ ├── switchpoints │ │ │ │ │ ├── addconditiontoswitchpointaction.class.php │ │ │ │ │ ├── addswitchabletoswitchpointaction.class.php │ │ │ │ │ ├── addswitchpointformpage.class.php │ │ │ │ │ ├── deleteconditionfromswitchpointaction.class.php │ │ │ │ │ ├── deleteswitchablefromswitchpointaction.class.php │ │ │ │ │ ├── deleteswitchpointaction.class.php │ │ │ │ │ ├── editswitchpointformpage.class.php │ │ │ │ │ ├── listswitchpointspage.class.php │ │ │ │ │ ├── manageswitchablesinswitchpointspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addswitchpointform.html │ │ │ │ │ │ ├── editswitchpointform.html │ │ │ │ │ │ ├── listswitchpoints.html │ │ │ │ │ │ └── manageswitchablesinswitchpoints.html │ │ │ │ ├── switchserver │ │ │ │ │ ├── addswitchserverformpage.class.php │ │ │ │ │ ├── deleteswitchserveraction.class.php │ │ │ │ │ ├── editswitchserverformpage.class.php │ │ │ │ │ ├── listswitchserverspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addswitchserverform.html │ │ │ │ │ │ ├── editswitchserverform.html │ │ │ │ │ │ └── listswitchservers.html │ │ │ │ ├── templates │ │ │ │ │ ├── acpinfo.html │ │ │ │ │ ├── acppage.html │ │ │ │ │ ├── daemonstate.html │ │ │ │ │ └── settingsform.html │ │ │ │ ├── user │ │ │ │ │ ├── addgroupformpage.class.php │ │ │ │ │ ├── adduserformpage.class.php │ │ │ │ │ ├── deletegroupaction.class.php │ │ │ │ │ ├── deleteuseraction.class.php │ │ │ │ │ ├── editgroupformpage.class.php │ │ │ │ │ ├── edituserformpage.class.php │ │ │ │ │ ├── listgroupspage.class.php │ │ │ │ │ ├── listuserspage.class.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── addgroupform.html │ │ │ │ │ │ ├── adduserform.html │ │ │ │ │ │ ├── editgroupform.html │ │ │ │ │ │ ├── edituserform.html │ │ │ │ │ │ ├── groupslist.html │ │ │ │ │ │ └── userlist.html │ │ │ │ └── usersathome │ │ │ │ │ ├── adduserathomeformpage.class.php │ │ │ │ │ ├── deleteuserathomeaction.class.php │ │ │ │ │ ├── edituserathomeformpage.class.php │ │ │ │ │ ├── listusersathomepage.class.php │ │ │ │ │ ├── saveuserathomeorderaction.class.php │ │ │ │ │ └── templates │ │ │ │ │ ├── adduserathomeform.html │ │ │ │ │ ├── edituserathomeform.html │ │ │ │ │ └── listusersathome.html │ │ │ ├── indexpage.class.php │ │ │ ├── login │ │ │ │ ├── loginajax.class.php │ │ │ │ └── logoutaction.class.php │ │ │ ├── room │ │ │ │ ├── showroompage.class.php │ │ │ │ └── templates │ │ │ │ │ └── roomview.html │ │ │ ├── templates │ │ │ │ └── indexpage.html │ │ │ ├── userathomeupdateajax.class.php │ │ │ └── warningsajax.class.php │ │ └── web │ │ │ ├── acp │ │ │ ├── acppage.class.php │ │ │ ├── backup │ │ │ │ ├── deletebackupaction.class.php │ │ │ │ ├── listbackupspage.class.php │ │ │ │ ├── loadbackupaction.class.php │ │ │ │ ├── makebackupaction.class.php │ │ │ │ └── templates │ │ │ │ │ └── listbackups.html │ │ │ ├── conditions │ │ │ │ ├── addconditionformpage.class.php │ │ │ │ ├── deleteconditionaction.class.php │ │ │ │ ├── editconditionformpage.class.php │ │ │ │ ├── listconditionspage.class.php │ │ │ │ └── templates │ │ │ │ │ ├── addconditionform.html │ │ │ │ │ ├── editconditionform.html │ │ │ │ │ └── listconditions.html │ │ │ ├── daemonstatepage.class.php │ │ │ ├── database │ │ │ │ ├── databasepage.class.php │ │ │ │ ├── dumpdatabaseaction.class.php │ │ │ │ └── templates │ │ │ │ │ └── database.html │ │ │ ├── events │ │ │ │ ├── addconditiontoeventaction.class.php │ │ │ │ ├── addeventformpage.class.php │ │ │ │ ├── addswitchabletoeventaction.class.php │ │ │ │ ├── deleteconditionfromeventaction.class.php │ │ │ │ ├── deleteeventaction.class.php │ │ │ │ ├── deleteswitchablefromeventaction.class.php │ │ │ │ ├── editeventformpage.class.php │ │ │ │ ├── listeventspage.class.php │ │ │ │ ├── manageswitchablesineventspage.class.php │ │ │ │ ├── templates │ │ │ │ │ ├── addeventform.html │ │ │ │ │ ├── editeventform.html │ │ │ │ │ ├── listevents.html │ │ │ │ │ └── manageswitchablesinevents.html │ │ │ │ └── toggleswitchablecommandaction.class.php │ │ │ ├── infopage.class.php │ │ │ ├── room │ │ │ │ ├── addroomformpage.class.php │ │ │ │ ├── deleteroomaction.class.php │ │ │ │ ├── editroomformpage.class.php │ │ │ │ ├── listroomspage.class.php │ │ │ │ ├── saveroomorderaction.class.php │ │ │ │ └── templates │ │ │ │ │ ├── listrooms.html │ │ │ │ │ └── roomform.html │ │ │ ├── sensorpoints │ │ │ │ ├── deletesensorpointaction.class.php │ │ │ │ ├── editsensorpointformpage.class.php │ │ │ │ ├── listsensorpointspage.class.php │ │ │ │ └── templates │ │ │ │ │ ├── listsensorpoints.html │ │ │ │ │ └── sensorpointform.html │ │ │ ├── settingsformpage.class.php │ │ │ ├── switchables │ │ │ │ ├── addboxformpage.class.php │ │ │ │ ├── addelementformpage.class.php │ │ │ │ ├── addswitchabletocontaineraction.class.php │ │ │ │ ├── assignmentpage.class.php │ │ │ │ ├── deleteboxaction.class.php │ │ │ │ ├── deleteelementaction.class.php │ │ │ │ ├── deletesensoraction.class.php │ │ │ │ ├── deleteswitchableformcontaineraction.class.php │ │ │ │ ├── editboxformpage.class.php │ │ │ │ ├── editelementformpage.class.php │ │ │ │ ├── editsensorformpage.class.php │ │ │ │ ├── listelementswithoutroomajax.class.php │ │ │ │ ├── listswitchablespage.class.php │ │ │ │ ├── listswitchfunctionsajax.class.php │ │ │ │ ├── manageswitchablecontainerspage.class.php │ │ │ │ ├── saveswitchableorderaction.class.php │ │ │ │ ├── templates │ │ │ │ │ ├── assignment.html │ │ │ │ │ ├── boxform.html │ │ │ │ │ ├── elementform.html │ │ │ │ │ ├── listelementswithoutroom.html │ │ │ │ │ ├── listswitchables.html │ │ │ │ │ ├── listswitchfunctions.html │ │ │ │ │ ├── manageswitchablecontainers.html │ │ │ │ │ └── sensorform.html │ │ │ │ └── toggleswitchablecommandincontaineraction.class.php │ │ │ ├── switchpoints │ │ │ │ ├── addconditiontoswitchpointaction.class.php │ │ │ │ ├── addswitchabletoswitchpointaction.class.php │ │ │ │ ├── addswitchpointformpage.class.php │ │ │ │ ├── deleteconditionfromswitchpointaction.class.php │ │ │ │ ├── deleteswitchablefromswitchpointaction.class.php │ │ │ │ ├── deleteswitchpointaction.class.php │ │ │ │ ├── editswitchpointformpage.class.php │ │ │ │ ├── listswitchpointspage.class.php │ │ │ │ ├── manageswitchablesinswitchpointspage.class.php │ │ │ │ └── templates │ │ │ │ │ ├── listswitchpoints.html │ │ │ │ │ ├── manageswitchablesinswitchpoints.html │ │ │ │ │ └── switchpointform.html │ │ │ ├── switchserver │ │ │ │ ├── addswitchserverformpage.class.php │ │ │ │ ├── deleteswitchserveraction.class.php │ │ │ │ ├── editswitchserverformpage.class.php │ │ │ │ ├── listswitchserverspage.class.php │ │ │ │ └── templates │ │ │ │ │ ├── listswitchservers.html │ │ │ │ │ └── switchserverform.html │ │ │ ├── templates │ │ │ │ ├── acpinfo.html │ │ │ │ ├── acppage.html │ │ │ │ ├── daemonstate.html │ │ │ │ └── settings.html │ │ │ ├── user │ │ │ │ ├── addgroupformpage.class.php │ │ │ │ ├── adduserformpage.class.php │ │ │ │ ├── deletegroupaction.class.php │ │ │ │ ├── deleteuseraction.class.php │ │ │ │ ├── editgroupformpage.class.php │ │ │ │ ├── edituserformpage.class.php │ │ │ │ ├── listgroupspage.class.php │ │ │ │ ├── listuserspage.class.php │ │ │ │ └── templates │ │ │ │ │ ├── groupform.html │ │ │ │ │ ├── grouplist.html │ │ │ │ │ ├── userform.html │ │ │ │ │ └── userlist.html │ │ │ └── usersathome │ │ │ │ ├── adduserathomeformpage.class.php │ │ │ │ ├── deleteuserathomeaction.class.php │ │ │ │ ├── edituserathomeformpage.class.php │ │ │ │ ├── listusersathomepage.class.php │ │ │ │ ├── saveuserathomeorderaction.class.php │ │ │ │ └── templates │ │ │ │ ├── listusersathome.html │ │ │ │ └── userathomeform.html │ │ │ ├── indexpage.class.php │ │ │ ├── login │ │ │ ├── loginajax.class.php │ │ │ └── logoutaction.class.php │ │ │ ├── room │ │ │ ├── showroomajax.class.php │ │ │ └── templates │ │ │ │ └── roomview.html │ │ │ ├── templates │ │ │ └── indexpage.html │ │ │ ├── userathomeupdateajax.class.php │ │ │ └── warningsajax.class.php │ ├── lang │ │ ├── de │ │ │ ├── acp │ │ │ │ ├── acpindex.lang.php │ │ │ │ ├── acpinfo.lang.php │ │ │ │ ├── backupsmanagement.lang.php │ │ │ │ ├── conditionmanagement.lang.php │ │ │ │ ├── daemonstate.lang.php │ │ │ │ ├── database.lang.php │ │ │ │ ├── eventmanagement.lang.php │ │ │ │ ├── roommanagement.lang.php │ │ │ │ ├── sensorpointsmanagement.lang.php │ │ │ │ ├── settings.lang.php │ │ │ │ ├── switchablemanagement.lang.php │ │ │ │ ├── switchpointsmanagment.lang.php │ │ │ │ ├── switchservermanagement.lang.php │ │ │ │ ├── usermanagement.lang.php │ │ │ │ └── usersathomemanagement.lang.php │ │ │ ├── cli │ │ │ │ ├── arduinoreciver.lang.php │ │ │ │ ├── sensorreciver.lang.php │ │ │ │ ├── sensortransmitterdaemon.lang.php │ │ │ │ ├── shedulerdaemon.lang.php │ │ │ │ └── switchserver.lang.php │ │ │ ├── form.lang.php │ │ │ ├── global.lang.php │ │ │ ├── index.lang.php │ │ │ └── room.lang.php │ │ └── en │ │ │ ├── acp │ │ │ ├── acpindex.lang.php │ │ │ ├── acpinfo.lang.php │ │ │ ├── backupsmanagement.lang.php │ │ │ ├── conditionmanagement.lang.php │ │ │ ├── daemonstate.lang.php │ │ │ ├── database.lang.php │ │ │ ├── eventmanagement.lang.php │ │ │ ├── roommanagement.lang.php │ │ │ ├── sensorpointsmanagement.lang.php │ │ │ ├── settings.lang.php │ │ │ ├── switchablemanagement.lang.php │ │ │ ├── switchpointsmanagment.lang.php │ │ │ ├── switchservermanagement.lang.php │ │ │ ├── usermanagement.lang.php │ │ │ └── usersathomemanagement.lang.php │ │ │ ├── cli │ │ │ ├── arduinoreciver.lang.php │ │ │ ├── sensorreciver.lang.php │ │ │ ├── sensortransmitterdaemon.lang.php │ │ │ ├── shedulerdaemon.lang.php │ │ │ └── switchserver.lang.php │ │ │ ├── form.lang.php │ │ │ ├── global.lang.php │ │ │ ├── index.lang.php │ │ │ └── room.lang.php │ ├── log │ │ └── .gitignore │ ├── storage │ │ └── default │ │ │ ├── defaultSensortransmitter.xml │ │ │ └── defaultSwitchserversettings.xml │ └── templates │ │ ├── smartphone │ │ ├── mobileHeadlineIndex.html │ │ └── switchables │ │ │ ├── mobileActivity.html │ │ │ ├── mobileAvmSocket.html │ │ │ ├── mobileCountdown.html │ │ │ ├── mobileEdimaxSocket.html │ │ │ ├── mobileFritzBox.html │ │ │ ├── mobileRadiosocket.html │ │ │ ├── mobileReboot.html │ │ │ ├── mobileRpiGpioOutput.html │ │ │ ├── mobileScript.html │ │ │ ├── mobileShutdown.html │ │ │ ├── mobileVirtualSocket.html │ │ │ └── mobileWakeOnLan.html │ │ └── web │ │ ├── headline.html │ │ └── switchables │ │ ├── activity.html │ │ ├── avmSocket.html │ │ ├── countdown.html │ │ ├── edimaxSocket.html │ │ ├── fritzBox.html │ │ ├── radiosocket.html │ │ ├── reboot.html │ │ ├── rpiGpioOutput.html │ │ ├── script.html │ │ ├── shutdown.html │ │ ├── virtualSocket.html │ │ └── wakeOnLan.html ├── global.php ├── inc │ ├── img │ │ ├── acpmenue │ │ │ ├── backup.png │ │ │ ├── conditions.png │ │ │ ├── database.png │ │ │ ├── events.png │ │ │ ├── info.png │ │ │ ├── rooms.png │ │ │ ├── sensorpoints.png │ │ │ ├── serserstate.png │ │ │ ├── settings.png │ │ │ ├── switchfunctions.png │ │ │ ├── switchpoints.png │ │ │ ├── switchservers.png │ │ │ ├── usermanagement.png │ │ │ └── usersathome.png │ │ ├── buttons │ │ │ ├── add.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── editlist.png │ │ │ ├── not_active.png │ │ │ ├── remove.png │ │ │ ├── run.png │ │ │ └── stop.png │ │ ├── sensor │ │ │ ├── bmp.png │ │ │ ├── dht.png │ │ │ ├── ds18x20.png │ │ │ ├── gasmeter.png │ │ │ ├── hcsr04.png │ │ │ ├── hygrometer.png │ │ │ ├── ldr.png │ │ │ ├── powersocket.png │ │ │ ├── rain.png │ │ │ ├── sct013.png │ │ │ ├── thermostat.png │ │ │ └── watermeter.png │ │ ├── shc-icon.png │ │ ├── shc-logo.png │ │ ├── shc-message-error.png │ │ ├── shc-message-info.png │ │ ├── shc-message-successfully.png │ │ ├── shc-message-warning.png │ │ ├── switchables │ │ │ ├── camera.png │ │ │ ├── camera2.png │ │ │ ├── candles.png │ │ │ ├── chip.png │ │ │ ├── christmasLights.png │ │ │ ├── christmasTree.png │ │ │ ├── clock.png │ │ │ ├── coffee.png │ │ │ ├── countdown.png │ │ │ ├── flashlight.png │ │ │ ├── lamp.png │ │ │ ├── monitor.png │ │ │ ├── nas.png │ │ │ ├── power.png │ │ │ ├── printer.png │ │ │ ├── reboot.png │ │ │ ├── reconnect.png │ │ │ ├── rhythmbox.png │ │ │ ├── rollo.png │ │ │ ├── shutdown.png │ │ │ ├── socket.png │ │ │ ├── star.png │ │ │ ├── tv.png │ │ │ ├── waterBoiler.png │ │ │ ├── wifi.png │ │ │ ├── wol_state_offline.png │ │ │ └── wol_state_online.png │ │ └── usersathome │ │ │ ├── userOffline.png │ │ │ └── userOnline.png │ ├── js │ │ └── jquery-ui.min.sortable.js │ └── style │ │ ├── 5-jquery.ui.touch-punch.min.js │ │ ├── mobile │ │ ├── all │ │ │ └── 9-icons.css │ │ └── default │ │ │ ├── 1-jquery_mobile.css │ │ │ ├── 2-form.css │ │ │ ├── 3-style.css │ │ │ └── images │ │ │ ├── ajax-loader.gif │ │ │ ├── icons-png │ │ │ ├── action-black.png │ │ │ ├── action-white.png │ │ │ ├── alert-black.png │ │ │ ├── alert-white.png │ │ │ ├── arrow-d-black.png │ │ │ ├── arrow-d-l-black.png │ │ │ ├── arrow-d-l-white.png │ │ │ ├── arrow-d-r-black.png │ │ │ ├── arrow-d-r-white.png │ │ │ ├── arrow-d-white.png │ │ │ ├── arrow-l-black.png │ │ │ ├── arrow-l-white.png │ │ │ ├── arrow-r-black.png │ │ │ ├── arrow-r-white.png │ │ │ ├── arrow-u-black.png │ │ │ ├── arrow-u-l-black.png │ │ │ ├── arrow-u-l-white.png │ │ │ ├── arrow-u-r-black.png │ │ │ ├── arrow-u-r-white.png │ │ │ ├── arrow-u-white.png │ │ │ ├── audio-black.png │ │ │ ├── audio-white.png │ │ │ ├── back-black.png │ │ │ ├── back-white.png │ │ │ ├── bars-black.png │ │ │ ├── bars-white.png │ │ │ ├── bullets-black.png │ │ │ ├── bullets-white.png │ │ │ ├── calendar-black.png │ │ │ ├── calendar-white.png │ │ │ ├── camera-black.png │ │ │ ├── camera-white.png │ │ │ ├── carat-d-black.png │ │ │ ├── carat-d-white.png │ │ │ ├── carat-l-black.png │ │ │ ├── carat-l-white.png │ │ │ ├── carat-r-black.png │ │ │ ├── carat-r-white.png │ │ │ ├── carat-u-black.png │ │ │ ├── carat-u-white.png │ │ │ ├── check-black.png │ │ │ ├── check-white.png │ │ │ ├── clock-black.png │ │ │ ├── clock-white.png │ │ │ ├── cloud-black.png │ │ │ ├── cloud-white.png │ │ │ ├── comment-black.png │ │ │ ├── comment-white.png │ │ │ ├── delete-black.png │ │ │ ├── delete-white.png │ │ │ ├── edit-black.png │ │ │ ├── edit-white.png │ │ │ ├── eye-black.png │ │ │ ├── eye-white.png │ │ │ ├── forbidden-black.png │ │ │ ├── forbidden-white.png │ │ │ ├── forward-black.png │ │ │ ├── forward-white.png │ │ │ ├── gear-black.png │ │ │ ├── gear-white.png │ │ │ ├── grid-black.png │ │ │ ├── grid-white.png │ │ │ ├── heart-black.png │ │ │ ├── heart-white.png │ │ │ ├── home-black.png │ │ │ ├── home-white.png │ │ │ ├── info-black.png │ │ │ ├── info-white.png │ │ │ ├── location-black.png │ │ │ ├── location-white.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── mail-black.png │ │ │ ├── mail-white.png │ │ │ ├── minus-black.png │ │ │ ├── minus-white.png │ │ │ ├── navigation-black.png │ │ │ ├── navigation-white.png │ │ │ ├── phone-black.png │ │ │ ├── phone-white.png │ │ │ ├── plus-black.png │ │ │ ├── plus-white.png │ │ │ ├── power-black.png │ │ │ ├── power-white.png │ │ │ ├── recycle-black.png │ │ │ ├── recycle-white.png │ │ │ ├── refresh-black.png │ │ │ ├── refresh-white.png │ │ │ ├── search-black.png │ │ │ ├── search-white.png │ │ │ ├── shop-black.png │ │ │ ├── shop-white.png │ │ │ ├── star-black.png │ │ │ ├── star-white.png │ │ │ ├── tag-black.png │ │ │ ├── tag-white.png │ │ │ ├── user-black.png │ │ │ ├── user-white.png │ │ │ ├── video-black.png │ │ │ └── video-white.png │ │ │ └── icons-svg │ │ │ ├── action-black.svg │ │ │ ├── action-white.svg │ │ │ ├── alert-black.svg │ │ │ ├── alert-white.svg │ │ │ ├── arrow-d-black.svg │ │ │ ├── arrow-d-l-black.svg │ │ │ ├── arrow-d-l-white.svg │ │ │ ├── arrow-d-r-black.svg │ │ │ ├── arrow-d-r-white.svg │ │ │ ├── arrow-d-white.svg │ │ │ ├── arrow-l-black.svg │ │ │ ├── arrow-l-white.svg │ │ │ ├── arrow-r-black.svg │ │ │ ├── arrow-r-white.svg │ │ │ ├── arrow-u-black.svg │ │ │ ├── arrow-u-l-black.svg │ │ │ ├── arrow-u-l-white.svg │ │ │ ├── arrow-u-r-black.svg │ │ │ ├── arrow-u-r-white.svg │ │ │ ├── arrow-u-white.svg │ │ │ ├── audio-black.svg │ │ │ ├── audio-white.svg │ │ │ ├── back-black.svg │ │ │ ├── back-white.svg │ │ │ ├── bars-black.svg │ │ │ ├── bars-white.svg │ │ │ ├── bullets-black.svg │ │ │ ├── bullets-white.svg │ │ │ ├── calendar-black.svg │ │ │ ├── calendar-white.svg │ │ │ ├── camera-black.svg │ │ │ ├── camera-white.svg │ │ │ ├── carat-d-black.svg │ │ │ ├── carat-d-white.svg │ │ │ ├── carat-l-black.svg │ │ │ ├── carat-l-white.svg │ │ │ ├── carat-r-black.svg │ │ │ ├── carat-r-white.svg │ │ │ ├── carat-u-black.svg │ │ │ ├── carat-u-white.svg │ │ │ ├── check-black.svg │ │ │ ├── check-white.svg │ │ │ ├── clock-black.svg │ │ │ ├── clock-white.svg │ │ │ ├── cloud-black.svg │ │ │ ├── cloud-white.svg │ │ │ ├── comment-black.svg │ │ │ ├── comment-white.svg │ │ │ ├── delete-black.svg │ │ │ ├── delete-white.svg │ │ │ ├── edit-black.svg │ │ │ ├── edit-white.svg │ │ │ ├── eye-black.svg │ │ │ ├── eye-white.svg │ │ │ ├── forbidden-black.svg │ │ │ ├── forbidden-white.svg │ │ │ ├── forward-black.svg │ │ │ ├── forward-white.svg │ │ │ ├── gear-black.svg │ │ │ ├── gear-white.svg │ │ │ ├── grid-black.svg │ │ │ ├── grid-white.svg │ │ │ ├── heart-black.svg │ │ │ ├── heart-white.svg │ │ │ ├── home-black.svg │ │ │ ├── home-white.svg │ │ │ ├── info-black.svg │ │ │ ├── info-white.svg │ │ │ ├── location-black.svg │ │ │ ├── location-white.svg │ │ │ ├── lock-black.svg │ │ │ ├── lock-white.svg │ │ │ ├── mail-black.svg │ │ │ ├── mail-white.svg │ │ │ ├── minus-black.svg │ │ │ ├── minus-white.svg │ │ │ ├── navigation-black.svg │ │ │ ├── navigation-white.svg │ │ │ ├── phone-black.svg │ │ │ ├── phone-white.svg │ │ │ ├── plus-black.svg │ │ │ ├── plus-white.svg │ │ │ ├── power-black.svg │ │ │ ├── power-white.svg │ │ │ ├── recycle-black.svg │ │ │ ├── recycle-white.svg │ │ │ ├── refresh-black.svg │ │ │ ├── refresh-white.svg │ │ │ ├── search-black.svg │ │ │ ├── search-white.svg │ │ │ ├── shop-black.svg │ │ │ ├── shop-white.svg │ │ │ ├── star-black.svg │ │ │ ├── star-white.svg │ │ │ ├── tag-black.svg │ │ │ ├── tag-white.svg │ │ │ ├── user-black.svg │ │ │ ├── user-white.svg │ │ │ ├── video-black.svg │ │ │ └── video-white.svg │ │ └── web │ │ ├── all │ │ ├── 5-jquery.ui.touch-punch.min.js │ │ └── 9-icons.css │ │ ├── blitzer │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ ├── ui-icons_004276_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── dark_hive │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── flick │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_666666_256x240.png │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── redmond │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── ui_darkness │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── ui_lightness │ │ ├── 1-jquery_ui.css │ │ ├── 2-form.css │ │ ├── 3-style.css │ │ └── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png └── lib │ ├── arduino │ └── arduino.class.php │ ├── command │ ├── abstractcommand.class.php │ ├── command.class.php │ ├── commands │ │ ├── gpioinputcommand.class.php │ │ ├── gpiooutputcommand.class.php │ │ └── radiosocketcommand.class.php │ └── commandsheduler.class.php │ ├── condition │ ├── abstractcondition.class.php │ ├── condition.class.php │ ├── conditioneditor.class.php │ └── conditions │ │ ├── datecondition.class.php │ │ ├── dayofweekcondition.class.php │ │ ├── fileexistscondition.class.php │ │ ├── firstloopcondition.class.php │ │ ├── holidayscondition.class.php │ │ ├── humiditygreaterthancondition.class.php │ │ ├── humiditylowerthancondition.class.php │ │ ├── inputhighcondition.class.php │ │ ├── inputlowcondition.class.php │ │ ├── justcalendarweekcondition.class.php │ │ ├── lightintensitygreaterthancondition.class.php │ │ ├── lightintensitylowerthancondition.class.php │ │ ├── moisturegreaterthancondition.class.php │ │ ├── moisturelowerthancondition.class.php │ │ ├── nobodyathomecondition.class.php │ │ ├── oddcalendarweekcondition.class.php │ │ ├── sunrisesunsetcondition.class.php │ │ ├── sunsetsunrisecondition.class.php │ │ ├── switchablestatehighcondition.class.php │ │ ├── switchablestatelowcondition.class.php │ │ ├── temperaturegreaterthancondition.class.php │ │ ├── temperaturelowerthancondition.class.php │ │ ├── timeofdaycondition.class.php │ │ ├── userathomecondition.class.php │ │ └── usernotathomecondition.class.php │ ├── core │ ├── exceptions │ │ └── assertexception.class.php │ └── shc.class.php │ ├── database │ └── nosql │ │ └── redis.class.php │ ├── event │ ├── abstractevent.class.php │ ├── event.class.php │ ├── eventeditor.class.php │ └── events │ │ ├── filecreate.class.php │ │ ├── filedelete.class.php │ │ ├── humidityclimbover.class.php │ │ ├── humidityfallsbelow.class.php │ │ ├── inputhigh.class.php │ │ ├── inputlow.class.php │ │ ├── lightintensityclimbover.class.php │ │ ├── lightintensityfallsbelow.class.php │ │ ├── moistureclimbover.class.php │ │ ├── moisturefallsbelow.class.php │ │ ├── sunrise.class.php │ │ ├── sunset.class.php │ │ ├── temperatureclimbover.class.php │ │ ├── temperaturefallsbelow.class.php │ │ ├── usercomeshome.class.php │ │ └── userleaveshome.class.php │ ├── external │ ├── java │ │ └── SHC_Arduino_Inputreader.jar │ └── python │ │ ├── bmp.py │ │ └── dht.py │ ├── form │ ├── formelements │ │ ├── buttontextchooser.class.php │ │ ├── conditionschooser.class.php │ │ ├── conditiontypechooser.class.php │ │ ├── dayofweekchooser.class.php │ │ ├── edimaxtypechooser.class.php │ │ ├── elementsforboxchooser.class.php │ │ ├── elementtypechooser.class.php │ │ ├── eventtypechooser.class.php │ │ ├── grouppremissonchooser.class.php │ │ ├── holidaychooser.class.php │ │ ├── iconchooser.class.php │ │ ├── inputchooser.class.php │ │ ├── ipaddressinputfield.class.php │ │ ├── languagechooser.class.php │ │ ├── macaddressinputfield.class.php │ │ ├── protocolchooser.class.php │ │ ├── roomchooser.class.php │ │ ├── rpigpiochooser.class.php │ │ ├── sensorchooser.class.php │ │ ├── singleroomchooser.class.php │ │ ├── switchablechooser.class.php │ │ ├── switchcommandchooser.class.php │ │ ├── switchpointcommandchooser.class.php │ │ ├── switchpointschooser.class.php │ │ ├── switchserverchooser.class.php │ │ ├── usergroupchooser.class.php │ │ ├── usermaingroupchooser.class.php │ │ ├── usersathomechooser.class.php │ │ └── webstylechooser.class.php │ └── forms │ │ ├── boxform.class.php │ │ ├── conditions │ │ ├── calendarweekconditionform.class.php │ │ ├── dateconditionform.class.php │ │ ├── dayofweekconditionform.class.php │ │ ├── fileexistsconditionform.class.php │ │ ├── firstloopconditionform.class.php │ │ ├── holidayconditionform.class.php │ │ ├── humidityconditionform.class.php │ │ ├── inputhighconditionform.class.php │ │ ├── inputlowconditionform.class.php │ │ ├── lightintensityconditionform.class.php │ │ ├── moistureconditionform.class.php │ │ ├── nobodyathomeconditionform.class.php │ │ ├── sunrisesunsetconditionform.class.php │ │ ├── sunsetsunriseconditionform.class.php │ │ ├── switchablestateconditionform.class.php │ │ ├── temperatureconditionform.class.php │ │ ├── timeofdayconditionform.class.php │ │ ├── userathomeconditionform.class.php │ │ └── usernotathomeconditionform.class.php │ │ ├── elements │ │ ├── activityform.class.php │ │ ├── avmsocketform.class.php │ │ ├── countdownform.class.php │ │ ├── edimaxsocketform.class.php │ │ ├── fritzboxform.class.php │ │ ├── radiosocketform.class.php │ │ ├── rebootform.class.php │ │ ├── rpigpioinputform.class.php │ │ ├── rpigpiooutputform.class.php │ │ ├── scriptform.class.php │ │ ├── shutdownform.class.php │ │ ├── virtualsocketform.class.php │ │ └── wolform.class.php │ │ ├── events │ │ ├── fileeventform.class.php │ │ ├── humidityeventform.class.php │ │ ├── inputeventform.class.php │ │ ├── lightintensityeventform.class.php │ │ ├── moistureeventform.class.php │ │ ├── sunriseeventform.class.php │ │ ├── temperatureeventform.class.php │ │ └── usereventform.class.php │ │ ├── extendetswitchpointform.class.php │ │ ├── roomform.class.php │ │ ├── sensorpointform.class.php │ │ ├── sensors │ │ ├── avmmeasuringsocketform.class.php │ │ ├── bmpsensorform.class.php │ │ ├── cometthermostatform.class.php │ │ ├── dhtsensorform.class.php │ │ ├── ds18x20sensorform.class.php │ │ ├── edimaxmeasuringsocketform.class.php │ │ ├── gasmeterform.class.php │ │ ├── hcsr04form.class.php │ │ ├── hygrometersensorform.class.php │ │ ├── ldrsensorform.class.php │ │ ├── rainsensorform.class.php │ │ ├── sct013form.class.php │ │ ├── vsensorform.class.php │ │ └── watermeterform.class.php │ │ ├── settingsform.class.php │ │ ├── simpleswitchpointform.class.php │ │ ├── switchserverform.class.php │ │ ├── userathomeform.class.php │ │ ├── userform.class.php │ │ └── usergroupform.class.php │ ├── room │ ├── room.class.php │ └── roomeditor.class.php │ ├── sensor │ ├── abstractsensor.class.php │ ├── model │ │ ├── abstractairpressure.class.php │ │ ├── abstractaltitude.class.php │ │ ├── abstractdistance.class.php │ │ ├── abstractenergy.class.php │ │ ├── abstractfluidamount.class.php │ │ ├── abstracthumidity.class.php │ │ ├── abstractlightintensity.class.php │ │ ├── abstractmoisture.class.php │ │ ├── abstractpower.class.php │ │ ├── abstracttemperature.class.php │ │ ├── airpressure.class.php │ │ ├── altitude.class.php │ │ ├── distance.class.php │ │ ├── energy.class.php │ │ ├── fluidamount.class.php │ │ ├── humidity.class.php │ │ ├── lightintensity.class.php │ │ ├── moisture.class.php │ │ ├── power.class.php │ │ └── temperature.class.php │ ├── sensor.class.php │ ├── sensordatatransmitter.class.php │ ├── sensoreditor.class.php │ ├── sensorpoint.class.php │ ├── sensorpointeditor.class.php │ ├── sensors │ │ ├── avmmeasuringsocket.class.php │ │ ├── bmp.class.php │ │ ├── cometdectradiatorthermostat.class.php │ │ ├── dht.class.php │ │ ├── ds18x20.class.php │ │ ├── edimaxmeasuringsocket.class.php │ │ ├── gasmeter.class.php │ │ ├── hcsr04.class.php │ │ ├── hygrometer.class.php │ │ ├── ldr.class.php │ │ ├── rainsensor.class.php │ │ ├── sct013.class.php │ │ └── watermeter.class.php │ ├── vsensor.class.php │ └── vsensors │ │ ├── energy.class.php │ │ ├── fluidamount.class.php │ │ ├── humidity.class.php │ │ ├── lightintensity.class.php │ │ ├── moisture.class.php │ │ ├── power.class.php │ │ └── temperature.class.php │ ├── sheduler │ ├── abstracttask.class.php │ ├── sheduler.class.php │ ├── task.class.php │ └── tasks │ │ ├── blinktask.class.php │ │ ├── eventtask.class.php │ │ ├── fritzboxupdatetask.class.php │ │ ├── inputupdatetask.class.php │ │ ├── timertask.class.php │ │ ├── userathomeupdatetask.class.php │ │ └── wakeonlanupdatetask.class.php │ ├── switchable │ ├── abstractreadable.class.php │ ├── abstractswitchable.class.php │ ├── element.class.php │ ├── readable.class.php │ ├── readables │ │ └── rpigpioinput.class.php │ ├── switchable.class.php │ ├── switchableeditor.class.php │ └── switchables │ │ ├── activity.class.php │ │ ├── avmsocket.class.php │ │ ├── countdown.class.php │ │ ├── edimaxsocket.class.php │ │ ├── fritzbox.class.php │ │ ├── radiosocket.class.php │ │ ├── radiosocketdimmer.class.php │ │ ├── reboot.class.php │ │ ├── remotereboot.class.php │ │ ├── remoteshutdown.class.php │ │ ├── rpigpiooutput.class.php │ │ ├── script.class.php │ │ ├── shutdown.class.php │ │ ├── virtualsocket.class.php │ │ └── wakeonlan.class.php │ ├── switchserver │ ├── switchserver.class.php │ ├── switchservereditor.class.php │ └── switchserversocket.class.php │ ├── template │ └── plugin │ │ ├── acpbuttoncompilerplugin.class.php │ │ ├── acpmenuitemcompilerplugin.class.php │ │ ├── contentboxcompilerblockplugin.class.php │ │ ├── deletelinkcompilerplugin.class.php │ │ ├── editlinkcompilerplugin.class.php │ │ └── editlistcompilerplugin.class.php │ ├── timer │ ├── switchpoint.class.php │ └── switchpointeditor.class.php │ ├── userathome │ ├── userathome.class.php │ └── userathomeeditor.class.php │ ├── util │ └── radiosocketsutil.class.php │ ├── view │ └── room │ │ ├── readableviewhelper.class.php │ │ ├── sensorviewhelper.class.php │ │ ├── switchableviewhelper.class.php │ │ ├── viewhelper.class.php │ │ ├── viewhelperbox.class.php │ │ └── viewhelpereditor.class.php │ └── wakeonlan │ └── wakeonlan.class.php ├── shcd.sh ├── templateTags.txt └── update.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/README.md -------------------------------------------------------------------------------- /backup_restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/backup_restore.php -------------------------------------------------------------------------------- /errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/errors.txt -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/install.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/acp/acppage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/acp/acppage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/acp/infopage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/acp/infopage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/acp/settingsformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/acp/settingsformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/acp/templates/acpinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/acp/templates/acpinfo.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/acp/templates/acppage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/acp/templates/acppage.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/datapage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/datapage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/fbcalllistpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/fbcalllistpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/fbsmarthomepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/fbsmarthomepage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/fbstatepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/fbstatepage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/indexpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/indexpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/login/loginajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/login/loginajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/login/logoutaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/login/logoutaction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/statepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/statepage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/statesyncajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/statesyncajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/data.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/fbcalllist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/fbcalllist.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/fbsmarthome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/fbsmarthome.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/fbstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/fbstate.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/indexpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/indexpage.html -------------------------------------------------------------------------------- /pcc/data/commands/smartphone/templates/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/smartphone/templates/state.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/acppage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/acppage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/backup/listbackupspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/backup/listbackupspage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/backup/loadbackupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/backup/loadbackupaction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/backup/makebackupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/backup/makebackupaction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/backup/templates/listbackups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/backup/templates/listbackups.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/database/databasepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/database/databasepage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/database/templates/database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/database/templates/database.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/infopage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/infopage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/settingsformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/settingsformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/templates/acpinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/templates/acpinfo.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/templates/acppage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/templates/acppage.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/templates/settings.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/addgroupformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/addgroupformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/adduserformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/adduserformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/deletegroupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/deletegroupaction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/deleteuseraction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/deleteuseraction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/editgroupformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/editgroupformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/edituserformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/edituserformpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/listgroupspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/listgroupspage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/listuserspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/listuserspage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/templates/groupform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/templates/groupform.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/templates/grouplist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/templates/grouplist.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/templates/userform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/templates/userform.html -------------------------------------------------------------------------------- /pcc/data/commands/web/acp/user/templates/userlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/acp/user/templates/userlist.html -------------------------------------------------------------------------------- /pcc/data/commands/web/dataajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/dataajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/datasyncajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/datasyncajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/fbcalllistajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/fbcalllistajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/fbsmarthomeajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/fbsmarthomeajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/fbstateajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/fbstateajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/indexpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/indexpage.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/login/loginajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/login/loginajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/login/logoutaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/login/logoutaction.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/stateajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/stateajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/statesyncajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/statesyncajax.class.php -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/data.html -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/fbcalllist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/fbcalllist.html -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/fbsmarthome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/fbsmarthome.html -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/fbstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/fbstate.html -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/indexpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/indexpage.html -------------------------------------------------------------------------------- /pcc/data/commands/web/templates/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/commands/web/templates/state.html -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/acpindex.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/acpindex.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/acpinfo.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/acpinfo.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/backupsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/backupsmanagement.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/database.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/database.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/settings.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/settings.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/acp/usermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/acp/usermanagement.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/form.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/form.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/global.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/global.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/de/index.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/de/index.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/acpindex.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/acpindex.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/acpinfo.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/acpinfo.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/backupsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/backupsmanagement.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/database.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/database.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/settings.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/settings.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/acp/usermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/acp/usermanagement.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/form.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/form.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/global.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/global.lang.php -------------------------------------------------------------------------------- /pcc/data/lang/en/index.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/lang/en/index.lang.php -------------------------------------------------------------------------------- /pcc/data/storage/default/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /pcc/data/templates/smartphone/mobileHeadlineIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/templates/smartphone/mobileHeadlineIndex.html -------------------------------------------------------------------------------- /pcc/data/templates/web/headline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/data/templates/web/headline.html -------------------------------------------------------------------------------- /pcc/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/global.php -------------------------------------------------------------------------------- /pcc/inc/img/acpmenue/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/acpmenue/backup.png -------------------------------------------------------------------------------- /pcc/inc/img/acpmenue/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/acpmenue/database.png -------------------------------------------------------------------------------- /pcc/inc/img/acpmenue/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/acpmenue/info.png -------------------------------------------------------------------------------- /pcc/inc/img/acpmenue/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/acpmenue/settings.png -------------------------------------------------------------------------------- /pcc/inc/img/acpmenue/usermanagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/acpmenue/usermanagement.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/add.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/delete.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/edit.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/editlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/editlist.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/not_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/not_active.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/reboot.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/remove.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/run.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/shutdown.png -------------------------------------------------------------------------------- /pcc/inc/img/buttons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/buttons/stop.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/bootTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/bootTime.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_1.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_10.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_11.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_2.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_3.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/call_type_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/call_type_9.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/clock.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/core.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/coreAvg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/coreAvg.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/coreClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/coreClock.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/coreFeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/coreFeatures.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/coreTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/coreTemp.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/firmware.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/hostname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/hostname.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/kernel.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/memory.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/os.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/overcklock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/overcklock.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/ramSplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/ramSplit.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/revision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/revision.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/serial.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/swap.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/uptime.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/usbCurrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/usbCurrent.png -------------------------------------------------------------------------------- /pcc/inc/img/icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/icons/video.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-icon.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-logo.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-message-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-message-error.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-message-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-message-info.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-message-successfully.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-message-successfully.png -------------------------------------------------------------------------------- /pcc/inc/img/pcc-message-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/img/pcc-message-warning.png -------------------------------------------------------------------------------- /pcc/inc/style/mobile/all/9-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/all/9-icons.css -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/1-jquery_mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/1-jquery_mobile.css -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/ajax-loader.gif -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-svg/eye-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-svg/eye-black.svg -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-svg/eye-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-svg/eye-white.svg -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-svg/tag-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-svg/tag-black.svg -------------------------------------------------------------------------------- /pcc/inc/style/mobile/default/images/icons-svg/tag-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/mobile/default/images/icons-svg/tag-white.svg -------------------------------------------------------------------------------- /pcc/inc/style/web/all/9-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/all/9-icons.css -------------------------------------------------------------------------------- /pcc/inc/style/web/blitzer/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/blitzer/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/blitzer/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/blitzer/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/blitzer/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/blitzer/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/web/dark_hive/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/dark_hive/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/dark_hive/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/dark_hive/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/dark_hive/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/dark_hive/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /pcc/inc/style/web/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /pcc/inc/style/web/redmond/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/redmond/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/redmond/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/redmond/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/redmond/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/redmond/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_darkness/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_darkness/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_darkness/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_darkness/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_darkness/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_darkness/3-style.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_lightness/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_lightness/1-jquery_ui.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_lightness/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_lightness/2-form.css -------------------------------------------------------------------------------- /pcc/inc/style/web/ui_lightness/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/inc/style/web/ui_lightness/3-style.css -------------------------------------------------------------------------------- /pcc/lib/core/pcc.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/core/pcc.class.php -------------------------------------------------------------------------------- /pcc/lib/form/formelements/languagechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/formelements/languagechooser.class.php -------------------------------------------------------------------------------- /pcc/lib/form/formelements/usergroupchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/formelements/usergroupchooser.class.php -------------------------------------------------------------------------------- /pcc/lib/form/formelements/usermaingroupchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/formelements/usermaingroupchooser.class.php -------------------------------------------------------------------------------- /pcc/lib/form/formelements/webstylechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/formelements/webstylechooser.class.php -------------------------------------------------------------------------------- /pcc/lib/form/forms/settingsform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/forms/settingsform.class.php -------------------------------------------------------------------------------- /pcc/lib/form/forms/userform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/forms/userform.class.php -------------------------------------------------------------------------------- /pcc/lib/form/forms/usergroupform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/form/forms/usergroupform.class.php -------------------------------------------------------------------------------- /pcc/lib/template/plugin/acpbuttoncompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/template/plugin/acpbuttoncompilerplugin.class.php -------------------------------------------------------------------------------- /pcc/lib/template/plugin/acpmenuitemcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/template/plugin/acpmenuitemcompilerplugin.class.php -------------------------------------------------------------------------------- /pcc/lib/template/plugin/deletelinkcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/template/plugin/deletelinkcompilerplugin.class.php -------------------------------------------------------------------------------- /pcc/lib/template/plugin/editlinkcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/template/plugin/editlinkcompilerplugin.class.php -------------------------------------------------------------------------------- /pcc/lib/template/plugin/editlistcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/pcc/lib/template/plugin/editlistcompilerplugin.class.php -------------------------------------------------------------------------------- /rwf/data/backup/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.empty 3 | !.gitignore -------------------------------------------------------------------------------- /rwf/data/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.empty 3 | !.gitignore -------------------------------------------------------------------------------- /rwf/data/log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /rwf/data/storage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /rwf/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/global.php -------------------------------------------------------------------------------- /rwf/inc/style/mobile/all/1-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/inc/style/mobile/all/1-jquery.js -------------------------------------------------------------------------------- /rwf/inc/style/mobile/all/2-jquery_mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/inc/style/mobile/all/2-jquery_mobile.js -------------------------------------------------------------------------------- /rwf/inc/style/mobile/default/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/all/1-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/inc/style/web/all/1-jquery.js -------------------------------------------------------------------------------- /rwf/inc/style/web/all/2-jquery_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/inc/style/web/all/2-jquery_ui.js -------------------------------------------------------------------------------- /rwf/inc/style/web/all/3-jquery_cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/inc/style/web/all/3-jquery_cookie.js -------------------------------------------------------------------------------- /rwf/inc/style/web/blitzer/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/dark_hive/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/flick/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/redmond/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/ui_darkness/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/inc/style/web/ui_lightness/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rwf/lib/avm/fritzbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzbox.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxcalllist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxcalllist.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxdevice.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxdevice.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxfactory.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxfactory.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxhosts.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxhosts.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxphone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxphone.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxsmarthome.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxsmarthome.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxwan.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxwan.class.php -------------------------------------------------------------------------------- /rwf/lib/avm/fritzboxwlan.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/avm/fritzboxwlan.class.php -------------------------------------------------------------------------------- /rwf/lib/backup/backup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/backup/backup.class.php -------------------------------------------------------------------------------- /rwf/lib/backup/backupeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/backup/backupeditor.class.php -------------------------------------------------------------------------------- /rwf/lib/benchmark/benchmark.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/benchmark/benchmark.class.php -------------------------------------------------------------------------------- /rwf/lib/classloader/classloader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/classloader/classloader.class.php -------------------------------------------------------------------------------- /rwf/lib/core/rwf.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/core/rwf.class.php -------------------------------------------------------------------------------- /rwf/lib/database/nosql/redis.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/database/nosql/redis.class.php -------------------------------------------------------------------------------- /rwf/lib/database/sql/database.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/database/sql/database.class.php -------------------------------------------------------------------------------- /rwf/lib/database/sql/databaseeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/database/sql/databaseeditor.class.php -------------------------------------------------------------------------------- /rwf/lib/database/sql/drivers/mysqldatabase.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/database/sql/drivers/mysqldatabase.class.php -------------------------------------------------------------------------------- /rwf/lib/date/calendar/calendar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/date/calendar/calendar.class.php -------------------------------------------------------------------------------- /rwf/lib/date/calendar/holidays/germanholidays.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/date/calendar/holidays/germanholidays.class.php -------------------------------------------------------------------------------- /rwf/lib/date/datetime.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/date/datetime.class.php -------------------------------------------------------------------------------- /rwf/lib/date/languagedatetime.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/date/languagedatetime.class.php -------------------------------------------------------------------------------- /rwf/lib/edimax/sp1101w.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/edimax/sp1101w.class.php -------------------------------------------------------------------------------- /rwf/lib/edimax/sp2101w.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/edimax/sp2101w.class.php -------------------------------------------------------------------------------- /rwf/lib/error/error.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/error/error.class.php -------------------------------------------------------------------------------- /rwf/lib/exception/accessdeniedexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/exception/accessdeniedexception.class.php -------------------------------------------------------------------------------- /rwf/lib/exception/jsonexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/exception/jsonexception.class.php -------------------------------------------------------------------------------- /rwf/lib/external/mobile_detect/Mobile_Detect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/external/mobile_detect/Mobile_Detect.php -------------------------------------------------------------------------------- /rwf/lib/external/password/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/external/password/password.php -------------------------------------------------------------------------------- /rwf/lib/form/abstractform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/abstractform.class.php -------------------------------------------------------------------------------- /rwf/lib/form/abstractformelement.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/abstractformelement.class.php -------------------------------------------------------------------------------- /rwf/lib/form/defaulthtmlform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/defaulthtmlform.class.php -------------------------------------------------------------------------------- /rwf/lib/form/form.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/form.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelement.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelement.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/checkboxes.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/checkboxes.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/datechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/datechooser.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/daterangechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/daterangechooser.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/floatinputfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/floatinputfield.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/integerinputfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/integerinputfield.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/onoffoption.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/onoffoption.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/passwordfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/passwordfield.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/radiobuttons.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/radiobuttons.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/select.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/select.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/selectmultiple.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/selectmultiple.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/selectwithemptyelement.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/selectwithemptyelement.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/slider.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/slider.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/textarea.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/textarea.class.php -------------------------------------------------------------------------------- /rwf/lib/form/formelements/textfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/formelements/textfield.class.php -------------------------------------------------------------------------------- /rwf/lib/form/tabbedhtmlform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/form/tabbedhtmlform.class.php -------------------------------------------------------------------------------- /rwf/lib/html/abstracthtmlelement.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/html/abstracthtmlelement.class.php -------------------------------------------------------------------------------- /rwf/lib/io/socket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/io/socket.class.php -------------------------------------------------------------------------------- /rwf/lib/io/socketserver.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/io/socketserver.class.php -------------------------------------------------------------------------------- /rwf/lib/io/socketserverclient.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/io/socketserverclient.class.php -------------------------------------------------------------------------------- /rwf/lib/io/udpsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/io/udpsocket.class.php -------------------------------------------------------------------------------- /rwf/lib/io/udpsocketserver.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/io/udpsocketserver.class.php -------------------------------------------------------------------------------- /rwf/lib/language/language.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/language/language.class.php -------------------------------------------------------------------------------- /rwf/lib/request/abstractcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/abstractcommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/clirequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/clirequest.class.php -------------------------------------------------------------------------------- /rwf/lib/request/cliresponse.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/cliresponse.class.php -------------------------------------------------------------------------------- /rwf/lib/request/command.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/command.class.php -------------------------------------------------------------------------------- /rwf/lib/request/commands/actioncommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/commands/actioncommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/commands/ajaxcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/commands/ajaxcommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/commands/clicommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/commands/clicommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/commands/pagecommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/commands/pagecommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/commands/synccommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/commands/synccommand.class.php -------------------------------------------------------------------------------- /rwf/lib/request/cookie.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/cookie.class.php -------------------------------------------------------------------------------- /rwf/lib/request/file.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/file.class.php -------------------------------------------------------------------------------- /rwf/lib/request/httprequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/httprequest.class.php -------------------------------------------------------------------------------- /rwf/lib/request/httpresponse.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/httpresponse.class.php -------------------------------------------------------------------------------- /rwf/lib/request/request.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/request.class.php -------------------------------------------------------------------------------- /rwf/lib/request/requesthandler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/requesthandler.class.php -------------------------------------------------------------------------------- /rwf/lib/request/response.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/response.class.php -------------------------------------------------------------------------------- /rwf/lib/request/sseresponse.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/request/sseresponse.class.php -------------------------------------------------------------------------------- /rwf/lib/runtime/raspberrypi.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/runtime/raspberrypi.class.php -------------------------------------------------------------------------------- /rwf/lib/runtime/runtime.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/runtime/runtime.class.php -------------------------------------------------------------------------------- /rwf/lib/session/login.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/session/login.class.php -------------------------------------------------------------------------------- /rwf/lib/session/session.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/session/session.class.php -------------------------------------------------------------------------------- /rwf/lib/settings/settings.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/settings/settings.class.php -------------------------------------------------------------------------------- /rwf/lib/style/style.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/style/style.class.php -------------------------------------------------------------------------------- /rwf/lib/style/styleeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/style/styleeditor.class.php -------------------------------------------------------------------------------- /rwf/lib/template/exception/templateexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/exception/templateexception.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/datefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/datefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/datetimefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/datetimefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/filesizebinaryfunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/filesizebinaryfunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/filesizefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/filesizefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/langcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/langcompilerplugin.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/langfunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/langfunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/secondsfunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/secondsfunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/settingcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/settingcompilerplugin.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/srciptprefilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/srciptprefilter.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/timefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/timefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/plugin/timelinefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/plugin/timelinefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/template.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/template.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templateblockplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templateblockplugin.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templatecompiler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templatecompiler.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templatecompilerblockplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templatecompilerblockplugin.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templatecompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templatecompilerplugin.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templatefunction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templatefunction.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templatepostfilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templatepostfilter.class.php -------------------------------------------------------------------------------- /rwf/lib/template/templateprefilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/template/templateprefilter.class.php -------------------------------------------------------------------------------- /rwf/lib/user/guest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/user/guest.class.php -------------------------------------------------------------------------------- /rwf/lib/user/user.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/user/user.class.php -------------------------------------------------------------------------------- /rwf/lib/user/usereditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/user/usereditor.class.php -------------------------------------------------------------------------------- /rwf/lib/user/usergroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/user/usergroup.class.php -------------------------------------------------------------------------------- /rwf/lib/user/visitor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/user/visitor.class.php -------------------------------------------------------------------------------- /rwf/lib/util/arrayutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/arrayutil.class.php -------------------------------------------------------------------------------- /rwf/lib/util/cliutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/cliutil.class.php -------------------------------------------------------------------------------- /rwf/lib/util/datatypeutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/datatypeutil.class.php -------------------------------------------------------------------------------- /rwf/lib/util/fileutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/fileutil.class.php -------------------------------------------------------------------------------- /rwf/lib/util/json.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/json.class.php -------------------------------------------------------------------------------- /rwf/lib/util/message.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/message.class.php -------------------------------------------------------------------------------- /rwf/lib/util/stringutils.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/stringutils.class.php -------------------------------------------------------------------------------- /rwf/lib/util/timeutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/util/timeutil.class.php -------------------------------------------------------------------------------- /rwf/lib/xml/exception/xmlexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/xml/exception/xmlexception.class.php -------------------------------------------------------------------------------- /rwf/lib/xml/xmleditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/xml/xmleditor.class.php -------------------------------------------------------------------------------- /rwf/lib/xml/xmlfilemanager.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/rwf/lib/xml/xmlfilemanager.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/executeswitchcommandajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/executeswitchcommandajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/interface/roomsjsonajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/interface/roomsjsonajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/interface/roomsyncjsonajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/interface/roomsyncjsonajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/pushsensorvaluesajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/pushsensorvaluesajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/roomsync.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/roomsync.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/roomsyncajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/roomsyncajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/all/switchservergetgpioajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/all/switchservergetgpioajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/cli/daemonstatecli.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/cli/daemonstatecli.class.php -------------------------------------------------------------------------------- /shc/data/commands/cli/sensordatattransmittercli.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/cli/sensordatattransmittercli.class.php -------------------------------------------------------------------------------- /shc/data/commands/cli/shedulerdeamoncli.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/cli/shedulerdeamoncli.class.php -------------------------------------------------------------------------------- /shc/data/commands/cli/switchcli.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/cli/switchcli.class.php -------------------------------------------------------------------------------- /shc/data/commands/cli/switchservercli.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/cli/switchservercli.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/acppage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/acppage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/daemonstatepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/daemonstatepage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/infopage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/infopage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/settingsformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/settingsformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/templates/acpinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/templates/acpinfo.html -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/templates/acppage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/templates/acppage.html -------------------------------------------------------------------------------- /shc/data/commands/smartphone/acp/templates/daemonstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/acp/templates/daemonstate.html -------------------------------------------------------------------------------- /shc/data/commands/smartphone/indexpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/indexpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/login/loginajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/login/loginajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/login/logoutaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/login/logoutaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/room/showroompage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/room/showroompage.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/room/templates/roomview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/room/templates/roomview.html -------------------------------------------------------------------------------- /shc/data/commands/smartphone/templates/indexpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/templates/indexpage.html -------------------------------------------------------------------------------- /shc/data/commands/smartphone/userathomeupdateajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/userathomeupdateajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/smartphone/warningsajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/smartphone/warningsajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/acppage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/acppage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/backup/listbackupspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/backup/listbackupspage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/backup/loadbackupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/backup/loadbackupaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/backup/makebackupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/backup/makebackupaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/backup/templates/listbackups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/backup/templates/listbackups.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/daemonstatepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/daemonstatepage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/database/databasepage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/database/databasepage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/database/templates/database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/database/templates/database.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/events/addeventformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/events/addeventformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/events/listeventspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/events/listeventspage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/events/templates/listevents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/events/templates/listevents.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/infopage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/infopage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/addroomformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/addroomformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/deleteroomaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/deleteroomaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/editroomformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/editroomformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/listroomspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/listroomspage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/templates/listrooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/templates/listrooms.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/room/templates/roomform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/room/templates/roomform.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/settingsformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/settingsformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/templates/acpinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/templates/acpinfo.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/templates/acppage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/templates/acppage.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/templates/daemonstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/templates/daemonstate.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/templates/settings.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/addgroupformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/addgroupformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/adduserformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/adduserformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/deletegroupaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/deletegroupaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/deleteuseraction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/deleteuseraction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/editgroupformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/editgroupformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/edituserformpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/edituserformpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/listgroupspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/listgroupspage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/listuserspage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/listuserspage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/templates/groupform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/templates/groupform.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/templates/grouplist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/templates/grouplist.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/templates/userform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/templates/userform.html -------------------------------------------------------------------------------- /shc/data/commands/web/acp/user/templates/userlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/acp/user/templates/userlist.html -------------------------------------------------------------------------------- /shc/data/commands/web/indexpage.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/indexpage.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/login/loginajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/login/loginajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/login/logoutaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/login/logoutaction.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/room/showroomajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/room/showroomajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/room/templates/roomview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/room/templates/roomview.html -------------------------------------------------------------------------------- /shc/data/commands/web/templates/indexpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/templates/indexpage.html -------------------------------------------------------------------------------- /shc/data/commands/web/userathomeupdateajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/userathomeupdateajax.class.php -------------------------------------------------------------------------------- /shc/data/commands/web/warningsajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/commands/web/warningsajax.class.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/acpindex.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/acpindex.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/acpinfo.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/acpinfo.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/backupsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/backupsmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/conditionmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/conditionmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/daemonstate.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/daemonstate.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/database.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/database.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/eventmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/eventmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/roommanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/roommanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/sensorpointsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/sensorpointsmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/settings.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/settings.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/switchablemanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/switchablemanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/switchpointsmanagment.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/switchpointsmanagment.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/switchservermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/switchservermanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/usermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/usermanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/acp/usersathomemanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/acp/usersathomemanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/cli/arduinoreciver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/cli/arduinoreciver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/cli/sensorreciver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/cli/sensorreciver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/cli/sensortransmitterdaemon.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/cli/sensortransmitterdaemon.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/cli/shedulerdaemon.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/cli/shedulerdaemon.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/cli/switchserver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/cli/switchserver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/form.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/form.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/global.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/global.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/index.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/index.lang.php -------------------------------------------------------------------------------- /shc/data/lang/de/room.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/de/room.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/acpindex.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/acpindex.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/acpinfo.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/acpinfo.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/backupsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/backupsmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/conditionmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/conditionmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/daemonstate.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/daemonstate.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/database.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/database.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/eventmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/eventmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/roommanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/roommanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/sensorpointsmanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/sensorpointsmanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/settings.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/settings.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/switchablemanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/switchablemanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/switchpointsmanagment.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/switchpointsmanagment.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/switchservermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/switchservermanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/usermanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/usermanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/acp/usersathomemanagement.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/acp/usersathomemanagement.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/cli/arduinoreciver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/cli/arduinoreciver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/cli/sensorreciver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/cli/sensorreciver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/cli/sensortransmitterdaemon.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/cli/sensortransmitterdaemon.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/cli/shedulerdaemon.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/cli/shedulerdaemon.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/cli/switchserver.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/cli/switchserver.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/form.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/form.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/global.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/global.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/index.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/index.lang.php -------------------------------------------------------------------------------- /shc/data/lang/en/room.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/lang/en/room.lang.php -------------------------------------------------------------------------------- /shc/data/log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /shc/data/storage/default/defaultSensortransmitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/storage/default/defaultSensortransmitter.xml -------------------------------------------------------------------------------- /shc/data/storage/default/defaultSwitchserversettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/storage/default/defaultSwitchserversettings.xml -------------------------------------------------------------------------------- /shc/data/templates/smartphone/mobileHeadlineIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/smartphone/mobileHeadlineIndex.html -------------------------------------------------------------------------------- /shc/data/templates/smartphone/switchables/mobileReboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/smartphone/switchables/mobileReboot.html -------------------------------------------------------------------------------- /shc/data/templates/smartphone/switchables/mobileScript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/smartphone/switchables/mobileScript.html -------------------------------------------------------------------------------- /shc/data/templates/web/headline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/headline.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/activity.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/avmSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/avmSocket.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/countdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/countdown.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/edimaxSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/edimaxSocket.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/fritzBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/fritzBox.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/radiosocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/radiosocket.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/reboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/reboot.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/rpiGpioOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/rpiGpioOutput.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/script.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/shutdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/shutdown.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/virtualSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/virtualSocket.html -------------------------------------------------------------------------------- /shc/data/templates/web/switchables/wakeOnLan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/data/templates/web/switchables/wakeOnLan.html -------------------------------------------------------------------------------- /shc/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/global.php -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/backup.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/conditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/conditions.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/database.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/events.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/info.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/rooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/rooms.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/sensorpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/sensorpoints.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/serserstate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/serserstate.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/settings.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/switchfunctions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/switchfunctions.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/switchpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/switchpoints.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/switchservers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/switchservers.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/usermanagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/usermanagement.png -------------------------------------------------------------------------------- /shc/inc/img/acpmenue/usersathome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/acpmenue/usersathome.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/add.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/delete.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/edit.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/editlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/editlist.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/not_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/not_active.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/remove.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/run.png -------------------------------------------------------------------------------- /shc/inc/img/buttons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/buttons/stop.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/bmp.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/dht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/dht.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/ds18x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/ds18x20.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/gasmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/gasmeter.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/hcsr04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/hcsr04.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/hygrometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/hygrometer.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/ldr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/ldr.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/powersocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/powersocket.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/rain.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/sct013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/sct013.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/thermostat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/thermostat.png -------------------------------------------------------------------------------- /shc/inc/img/sensor/watermeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/sensor/watermeter.png -------------------------------------------------------------------------------- /shc/inc/img/shc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-icon.png -------------------------------------------------------------------------------- /shc/inc/img/shc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-logo.png -------------------------------------------------------------------------------- /shc/inc/img/shc-message-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-message-error.png -------------------------------------------------------------------------------- /shc/inc/img/shc-message-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-message-info.png -------------------------------------------------------------------------------- /shc/inc/img/shc-message-successfully.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-message-successfully.png -------------------------------------------------------------------------------- /shc/inc/img/shc-message-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/shc-message-warning.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/camera.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/camera2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/camera2.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/candles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/candles.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/chip.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/christmasLights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/christmasLights.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/christmasTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/christmasTree.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/clock.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/coffee.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/countdown.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/flashlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/flashlight.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/lamp.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/monitor.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/nas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/nas.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/power.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/printer.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/reboot.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/reconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/reconnect.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/rhythmbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/rhythmbox.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/rollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/rollo.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/shutdown.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/socket.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/star.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/tv.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/waterBoiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/waterBoiler.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/wifi.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/wol_state_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/wol_state_offline.png -------------------------------------------------------------------------------- /shc/inc/img/switchables/wol_state_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/switchables/wol_state_online.png -------------------------------------------------------------------------------- /shc/inc/img/usersathome/userOffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/usersathome/userOffline.png -------------------------------------------------------------------------------- /shc/inc/img/usersathome/userOnline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/img/usersathome/userOnline.png -------------------------------------------------------------------------------- /shc/inc/js/jquery-ui.min.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/js/jquery-ui.min.sortable.js -------------------------------------------------------------------------------- /shc/inc/style/5-jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/5-jquery.ui.touch-punch.min.js -------------------------------------------------------------------------------- /shc/inc/style/mobile/all/9-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/all/9-icons.css -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/1-jquery_mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/1-jquery_mobile.css -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/ajax-loader.gif -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-svg/eye-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-svg/eye-black.svg -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-svg/eye-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-svg/eye-white.svg -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-svg/tag-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-svg/tag-black.svg -------------------------------------------------------------------------------- /shc/inc/style/mobile/default/images/icons-svg/tag-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/mobile/default/images/icons-svg/tag-white.svg -------------------------------------------------------------------------------- /shc/inc/style/web/all/5-jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/all/5-jquery.ui.touch-punch.min.js -------------------------------------------------------------------------------- /shc/inc/style/web/all/9-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/all/9-icons.css -------------------------------------------------------------------------------- /shc/inc/style/web/blitzer/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/blitzer/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/blitzer/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/blitzer/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/blitzer/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/blitzer/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/web/dark_hive/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/dark_hive/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/dark_hive/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/dark_hive/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/dark_hive/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/dark_hive/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/web/flick/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/flick/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/flick/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/web/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /shc/inc/style/web/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /shc/inc/style/web/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /shc/inc/style/web/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /shc/inc/style/web/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /shc/inc/style/web/redmond/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/redmond/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/redmond/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/redmond/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/redmond/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/redmond/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_darkness/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_darkness/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_darkness/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_darkness/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_darkness/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_darkness/3-style.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_lightness/1-jquery_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_lightness/1-jquery_ui.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_lightness/2-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_lightness/2-form.css -------------------------------------------------------------------------------- /shc/inc/style/web/ui_lightness/3-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/inc/style/web/ui_lightness/3-style.css -------------------------------------------------------------------------------- /shc/lib/arduino/arduino.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/arduino/arduino.class.php -------------------------------------------------------------------------------- /shc/lib/command/abstractcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/abstractcommand.class.php -------------------------------------------------------------------------------- /shc/lib/command/command.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/command.class.php -------------------------------------------------------------------------------- /shc/lib/command/commands/gpioinputcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/commands/gpioinputcommand.class.php -------------------------------------------------------------------------------- /shc/lib/command/commands/gpiooutputcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/commands/gpiooutputcommand.class.php -------------------------------------------------------------------------------- /shc/lib/command/commands/radiosocketcommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/commands/radiosocketcommand.class.php -------------------------------------------------------------------------------- /shc/lib/command/commandsheduler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/command/commandsheduler.class.php -------------------------------------------------------------------------------- /shc/lib/condition/abstractcondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/abstractcondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/condition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/condition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditioneditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditioneditor.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/datecondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/datecondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/dayofweekcondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/dayofweekcondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/fileexistscondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/fileexistscondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/firstloopcondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/firstloopcondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/holidayscondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/holidayscondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/inputhighcondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/inputhighcondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/inputlowcondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/inputlowcondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/timeofdaycondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/timeofdaycondition.class.php -------------------------------------------------------------------------------- /shc/lib/condition/conditions/userathomecondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/condition/conditions/userathomecondition.class.php -------------------------------------------------------------------------------- /shc/lib/core/exceptions/assertexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/core/exceptions/assertexception.class.php -------------------------------------------------------------------------------- /shc/lib/core/shc.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/core/shc.class.php -------------------------------------------------------------------------------- /shc/lib/database/nosql/redis.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/database/nosql/redis.class.php -------------------------------------------------------------------------------- /shc/lib/event/abstractevent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/abstractevent.class.php -------------------------------------------------------------------------------- /shc/lib/event/event.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/event.class.php -------------------------------------------------------------------------------- /shc/lib/event/eventeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/eventeditor.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/filecreate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/filecreate.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/filedelete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/filedelete.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/humidityclimbover.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/humidityclimbover.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/humidityfallsbelow.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/humidityfallsbelow.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/inputhigh.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/inputhigh.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/inputlow.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/inputlow.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/lightintensityclimbover.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/lightintensityclimbover.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/lightintensityfallsbelow.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/lightintensityfallsbelow.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/moistureclimbover.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/moistureclimbover.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/moisturefallsbelow.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/moisturefallsbelow.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/sunrise.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/sunrise.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/sunset.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/sunset.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/temperatureclimbover.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/temperatureclimbover.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/temperaturefallsbelow.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/temperaturefallsbelow.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/usercomeshome.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/usercomeshome.class.php -------------------------------------------------------------------------------- /shc/lib/event/events/userleaveshome.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/event/events/userleaveshome.class.php -------------------------------------------------------------------------------- /shc/lib/external/java/SHC_Arduino_Inputreader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/external/java/SHC_Arduino_Inputreader.jar -------------------------------------------------------------------------------- /shc/lib/external/python/bmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/external/python/bmp.py -------------------------------------------------------------------------------- /shc/lib/external/python/dht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/external/python/dht.py -------------------------------------------------------------------------------- /shc/lib/form/formelements/buttontextchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/buttontextchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/conditionschooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/conditionschooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/conditiontypechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/conditiontypechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/dayofweekchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/dayofweekchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/edimaxtypechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/edimaxtypechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/elementsforboxchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/elementsforboxchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/elementtypechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/elementtypechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/eventtypechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/eventtypechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/grouppremissonchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/grouppremissonchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/holidaychooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/holidaychooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/iconchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/iconchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/inputchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/inputchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/ipaddressinputfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/ipaddressinputfield.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/languagechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/languagechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/macaddressinputfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/macaddressinputfield.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/protocolchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/protocolchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/roomchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/roomchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/rpigpiochooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/rpigpiochooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/sensorchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/sensorchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/singleroomchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/singleroomchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/switchablechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/switchablechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/switchcommandchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/switchcommandchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/switchpointschooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/switchpointschooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/switchserverchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/switchserverchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/usergroupchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/usergroupchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/usermaingroupchooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/usermaingroupchooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/usersathomechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/usersathomechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/formelements/webstylechooser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/formelements/webstylechooser.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/boxform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/boxform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/conditions/dateconditionform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/conditions/dateconditionform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/activityform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/activityform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/avmsocketform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/avmsocketform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/countdownform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/countdownform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/edimaxsocketform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/edimaxsocketform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/fritzboxform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/fritzboxform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/radiosocketform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/radiosocketform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/rebootform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/rebootform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/rpigpioinputform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/rpigpioinputform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/rpigpiooutputform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/rpigpiooutputform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/scriptform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/scriptform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/shutdownform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/shutdownform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/virtualsocketform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/virtualsocketform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/elements/wolform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/elements/wolform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/fileeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/fileeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/humidityeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/humidityeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/inputeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/inputeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/lightintensityeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/lightintensityeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/moistureeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/moistureeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/sunriseeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/sunriseeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/temperatureeventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/temperatureeventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/events/usereventform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/events/usereventform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/extendetswitchpointform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/extendetswitchpointform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/roomform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/roomform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensorpointform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensorpointform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/avmmeasuringsocketform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/avmmeasuringsocketform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/bmpsensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/bmpsensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/cometthermostatform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/cometthermostatform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/dhtsensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/dhtsensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/ds18x20sensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/ds18x20sensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/gasmeterform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/gasmeterform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/hcsr04form.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/hcsr04form.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/hygrometersensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/hygrometersensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/ldrsensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/ldrsensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/rainsensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/rainsensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/sct013form.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/sct013form.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/vsensorform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/vsensorform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/sensors/watermeterform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/sensors/watermeterform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/settingsform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/settingsform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/simpleswitchpointform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/simpleswitchpointform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/switchserverform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/switchserverform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/userathomeform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/userathomeform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/userform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/userform.class.php -------------------------------------------------------------------------------- /shc/lib/form/forms/usergroupform.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/form/forms/usergroupform.class.php -------------------------------------------------------------------------------- /shc/lib/room/room.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/room/room.class.php -------------------------------------------------------------------------------- /shc/lib/room/roomeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/room/roomeditor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/abstractsensor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/abstractsensor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractairpressure.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractairpressure.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractaltitude.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractaltitude.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractdistance.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractdistance.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractenergy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractenergy.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractfluidamount.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractfluidamount.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstracthumidity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstracthumidity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractlightintensity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractlightintensity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractmoisture.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractmoisture.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstractpower.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstractpower.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/abstracttemperature.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/abstracttemperature.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/airpressure.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/airpressure.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/altitude.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/altitude.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/distance.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/distance.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/energy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/energy.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/fluidamount.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/fluidamount.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/humidity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/humidity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/lightintensity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/lightintensity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/moisture.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/moisture.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/power.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/power.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/model/temperature.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/model/temperature.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensordatatransmitter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensordatatransmitter.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensoreditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensoreditor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensorpoint.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensorpoint.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensorpointeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensorpointeditor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/avmmeasuringsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/avmmeasuringsocket.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/bmp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/bmp.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/dht.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/dht.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/ds18x20.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/ds18x20.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/edimaxmeasuringsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/edimaxmeasuringsocket.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/gasmeter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/gasmeter.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/hcsr04.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/hcsr04.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/hygrometer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/hygrometer.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/ldr.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/ldr.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/rainsensor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/rainsensor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/sct013.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/sct013.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/sensors/watermeter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/sensors/watermeter.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensor.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/energy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/energy.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/fluidamount.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/fluidamount.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/humidity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/humidity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/lightintensity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/lightintensity.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/moisture.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/moisture.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/power.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/power.class.php -------------------------------------------------------------------------------- /shc/lib/sensor/vsensors/temperature.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sensor/vsensors/temperature.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/abstracttask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/abstracttask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/sheduler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/sheduler.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/task.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/task.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/blinktask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/blinktask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/eventtask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/eventtask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/fritzboxupdatetask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/fritzboxupdatetask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/inputupdatetask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/inputupdatetask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/timertask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/timertask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/userathomeupdatetask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/userathomeupdatetask.class.php -------------------------------------------------------------------------------- /shc/lib/sheduler/tasks/wakeonlanupdatetask.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/sheduler/tasks/wakeonlanupdatetask.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/abstractreadable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/abstractreadable.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/abstractswitchable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/abstractswitchable.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/element.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/element.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/readable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/readable.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/readables/rpigpioinput.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/readables/rpigpioinput.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchable.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchableeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchableeditor.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/activity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/activity.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/avmsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/avmsocket.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/countdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/countdown.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/edimaxsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/edimaxsocket.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/fritzbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/fritzbox.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/radiosocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/radiosocket.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/radiosocketdimmer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/radiosocketdimmer.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/reboot.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/reboot.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/remotereboot.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/remotereboot.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/remoteshutdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/remoteshutdown.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/rpigpiooutput.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/rpigpiooutput.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/script.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/script.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/shutdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/shutdown.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/virtualsocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/virtualsocket.class.php -------------------------------------------------------------------------------- /shc/lib/switchable/switchables/wakeonlan.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchable/switchables/wakeonlan.class.php -------------------------------------------------------------------------------- /shc/lib/switchserver/switchserver.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchserver/switchserver.class.php -------------------------------------------------------------------------------- /shc/lib/switchserver/switchservereditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchserver/switchservereditor.class.php -------------------------------------------------------------------------------- /shc/lib/switchserver/switchserversocket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/switchserver/switchserversocket.class.php -------------------------------------------------------------------------------- /shc/lib/template/plugin/acpbuttoncompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/template/plugin/acpbuttoncompilerplugin.class.php -------------------------------------------------------------------------------- /shc/lib/template/plugin/acpmenuitemcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/template/plugin/acpmenuitemcompilerplugin.class.php -------------------------------------------------------------------------------- /shc/lib/template/plugin/deletelinkcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/template/plugin/deletelinkcompilerplugin.class.php -------------------------------------------------------------------------------- /shc/lib/template/plugin/editlinkcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/template/plugin/editlinkcompilerplugin.class.php -------------------------------------------------------------------------------- /shc/lib/template/plugin/editlistcompilerplugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/template/plugin/editlistcompilerplugin.class.php -------------------------------------------------------------------------------- /shc/lib/timer/switchpoint.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/timer/switchpoint.class.php -------------------------------------------------------------------------------- /shc/lib/timer/switchpointeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/timer/switchpointeditor.class.php -------------------------------------------------------------------------------- /shc/lib/userathome/userathome.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/userathome/userathome.class.php -------------------------------------------------------------------------------- /shc/lib/userathome/userathomeeditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/userathome/userathomeeditor.class.php -------------------------------------------------------------------------------- /shc/lib/util/radiosocketsutil.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/util/radiosocketsutil.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/readableviewhelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/readableviewhelper.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/sensorviewhelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/sensorviewhelper.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/switchableviewhelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/switchableviewhelper.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/viewhelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/viewhelper.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/viewhelperbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/viewhelperbox.class.php -------------------------------------------------------------------------------- /shc/lib/view/room/viewhelpereditor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/view/room/viewhelpereditor.class.php -------------------------------------------------------------------------------- /shc/lib/wakeonlan/wakeonlan.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shc/lib/wakeonlan/wakeonlan.class.php -------------------------------------------------------------------------------- /shcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/shcd.sh -------------------------------------------------------------------------------- /templateTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/templateTags.txt -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agent4788/SHC_Framework/HEAD/update.php --------------------------------------------------------------------------------