settings.php 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606
  1. <?php
  2. $data = false;
  3. ini_set("display_errors", 1);
  4. ini_set("error_reporting", E_ALL | E_STRICT);
  5. require_once("user.php");
  6. require_once("functions.php");
  7. $USER = new User("registration_callback");
  8. if(!$USER->authenticated) :
  9. header( 'Location: error.php?error=999' );
  10. elseif($USER->authenticated && $USER->role !== "admin") :
  11. header( 'Location: error.php?error=401' );
  12. endif;
  13. $dbfile = DATABASE_LOCATION.'users.db';
  14. $databaseLocation = "databaseLocation.ini.php";
  15. $homepageSettings = "homepageSettings.ini.php";
  16. $userdirpath = USER_HOME;
  17. $userdirpath = substr_replace($userdirpath, "", -1);
  18. $file_db = new PDO("sqlite:" . $dbfile);
  19. $file_db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  20. $getUsers = $file_db->query('SELECT * FROM users');
  21. $gotUsers = $file_db->query('SELECT * FROM users');
  22. $dbTab = $file_db->query('SELECT name FROM sqlite_master WHERE type="table" AND name="tabs"');
  23. $dbOptions = $file_db->query('SELECT name FROM sqlite_master WHERE type="table" AND name="options"');
  24. $tabSetup = "Yes";
  25. $hasOptions = "No";
  26. foreach($dbTab as $row) :
  27. if (in_array("tabs", $row)) :
  28. $tabSetup = "No";
  29. endif;
  30. endforeach;
  31. foreach($dbOptions as $row) :
  32. if (in_array("options", $row)) :
  33. $hasOptions = "Yes";
  34. endif;
  35. endforeach;
  36. if($hasOptions == "No") :
  37. $title = "Organizr";
  38. $topbar = "#333333";
  39. $topbartext = "#66D9EF";
  40. $bottombar = "#333333";
  41. $sidebar = "#393939";
  42. $hoverbg = "#AD80FD";
  43. $activetabBG = "#F92671";
  44. $activetabicon = "#FFFFFF";
  45. $activetabtext = "#FFFFFF";
  46. $inactiveicon = "#66D9EF";
  47. $inactivetext = "#66D9EF";
  48. $loading = "#66D9EF";
  49. $hovertext = "#000000";
  50. endif;
  51. if($tabSetup == "No") :
  52. $result = $file_db->query('SELECT * FROM tabs');
  53. endif;
  54. if($hasOptions == "Yes") :
  55. $resulto = $file_db->query('SELECT * FROM options');
  56. endif;
  57. if($hasOptions == "Yes") :
  58. foreach($resulto as $row) :
  59. $title = isset($row['title']) ? $row['title'] : "Organizr";
  60. $topbartext = isset($row['topbartext']) ? $row['topbartext'] : "#66D9EF";
  61. $topbar = isset($row['topbar']) ? $row['topbar'] : "#333333";
  62. $bottombar = isset($row['bottombar']) ? $row['bottombar'] : "#333333";
  63. $sidebar = isset($row['sidebar']) ? $row['sidebar'] : "#393939";
  64. $hoverbg = isset($row['hoverbg']) ? $row['hoverbg'] : "#AD80FD";
  65. $activetabBG = isset($row['activetabBG']) ? $row['activetabBG'] : "#F92671";
  66. $activetabicon = isset($row['activetabicon']) ? $row['activetabicon'] : "#FFFFFF";
  67. $activetabtext = isset($row['activetabtext']) ? $row['activetabtext'] : "#FFFFFF";
  68. $inactiveicon = isset($row['inactiveicon']) ? $row['inactiveicon'] : "#66D9EF";
  69. $inactivetext = isset($row['inactivetext']) ? $row['inactivetext'] : "#66D9EF";
  70. $loading = isset($row['loading']) ? $row['loading'] : "#66D9EF";
  71. $hovertext = isset($row['hovertext']) ? $row['hovertext'] : "#000000";
  72. endforeach;
  73. endif;
  74. $action = "";
  75. if(isset($_POST['action'])) :
  76. $action = $_POST['action'];
  77. endif;
  78. if($action == "deleteDB") :
  79. unset($_COOKIE['Organizr']);
  80. setcookie('Organizr', '', time() - 3600, '/');
  81. unset($_COOKIE['OrganizrU']);
  82. setcookie('OrganizrU', '', time() - 3600, '/');
  83. $file_db = null;
  84. unlink($dbfile);
  85. foreach(glob($userdirpath . '/*') as $file) :
  86. if(is_dir($file)) :
  87. rmdir($file);
  88. elseif(!is_dir($file)) :
  89. unlink($file);
  90. endif;
  91. endforeach;
  92. rmdir($userdirpath);
  93. echo "<script>window.parent.location.reload();</script>";
  94. endif;
  95. if($action == "deleteLog") :
  96. unlink(FAIL_LOG);
  97. echo "<script type='text/javascript'>window.location.replace('settings.php');</script>";
  98. endif;
  99. if($action == "upgrade") :
  100. function downloadFile($url, $path){
  101. $folderPath = "upgrade/";
  102. if(!mkdir($folderPath)) : echo "can't make dir"; endif;
  103. $newfname = $folderPath . $path;
  104. $file = fopen ($url, 'rb');
  105. if ($file) {
  106. $newf = fopen ($newfname, 'wb');
  107. if ($newf) {
  108. while(!feof($file)) {
  109. fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
  110. }
  111. }
  112. }
  113. if ($file) {
  114. fclose($file);
  115. }
  116. if ($newf) {
  117. fclose($newf);
  118. }
  119. }
  120. function unzipFile($zipFile){
  121. $zip = new ZipArchive;
  122. $extractPath = "upgrade/";
  123. if($zip->open($extractPath . $zipFile) != "true"){
  124. echo "Error :- Unable to open the Zip File";
  125. }
  126. /* Extract Zip File */
  127. $zip->extractTo($extractPath);
  128. $zip->close();
  129. }
  130. // Function to remove folders and files
  131. function rrmdir($dir) {
  132. if (is_dir($dir)) {
  133. $files = scandir($dir);
  134. foreach ($files as $file)
  135. if ($file != "." && $file != "..") rrmdir("$dir/$file");
  136. rmdir($dir);
  137. }
  138. else if (file_exists($dir)) unlink($dir);
  139. }
  140. // Function to Copy folders and files
  141. function rcopy($src, $dst) {
  142. if (is_dir ( $src )) {
  143. if (!file_exists($dst)) : mkdir ( $dst ); endif;
  144. $files = scandir ( $src );
  145. foreach ( $files as $file )
  146. if ($file != "." && $file != "..")
  147. rcopy ( "$src/$file", "$dst/$file" );
  148. } else if (file_exists ( $src ))
  149. copy ( $src, $dst );
  150. }
  151. $url = "https://github.com/causefx/Organizr/archive/master.zip";
  152. $file = "upgrade.zip";
  153. $source = __DIR__ . "/upgrade/Organizr-master/";
  154. $cleanup = __DIR__ . "/upgrade/";
  155. $destination = __DIR__ . "/";
  156. downloadFile($url, $file);
  157. unzipFile($file);
  158. rcopy($source, $destination);
  159. rrmdir($cleanup);
  160. echo "<script>top.location.href = 'index.php#upgrade';</script>";
  161. endif;
  162. if($action == 'createLocation' || $action == 'homepageSettings') {
  163. unset($_POST['action']);
  164. updateConfig($_POST);
  165. echo "<script>parent.notify('<strong>".$language->translate("SETTINGS_SAVED")."</strong>','floppy-o','success','5000', '$notifyExplode[0]', '$notifyExplode[1]');</script>";
  166. echo "<script>setTimeout(function() {window.location.href = window.location.href},1500);</script>";
  167. }
  168. if(!isset($_POST['op'])) :
  169. $_POST['op'] = "";
  170. endif;
  171. if($action == "addTabz") :
  172. if($tabSetup == "No") :
  173. $file_db->exec("DELETE FROM tabs");
  174. endif;
  175. if($tabSetup == "Yes") :
  176. $file_db->exec("CREATE TABLE tabs (name TEXT UNIQUE, url TEXT, defaultz TEXT, active TEXT, user TEXT, guest TEXT, icon TEXT, iconurl TEXT, window TEXT)");
  177. endif;
  178. $addTabName = array();
  179. $addTabUrl = array();
  180. $addTabIcon = array();
  181. $addTabIconUrl = array();
  182. $addTabDefault = array();
  183. $addTabActive = array();
  184. $addTabUser = array();
  185. $addTabGuest = array();
  186. $addTabWindow = array();
  187. $buildArray = array();
  188. foreach ($_POST as $key => $value) :
  189. $trueKey = explode('-', $key);
  190. if ($value == "on") :
  191. $value = "true";
  192. endif;
  193. if($trueKey[0] == "name"):
  194. array_push($addTabName, $value);
  195. endif;
  196. if($trueKey[0] == "url"):
  197. array_push($addTabUrl, $value);
  198. endif;
  199. if($trueKey[0] == "icon"):
  200. array_push($addTabIcon, $value);
  201. endif;
  202. if($trueKey[0] == "iconurl"):
  203. array_push($addTabIconUrl, $value);
  204. endif;
  205. if($trueKey[0] == "default"):
  206. array_push($addTabDefault, $value);
  207. endif;
  208. if($trueKey[0] == "active"):
  209. array_push($addTabActive, $value);
  210. endif;
  211. if($trueKey[0] == "user"):
  212. array_push($addTabUser, $value);
  213. endif;
  214. if($trueKey[0] == "guest"):
  215. array_push($addTabGuest, $value);
  216. endif;
  217. if($trueKey[0] == "window"):
  218. array_push($addTabWindow, $value);
  219. endif;
  220. endforeach;
  221. $tabArray = 0;
  222. if(count($addTabName) > 0) :
  223. foreach(range(1,count($addTabName)) as $index) :
  224. if(!isset($addTabDefault[$tabArray])) :
  225. $tabDefault = "false";
  226. else :
  227. $tabDefault = $addTabDefault[$tabArray];
  228. endif;
  229. $buildArray[] = array('name' => $addTabName[$tabArray],
  230. 'url' => $addTabUrl[$tabArray],
  231. 'defaultz' => $tabDefault,
  232. 'active' => $addTabActive[$tabArray],
  233. 'user' => $addTabUser[$tabArray],
  234. 'guest' => $addTabGuest[$tabArray],
  235. 'icon' => $addTabIcon[$tabArray],
  236. 'window' => $addTabWindow[$tabArray],
  237. 'iconurl' => $addTabIconUrl[$tabArray]);
  238. $tabArray++;
  239. endforeach;
  240. endif;
  241. $insert = "INSERT INTO tabs (name, url, defaultz, active, user, guest, icon, iconurl, window)
  242. VALUES (:name, :url, :defaultz, :active, :user, :guest, :icon, :iconurl, :window)";
  243. $stmt = $file_db->prepare($insert);
  244. $stmt->bindParam(':name', $name);
  245. $stmt->bindParam(':url', $url);
  246. $stmt->bindParam(':defaultz', $defaultz);
  247. $stmt->bindParam(':active', $active);
  248. $stmt->bindParam(':user', $user);
  249. $stmt->bindParam(':guest', $guest);
  250. $stmt->bindParam(':icon', $icon);
  251. $stmt->bindParam(':iconurl', $iconurl);
  252. $stmt->bindParam(':window', $window);
  253. foreach ($buildArray as $t) :
  254. $name = $t['name'];
  255. $url = $t['url'];
  256. $defaultz = $t['defaultz'];
  257. $active = $t['active'];
  258. $user = $t['user'];
  259. $guest = $t['guest'];
  260. $icon = $t['icon'];
  261. $iconurl = $t['iconurl'];
  262. $window = $t['window'];
  263. $stmt->execute();
  264. endforeach;
  265. endif;
  266. if($action == "addOptionz") :
  267. if($hasOptions == "Yes") :
  268. $file_db->exec("DELETE FROM options");
  269. endif;
  270. if($hasOptions == "No") :
  271. $file_db->exec("CREATE TABLE options (title TEXT UNIQUE, topbar TEXT, bottombar TEXT, sidebar TEXT, hoverbg TEXT, topbartext TEXT, activetabBG TEXT, activetabicon TEXT, activetabtext TEXT, inactiveicon TEXT, inactivetext TEXT, loading TEXT, hovertext TEXT)");
  272. endif;
  273. $title = $_POST['title'];
  274. $topbartext = $_POST['topbartext'];
  275. $topbar = $_POST['topbar'];
  276. $bottombar = $_POST['bottombar'];
  277. $sidebar = $_POST['sidebar'];
  278. $hoverbg = $_POST['hoverbg'];
  279. $hovertext = $_POST['hovertext'];
  280. $activetabBG = $_POST['activetabBG'];
  281. $activetabicon = $_POST['activetabicon'];
  282. $activetabtext = $_POST['activetabtext'];
  283. $inactiveicon = $_POST['inactiveicon'];
  284. $inactivetext = $_POST['inactivetext'];
  285. $loading = $_POST['loading'];
  286. $insert = "INSERT INTO options (title, topbartext, topbar, bottombar, sidebar, hoverbg, activetabBG, activetabicon, activetabtext, inactiveicon, inactivetext, loading, hovertext)
  287. VALUES (:title, :topbartext, :topbar, :bottombar, :sidebar, :hoverbg, :activetabBG, :activetabicon , :activetabtext , :inactiveicon, :inactivetext, :loading, :hovertext)";
  288. $stmt = $file_db->prepare($insert);
  289. $stmt->bindParam(':title', $title);
  290. $stmt->bindParam(':topbartext', $topbartext);
  291. $stmt->bindParam(':topbar', $topbar);
  292. $stmt->bindParam(':bottombar', $bottombar);
  293. $stmt->bindParam(':sidebar', $sidebar);
  294. $stmt->bindParam(':hoverbg', $hoverbg);
  295. $stmt->bindParam(':activetabBG', $activetabBG);
  296. $stmt->bindParam(':activetabicon', $activetabicon);
  297. $stmt->bindParam(':activetabtext', $activetabtext);
  298. $stmt->bindParam(':inactiveicon', $inactiveicon);
  299. $stmt->bindParam(':inactivetext', $inactivetext);
  300. $stmt->bindParam(':loading', $loading);
  301. $stmt->bindParam(':hovertext', $hovertext);
  302. $stmt->execute();
  303. endif;
  304. if(SLIMBAR == "true") : $slimBar = "30"; $userSize = "25"; else : $slimBar = "56"; $userSize = "40"; endif;
  305. ?>
  306. <!DOCTYPE html>
  307. <html lang="en" class="no-js">
  308. <head>
  309. <meta charset="UTF-8">
  310. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  311. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  312. <meta name="msapplication-tap-highlight" content="no" />
  313. <title>Settings</title>
  314. <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
  315. <link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
  316. <link rel="stylesheet" href="bower_components/mdi/css/materialdesignicons.min.css">
  317. <link rel="stylesheet" href="bower_components/metisMenu/dist/metisMenu.min.css">
  318. <link rel="stylesheet" href="bower_components/Waves/dist/waves.min.css">
  319. <link rel="stylesheet" href="bower_components/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css">
  320. <link rel="stylesheet" href="js/selects/cs-select.css">
  321. <link rel="stylesheet" href="js/selects/cs-skin-elastic.css">
  322. <link href="bower_components/iconpick/dist/css/fontawesome-iconpicker.min.css" rel="stylesheet">
  323. <link rel="stylesheet" href="bower_components/google-material-color/dist/palette.css">
  324. <link rel="stylesheet" href="bower_components/sweetalert/dist/sweetalert.css">
  325. <link rel="stylesheet" href="bower_components/smoke/dist/css/smoke.min.css">
  326. <script src="js/menu/modernizr.custom.js"></script>
  327. <script type="text/javascript" src="js/sha1.js"></script>
  328. <script type="text/javascript" src="js/user.js"></script>
  329. <link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
  330. <link rel="stylesheet" href="bower_components/DataTables/media/css/jquery.dataTables.css">
  331. <link rel="stylesheet" href="bower_components/datatables-tabletools/css/dataTables.tableTools.css">
  332. <link rel="stylesheet" href="bower_components/numbered/jquery.numberedtextarea.css">
  333. <link rel="stylesheet" href="css/style.css?v=<?php echo INSTALLEDVERSION; ?>">
  334. <link href="css/jquery.filer.css" rel="stylesheet">
  335. <link href="css/jquery.filer-dragdropbox-theme.css" rel="stylesheet">
  336. <!--[if lt IE 9]>
  337. <script src="bower_components/html5shiv/dist/html5shiv.min.js"></script>
  338. <script src="bower_components/respondJs/dest/respond.min.js"></script>
  339. <![endif]-->
  340. <!--Scripts-->
  341. <script src="bower_components/jquery/dist/jquery.min.js"></script>
  342. <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
  343. <script src="bower_components/metisMenu/dist/metisMenu.min.js"></script>
  344. <script src="bower_components/Waves/dist/waves.min.js"></script>
  345. <script src="bower_components/moment/min/moment.min.js"></script>
  346. <script src="bower_components/jquery.nicescroll/jquery.nicescroll.min.js"></script>
  347. <script src="bower_components/slimScroll/jquery.slimscroll.min.js"></script>
  348. <script src="bower_components/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js"></script>
  349. <script src="bower_components/cta/dist/cta.min.js"></script>
  350. <!--Menu-->
  351. <script src="js/menu/classie.js"></script>
  352. <script src="bower_components/iconpick/dist/js/fontawesome-iconpicker.js"></script>
  353. <!--Selects-->
  354. <script src="js/selects/selectFx.js"></script>
  355. <script src="js/jscolor.js"></script>
  356. <script src="bower_components/sweetalert/dist/sweetalert.min.js"></script>
  357. <script src="bower_components/smoke/dist/js/smoke.min.js"></script>
  358. <script src="bower_components/numbered/jquery.numberedtextarea.js"></script>
  359. <!--Notification-->
  360. <script src="js/notifications/notificationFx.js"></script>
  361. <script src="js/jqueri_ui_custom/jquery-ui.min.js"></script>
  362. <script src="js/jquery.filer.min.js" type="text/javascript"></script>
  363. <script src="js/custom.js?v=<?php echo INSTALLEDVERSION; ?>" type="text/javascript"></script>
  364. <script src="js/jquery.mousewheel.min.js" type="text/javascript"></script>
  365. <!--Data Tables-->
  366. <script src="bower_components/DataTables/media/js/jquery.dataTables.js"></script>
  367. <script src="bower_components/datatables.net-responsive/js/dataTables.responsive.js"></script>
  368. <script src="bower_components/datatables-tabletools/js/dataTables.tableTools.js"></script>
  369. </head>
  370. <body class="scroller-body" style="padding: 0; background: #273238; overflow: hidden">
  371. <style>
  372. @media screen and (max-width:737px){
  373. .email-body{width: 100%; overflow: auto;}
  374. .email-content, .email-new {
  375. -webkit-overflow-scrolling: touch;
  376. -webkit-transform: translateZ(0);
  377. overflow: scroll;
  378. position: fixed;
  379. height:100% !important;
  380. margin-top:0;
  381. }.email-content .email-header, .email-new .email-header{
  382. padding: 10px 30px;
  383. z-index: 1000;
  384. }
  385. }@media screen and (min-width:737px){
  386. .email-body{width: 100%}
  387. .email-content .close-button, .email-content .email-actions, .email-new .close-button, .email-new .email-actions {
  388. position: relative;
  389. top: 15px;
  390. right: 0px;
  391. float: right;
  392. }.email-inner-section {
  393. margin-top: 50px;
  394. }.email-content, .email-new {
  395. overflow: auto;
  396. margin-top: 0;
  397. height: 100%;
  398. position: fixed;
  399. max-width: 100%;
  400. width: 84%;
  401. right: -84%;
  402. }.email-content .email-header, .email-new .email-header{
  403. position: fixed;
  404. padding: 10px 30px;
  405. width: 84%;
  406. z-index: 1000;
  407. }
  408. }ul.inbox-nav.nav {
  409. background: white;
  410. padding: 5px;
  411. border-radius: 5px;
  412. }.profile-usermenu ul li.active a {
  413. border-left: 3px solid <?=$activetabBG;?> !important;
  414. padding-left: 12px;
  415. }.profile-usermenu ul li a:hover {
  416. background: <?=$hoverbg;?> !important;
  417. color: <?=$hovertext;?> !important;
  418. cursor: pointer;
  419. }input.form-control.material.icp-auto.iconpicker-element.iconpicker-input {
  420. display: none;
  421. }input.form-control.iconpicker-search {
  422. color: black;
  423. }.key {
  424. font-family:Tahoma, sans-serif;
  425. border-style:solid;
  426. border-color:#D5D6AD #C1C1A8 #CDCBA5 #E7E5C5;
  427. border-width:2px 3px 8px 3px;
  428. background:#D6D4B4;
  429. display:inline-block;
  430. border-radius:5px;
  431. margin:3px;
  432. text-align:center;
  433. }.form-control.material {
  434. background-image: -webkit-gradient(linear, left top, left bottom, from(<?=$topbartext;?>), to(<?=$topbartext;?>)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));
  435. background-image: -webkit-linear-gradient(<?=$topbartext;?>, <?=$topbartext;?>), -webkit-linear-gradient(#d2d2d2, #d2d2d2);
  436. background-image: linear-gradient(<?=$topbartext;?>, <?=$topbartext;?>), linear-gradient(#d2d2d2, #d2d2d2);
  437. }.key span {
  438. background:#ECEECA;
  439. color:#5D5E4F;
  440. display:block;
  441. font-size:12px;
  442. padding:0 2px;
  443. border-radius:3px;
  444. width:14px;
  445. height:18px;
  446. line-height:18px;
  447. text-align:center;
  448. font-weight:bold;
  449. letter-spacing:1px;
  450. text-transform:uppercase;
  451. }.key.wide span {
  452. width:auto;
  453. padding:0 12px;
  454. }.dragging{
  455. border: 2px solid;
  456. }.todo .action-btns a span {
  457. color: #76828e !important;
  458. }.todo li:nth-child(even) {
  459. background: #FFFFFF !important;
  460. }.themeImage {
  461. position: fixed;
  462. left: 160px;
  463. top: 0px;
  464. height: 400px;
  465. }.chooseTheme a span {
  466. position:absolute; display:none; z-index:99;
  467. }.chooseTheme a:hover span {
  468. display:block;
  469. }ul.nav.nav-tabs.apps {
  470. border: solid;
  471. border-top: 0;
  472. border-left: 0;
  473. border-right: 0;
  474. border-radius: 0;
  475. }li.apps.active {
  476. border: solid;
  477. border-bottom: 0;
  478. border-radius: 5px;
  479. top: 3px;
  480. }<?php if(CUSTOMCSS == "true") :
  481. $template_file = "custom.css";
  482. $file_handle = fopen($template_file, "rb");
  483. echo fread($file_handle, filesize($template_file));
  484. fclose($file_handle);
  485. echo "\n";
  486. endif; ?>
  487. </style>
  488. <div id="main-wrapper" class="main-wrapper">
  489. <!--Content-->
  490. <div id="content" style="margin:0 10px; overflow:hidden">
  491. <br/>
  492. <div id="versionCheck"></div>
  493. <div class="row">
  494. <div class="col-lg-2">
  495. <?php if($action) : ?>
  496. <button id="apply" style="width: 100%" class="btn waves btn-success btn-sm text-uppercase waves-effect waves-float animated tada" type="submit">
  497. <?php echo $language->translate("APPLY_CHANGES");?>
  498. </button>
  499. <?php endif; ?>
  500. <div class="content-box profile-sidebar box-shadow">
  501. <img src="images/organizr-logo-h-d.png" width="100%" style="margin-top: -10px;">
  502. <div class="profile-usermenu">
  503. <ul class="nav" id="settings-list">
  504. <li class=""><a id="open-tabs"><i class="fa fa-list red-orange"></i>Edit Tabs</a></li>
  505. <li class=""><a id="open-colors"><i class="fa fa-paint-brush green"></i>Edit Colors</a></li>
  506. <li><a id="open-users"><i class="fa fa-user red"></i>Manage Users</a></li>
  507. <li><a id="open-logs"><i class="fa fa-file-text-o blue"></i>View Logs</a></li>
  508. <li><a id="open-homepage"><i class=" fa fa-home yellow"></i>Edit Homepage</a></li>
  509. <li><a id="open-advanced"><i class=" fa fa-cog light-blue"></i>Advanced</a></li>
  510. <li><a id="open-info"><i class=" fa fa-info orange"></i>&nbsp; About</a></li>
  511. </ul>
  512. </div>
  513. </div>
  514. </div>
  515. <div class="col-lg-10">
  516. </div>
  517. </div>
  518. <div class="email-content tab-box white-bg">
  519. <div class="email-body">
  520. <div class="email-header gray-bg">
  521. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  522. <h1>Edit Tabs</h1>
  523. </div>
  524. <div class="email-inner small-box">
  525. <div class="email-inner-section">
  526. <div class="small-box todo-list fade in" id="tab-tabs">
  527. <div class="sort-todo">
  528. <a class="total-tabs"><?php echo $language->translate("TABS");?> <span class="badge gray-bg"></span></a>
  529. <button id="iconHide" type="button" class="btn waves btn-labeled btn-success btn-sm text-uppercase waves-effect waves-float">
  530. <span class="btn-label"><i class="fa fa-upload"></i></span><?php echo $language->translate("UPLOAD_ICONS");?>
  531. </button>
  532. <button id="iconAll" type="button" class="btn waves btn-labeled btn-success btn-sm text-uppercase waves-effect waves-float">
  533. <span class="btn-label"><i class="fa fa-picture-o"></i></span><?php echo $language->translate("VIEW_ICONS");?>
  534. </button>
  535. </div>
  536. <input type="file" name="files[]" id="uploadIcons" multiple="multiple">
  537. <div id="viewAllIcons" style="display: none;">
  538. <h4><strong><?php echo $language->translate("ALL_ICONS");?></strong> [<?php echo $language->translate("CLICK_ICON");?>]</h4>
  539. <div class="row">
  540. <textarea id="copyTarget" class="hideCopy" style="left: -9999px; top: 0; position: absolute;"></textarea>
  541. <?php
  542. $dirname = "images/";
  543. $images = scandir($dirname);
  544. $ignore = Array(".", "..", "favicon/", "favicon", "._.DS_Store", ".DS_Store", "confused.png", "sowwy.png", "sort-btns", "loading.png", "titlelogo.png", "default.svg", "login.png", "themes", "nadaplaying.jpg", "organizr-logo-h-d.png", "organizr-logo-h.png");
  545. foreach($images as $curimg){
  546. if(!in_array($curimg, $ignore)) { ?>
  547. <div class="col-xs-2" style="width: 75px; height: 75px; padding-right: 0px;">
  548. <a data-toggle="tooltip" data-placement="bottom" title="<?=$dirname.$curimg;?>" class="thumbnail" style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);">
  549. <img style="width: 50px; height: 50px;" src="<?=$dirname.$curimg;?>" alt="thumbnail" class="allIcons">
  550. </a>
  551. </div>
  552. <?php } } ?>
  553. </div>
  554. </div>
  555. <form id="add_tab" method="post">
  556. <div class="form-group add-tab">
  557. <div class="input-group">
  558. <div class="input-group-addon">
  559. <i class="fa fa-pencil gray"></i>
  560. </div>
  561. <input type="text" class="form-control name-of-todo" placeholder="<?php echo $language->translate("TYPE_HIT_ENTER");?>" style="border-top-left-radius: 0;
  562. border-bottom-left-radius: 0;">
  563. </div>
  564. </div>
  565. </form>
  566. <div class="panel">
  567. <form id="submitTabs" method="post">
  568. <div class="panel-body todo">
  569. <input type="hidden" name="action" value="addTabz" />
  570. <ul class="list-group ui-sortable">
  571. <?php if($tabSetup == "No") : $tabNum = 1;
  572. foreach($result as $row) :
  573. if($row['defaultz'] == "true") : $default = "checked"; else : $default = ""; endif;
  574. if($row['active'] == "true") : $activez = "checked"; else : $activez = ""; endif;
  575. if($row['guest'] == "true") : $guestz = "checked"; else : $guestz = ""; endif;
  576. if($row['user'] == "true") : $userz = "checked"; else : $userz = ""; endif;
  577. if($row['window'] == "true") : $windowz = "checked"; else : $windowz = ""; endif;
  578. if($row['iconurl'] != "") : $backgroundListImage = "background-image: url('". $row['iconurl'] . "') !important; background-repeat: no-repeat !important; background-position: left !important; background-blend-mode: difference !important; background-size: 50px 50px !important"; else : $backgroundListImage = ""; endif;
  579. ?>
  580. <li id="item-<?=$tabNum;?>" class="list-group-item" style="position: relative; left: 0px; top: 0px;">
  581. <tab class="content-form form-inline">
  582. <div class="form-group">
  583. <div class="action-btns tabIconView" style="width:calc(100%)">
  584. <?php if($backgroundListImage == "") : ?>
  585. <a class="" style="margin-left: 0px"><span style="font: normal normal normal 30px/1 FontAwesome;" class="fa fa-hand-paper-o"></span></a>
  586. <?php endif; ?>
  587. <?php if($backgroundListImage != "") : ?>
  588. <a class="" style="margin-left: 0px"><span style="display: none; font: normal normal normal 30px/1 FontAwesome;" class="fa fa-hand-paper-o"></span></a>
  589. <a class="" style="margin-left: 0px"><span style=""><img style="height: 30px; width: 30px" src="<?=$row['iconurl']?>"></span></a>
  590. <?php endif; ?>
  591. </div>
  592. </div>
  593. <div class="form-group">
  594. <input style="width: 100%;" type="text" class="form-control material input-sm" id="name-<?=$tabNum;?>" name="name-<?=$tabNum;?>" placeholder="<?php echo $language->translate("NEW_TAB_NAME");?>" value="<?=$row['name'];?>">
  595. </div>
  596. <div class="form-group">
  597. <input style="width: 100%;" type="text" class="form-control material input-sm" id="url-<?=$tabNum;?>" name="url-<?=$tabNum;?>" placeholder="<?php echo $language->translate("TAB_URL");?>" value="<?=$row['url']?>">
  598. </div>
  599. <div style="margin-right: 5px;" class="form-group">
  600. <div class="input-group">
  601. <input data-placement="bottomRight" class="form-control material icp-auto" name="icon-<?=$tabNum;?>" value="<?=$row['icon'];?>" type="text" />
  602. <span class="input-group-addon"></span>
  603. </div>
  604. - <?php echo $language->translate("OR");?> -
  605. </div>
  606. <div class="form-group">
  607. <input style="width: 100%;" type="text" class="form-control material input-sm" id="iconurl-<?=$tabNum;?>" name="iconurl-<?=$tabNum;?>" placeholder="<?php echo $language->translate("ICON_URL");?>" value="<?=$row['iconurl']?>">
  608. </div>
  609. <div class="form-group">
  610. <div class="radio radio-danger">
  611. <input type="radio" id="default[<?=$tabNum;?>]" value="true" name="default" <?=$default;?>>
  612. <label for="default[<?=$tabNum;?>]"><?php echo $language->translate("DEFAULT");?></label>
  613. </div>
  614. </div>
  615. <div class="form-group">
  616. <div class="">
  617. <input id="" class="switcher switcher-success" value="false" name="active-<?=$tabNum;?>" type="hidden">
  618. <input id="active[<?=$tabNum;?>]" class="switcher switcher-success" name="active-<?=$tabNum;?>" type="checkbox" <?=$activez;?>>
  619. <label for="active[<?=$tabNum;?>]"></label>
  620. </div>
  621. <?php echo $language->translate("ACTIVE");?>
  622. </div>
  623. <div class="form-group">
  624. <div class="">
  625. <input id="" class="switcher switcher-primary" value="false" name="user-<?=$tabNum;?>" type="hidden">
  626. <input id="user[<?=$tabNum;?>]" class="switcher switcher-primary" name="user-<?=$tabNum;?>" type="checkbox" <?=$userz;?>>
  627. <label for="user[<?=$tabNum;?>]"></label>
  628. </div>
  629. <?php echo $language->translate("USER");?>
  630. </div>
  631. <div class="form-group">
  632. <div class="">
  633. <input id="" class="switcher switcher-primary" value="false" name="guest-<?=$tabNum;?>" type="hidden">
  634. <input id="guest[<?=$tabNum;?>]" class="switcher switcher-warning" name="guest-<?=$tabNum;?>" type="checkbox" <?=$guestz;?>>
  635. <label for="guest[<?=$tabNum;?>]"></label>
  636. </div>
  637. <?php echo $language->translate("GUEST");?>
  638. </div>
  639. <div class="form-group">
  640. <div class="">
  641. <input id="" class="switcher switcher-primary" value="false" name="window-<?=$tabNum;?>" type="hidden">
  642. <input id="window[<?=$tabNum;?>]" class="switcher switcher-danger" name="window-<?=$tabNum;?>" type="checkbox" <?=$windowz;?>>
  643. <label for="window[<?=$tabNum;?>]"></label>
  644. </div>
  645. <?php echo $language->translate("NO_IFRAME");?>
  646. </div>
  647. <div class="pull-right action-btns" style="padding-top: 8px;">
  648. <a class="trash"><span class="fa fa-trash"></span></a>
  649. </div>
  650. </tab>
  651. </li>
  652. <?php $tabNum ++; endforeach; endif;?>
  653. </ul>
  654. </div>
  655. <div class="checkbox clear-todo pull-left"></div>
  656. <button style="margin-top: 5px;" class="btn waves btn-labeled btn-success btn-sm pull-right text-uppercase waves-effect waves-float" type="submit">
  657. <span class="btn-label"><i class="fa fa-floppy-o"></i></span><?php echo $language->translate("SAVE_TABS");?>
  658. </button>
  659. </form>
  660. </div>
  661. </div>
  662. </div>
  663. </div>
  664. </div>
  665. </div>
  666. <div class="email-content color-box white-bg">
  667. <div class="email-body">
  668. <div class="email-header gray-bg">
  669. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  670. <h1>Color Settings</h1>
  671. </div>
  672. <div class="email-inner small-box">
  673. <div class="email-inner-section">
  674. <div class="small-box fade in" id="customedit">
  675. <form id="add_optionz" method="post">
  676. <input type="hidden" name="action" value="addOptionz" />
  677. <div class="btn-group">
  678. <button type="button" class="btn btn-dark dropdown-toggle btn-sm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  679. <?php echo $language->translate("CHOOSE_THEME");?> <span class="caret"></span>
  680. </button>
  681. <ul class="dropdown-menu gray-bg">
  682. <li class="chooseTheme" id="plexTheme" style="border: 1px #FFFFFF; border-style: groove; background: #000000; border-radius: 5px; margin: 5px;"><a style="color: #E49F0C !important;" href="#">Plex<span><img class="themeImage" src="images/themes/plex.png"></span></a></li>
  683. <li class="chooseTheme" id="newPlexTheme" style="border: 1px #E5A00D; border-style: groove; background: #282A2D; border-radius: 5px; margin: 5px;"><a style="color: #E5A00D !important;" href="#">New Plex<span><img class="themeImage" src="images/themes/newplex.png"></span></a></li>
  684. <li class="chooseTheme" id="embyTheme" style="border: 1px #FFFFFF; border-style: groove; background: #212121; border-radius: 5px; margin: 5px;"><a style="color: #52B54B !important;" href="#">Emby<span><img class="themeImage" src="images/themes/emby.png"></span></a></li>
  685. <li class="chooseTheme" id="bookTheme" style="border: 1px #FFFFFF; border-style: groove; background: #3B5998; border-radius: 5px; margin: 5px;"><a style="color: #FFFFFF !important;" href="#">Facebook<span><img class="themeImage" src="images/themes/facebook.png"></span></a></li>
  686. <li class="chooseTheme" id="spaTheme" style="border: 1px #66BBAE; border-style: groove; background: #66BBAE; border-radius: 5px; margin: 5px;"><a style="color: #5B391E !important;" href="#">Spa<span><img class="themeImage" src="images/themes/spa.png"></span></a></li>
  687. <li class="chooseTheme" id="darklyTheme" style="border: 1px #464545; border-style: groove; background: #375A7F; border-radius: 5px; margin: 5px;"><a style="color: #FFFFFF !important;" href="#">Darkly<span><img class="themeImage" src="images/themes/darkly.png"></span></a></li>
  688. <li class="chooseTheme" id="slateTheme" style="border: 1px #58C0DE; border-style: groove; background: #272B30; border-radius: 5px; margin: 5px;"><a style="color: #C8C8C8 !important;" href="#">Slate<span><img class="themeImage" src="images/themes/slate.png"></span></a></li>
  689. <li class="chooseTheme" id="monokaiTheme" style="border: 1px #AD80FD; border-style: groove; background: #333333; border-radius: 5px; margin: 5px;"><a style="color: #66D9EF !important;" href="#">Monokai<span><img class="themeImage" src="images/themes/monokai.png"></span></a></li>
  690. <li class="chooseTheme" id="thejokerTheme" style="border: 1px #CCC6CC; border-style: groove; background: #000000; border-radius: 5px; margin: 5px;"><a style="color: #CCCCCC !important;" href="#">The Joker<span><img class="themeImage" src="images/themes/joker.png"></span></a></li>
  691. <li class="chooseTheme" id="redTheme" style="border: 1px #eb6363; border-style: groove; background: #eb6363; border-radius: 5px; margin: 5px;"><a style="color: #FFFFFF !important;" href="#">Original Red<span><img class="themeImage" src="images/themes/original.png"></span></a></li>
  692. </ul>
  693. </div>
  694. <button id="editCssButton" class="btn waves btn-labeled btn-primary btn-sm text-uppercase waves-effect waves-float" type="button">
  695. <span class="btn-label"><i class="fa fa-css3"></i></span><?php echo $language->translate("EDIT_CUSTOM_CSS");?>
  696. </button>
  697. <button class="btn waves btn-labeled btn-success btn-sm pull-right text-uppercase waves-effect waves-float" type="submit">
  698. <span class="btn-label"><i class="fa fa-floppy-o"></i></span><?php echo $language->translate("SAVE_OPTIONS");?>
  699. </button>
  700. <div class="big-box grids">
  701. <div class="row show-grids col-lg-12">
  702. <h4><strong><?php echo $language->translate("TITLE");?></strong></h4>
  703. <div class="col-md-4 gray-bg">
  704. <center><?php echo $language->translate("TITLE");?></center>
  705. <input name="title" class="form-control gray" value="<?=$title;?>" placeholder="Organizr">
  706. </div>
  707. <div class="col-md-4 gray-bg">
  708. <center><?php echo $language->translate("TITLE_TEXT");?></center>
  709. <input name="topbartext" id="topbartext" class="form-control jscolor {hash:true}" value="<?=$topbartext;?>">
  710. </div>
  711. <div class="col-md-4 gray-bg">
  712. <center><?php echo $language->translate("LOADING_COLOR");?></center>
  713. <input name="loading" id="loading" class="form-control jscolor {hash:true}" value="<?=$loading;?>">
  714. </div>
  715. </div>
  716. <div class="row show-grids col-lg-12">
  717. <h4><strong><?php echo $language->translate("NAVIGATION_BARS");?></strong></h4>
  718. <div class="col-md-4 gray-bg">
  719. <center><?php echo $language->translate("TOP_BAR");?></center>
  720. <input name="topbar" id="topbar" class="form-control jscolor {hash:true}" value="<?=$topbar;?>">
  721. </div>
  722. <div class="col-md-4 gray-bg">
  723. <center><?php echo $language->translate("BOTTOM_BAR");?></center>
  724. <input name="bottombar" id="bottombar" class="form-control jscolor {hash:true}" value="<?=$bottombar;?>">
  725. </div>
  726. <div class="clearfix visible-xs-block"></div>
  727. <div class="col-md-4 gray-bg">
  728. <center><?php echo $language->translate("SIDE_BAR");?></center>
  729. <input name="sidebar" id="sidebar" class="form-control jscolor {hash:true}" value="<?=$sidebar;?>">
  730. </div>
  731. </div>
  732. <div class="row show-grids col-lg-12">
  733. <div class="col-md-6 gray-bg">
  734. <center><?php echo $language->translate("HOVER_BG");?></center>
  735. <input name="hoverbg" id="hoverbg" class="form-control jscolor {hash:true}" value="<?=$hoverbg;?>">
  736. </div>
  737. <div class="col-md-6 gray-bg">
  738. <center><?php echo $language->translate("HOVER_TEXT");?></center>
  739. <input name="hovertext" id="hovertext" class="form-control jscolor {hash:true}" value="<?=$hovertext;?>">
  740. </div>
  741. </div>
  742. <div class="row show-grids col-lg-12">
  743. <h4><strong><?php echo $language->translate("ACTIVE_TAB");?></strong></h4>
  744. <div class="col-md-4 gray-bg">
  745. <center><?php echo $language->translate("ACTIVE_TAB_BG");?></center>
  746. <input name="activetabBG" id="activetabBG" class="form-control jscolor {hash:true}" value=<?=$activetabBG;?>"">
  747. </div>
  748. <div class="col-md-4 gray-bg">
  749. <center><?php echo $language->translate("ACTIVE_TAB_ICON");?></center>
  750. <input name="activetabicon" id="activetabicon" class="form-control jscolor {hash:true}" value="<?=$activetabicon;?>">
  751. </div>
  752. <div class="col-md-4 gray-bg">
  753. <center><?php echo $language->translate("ACTIVE_TAB_TEXT");?></center>
  754. <input name="activetabtext" id="activetabtext" class="form-control jscolor {hash:true}" value="<?=$activetabtext;?>">
  755. </div>
  756. </div>
  757. <div class="row show-grids col-lg-12">
  758. <h4><strong><?php echo $language->translate("INACTIVE_TAB");?></strong></h4>
  759. <div class="col-md-6 gray-bg">
  760. <center><?php echo $language->translate("INACTIVE_ICON");?></center>
  761. <input name="inactiveicon" id="inactiveicon" class="form-control jscolor {hash:true}" value="<?=$inactiveicon;?>">
  762. </div>
  763. <div class="col-md-6 gray-bg">
  764. <center><?php echo $language->translate("INACTIVE_TEXT");?></center>
  765. <input name="inactivetext" id="inactivetext" class="form-control jscolor {hash:true}" value="<?=$inactivetext;?>">
  766. </div>
  767. </div>
  768. </div>
  769. </form>
  770. <form style="display: none" id="editCssForm" method="POST" action="ajax.php">
  771. <button class="btn waves btn-labeled btn-warning btn-sm pull-left text-uppercase waves-effect waves-float" type="button" id="backToThemeButton">
  772. <span class="btn-label"><i class="fa fa-arrow-left"></i></span><?php echo $language->translate("GO_BACK");?>
  773. </button>
  774. <button class="btn waves btn-labeled btn-success btn-sm pull-right text-uppercase waves-effect waves-float" type="submit">
  775. <span class="btn-label"><i class="fa fa-floppy-o"></i></span><?php echo $language->translate("SAVE_CSS");?>
  776. </button>
  777. <br><br>
  778. <input type="hidden" name="submit" value="editCSS" />
  779. <h1><?php echo $language->translate("EDIT_CUSTOM_CSS");?></h1>
  780. <!--<p>Variables Available<code>$topbar - $topbartext - $bottombar - $sidebar - $hoverbg - $activetabBG - $activetabicon - $activetabtext - $inactiveicon - $inactivetext - $loading - $hovertext</code></p>-->
  781. <textarea class="form-control" id="css-show" name="css-show" rows="25" style="background: #000; color: #FFF;">
  782. <?php if(CUSTOMCSS == "true") :
  783. $template_file = "custom.css";
  784. $file_handle = fopen($template_file, "rb");
  785. echo fread($file_handle, filesize($template_file));
  786. fclose($file_handle);
  787. endif;?></textarea>
  788. </form>
  789. </div>
  790. </div>
  791. </div>
  792. </div>
  793. </div>
  794. <div class="email-content homepage-box white-bg">
  795. <?php
  796. $urlPattern = '.*'; // https?:\/\/([-a-zA-Z0-9@:%._\+~#=]{2,256}\.)+[a-z]{2,}\b(:\d{2,5})?[^?.\s]*
  797. echo buildSettings(
  798. array(
  799. 'title' => 'Homepage Settings',
  800. 'id' => 'homepage_settings',
  801. 'tabs' => array(
  802. array(
  803. 'title' => 'Plex',
  804. 'id' => 'plex',
  805. 'image' => 'images/plex.png',
  806. 'fields' => array(
  807. array(
  808. 'type' => 'text',
  809. 'placeholder' => 'http://hostname:32400',
  810. 'labelTranslate' => 'PLEX_URL',
  811. 'assist' => 'http://hostname:32400',
  812. 'name' => 'plexURL',
  813. 'pattern' => $urlPattern,
  814. 'value' => PLEXURL,
  815. ),
  816. array(
  817. 'type' => 'text',
  818. 'placeholder' => randString(20),
  819. 'labelTranslate' => 'PLEX_TOKEN',
  820. 'name' => 'plexToken',
  821. 'pattern' => '[a-zA-Z0-9]{20}',
  822. 'value' => PLEXTOKEN,
  823. ),
  824. array(
  825. array(
  826. 'type' => 'checkbox',
  827. 'labelTranslate' => 'RECENT_MOVIES',
  828. 'name' => 'plexRecentMovie',
  829. 'value' => PLEXRECENTMOVIE,
  830. ),
  831. array(
  832. 'type' => 'checkbox',
  833. 'labelTranslate' => 'RECENT_TV',
  834. 'name' => 'plexRecentTV',
  835. 'value' => PLEXRECENTTV,
  836. ),
  837. array(
  838. 'type' => 'checkbox',
  839. 'labelTranslate' => 'RECENT_MUSIC',
  840. 'name' => 'plexRecentMusic',
  841. 'value' => PLEXRECENTMUSIC,
  842. ),
  843. array(
  844. 'type' => 'checkbox',
  845. 'labelTranslate' => 'PLAYING_NOW',
  846. 'name' => 'plexPlayingNow',
  847. 'value' => PLEXPLAYINGNOW,
  848. ),
  849. ),
  850. ),
  851. ),
  852. array(
  853. 'title' => 'Emby',
  854. 'id' => 'emby',
  855. 'image' => 'images/emby.png',
  856. 'fields' => array(
  857. array(
  858. 'type' => 'text',
  859. 'placeholder' => 'http://hostname:8096/emby',
  860. 'labelTranslate' => 'EMBY_URL',
  861. 'assist' => 'http://hostname:8096 | https://hostname/emby | http://hostname:8096/emby',
  862. 'name' => 'embyURL',
  863. 'pattern' => $urlPattern,
  864. 'value' => EMBYURL,
  865. ),
  866. array(
  867. 'type' => 'text',
  868. 'placeholder' => randString(32),
  869. 'labelTranslate' => 'EMBY_TOKEN',
  870. 'name' => 'plexToken',
  871. 'pattern' => '[a-zA-Z0-9]{32}',
  872. 'value' => EMBYTOKEN,
  873. ),
  874. array(
  875. array(
  876. 'type' => 'checkbox',
  877. 'labelTranslate' => 'RECENT_MOVIES',
  878. 'name' => 'embyRecentMovie',
  879. 'value' => EMBYRECENTMOVIE,
  880. ),
  881. array(
  882. 'type' => 'checkbox',
  883. 'labelTranslate' => 'RECENT_TV',
  884. 'name' => 'embyRecentTV',
  885. 'value' => EMBYRECENTTV,
  886. ),
  887. array(
  888. 'type' => 'checkbox',
  889. 'labelTranslate' => 'RECENT_MUSIC',
  890. 'name' => 'embyRecentMusic',
  891. 'value' => EMBYRECENTMUSIC,
  892. ),
  893. array(
  894. 'type' => 'checkbox',
  895. 'labelTranslate' => 'PLAYING_NOW',
  896. 'name' => 'embyPlayingNow',
  897. 'value' => EMBYPLAYINGNOW,
  898. ),
  899. ),
  900. ),
  901. ),
  902. array(
  903. 'title' => 'Sonarr',
  904. 'id' => 'sonarr',
  905. 'image' => 'images/sonarr.png',
  906. 'fields' => array(
  907. array(
  908. 'type' => 'text',
  909. 'placeholder' => 'http://hostname:8989',
  910. 'labelTranslate' => 'SONARR_URL',
  911. 'assist' => 'http://hostname:8989 | hostname/sonarr | http://hostname:8989/sonarr',
  912. 'name' => 'sonarrURL',
  913. 'pattern' => $urlPattern,
  914. 'value' => SONARRURL,
  915. ),
  916. array(
  917. 'type' => 'text',
  918. 'placeholder' => randString(32),
  919. 'labelTranslate' => 'SONARR_KEY',
  920. 'name' => 'sonarrKey',
  921. 'pattern' => '[a-zA-Z0-9]{32}',
  922. 'value' => SONARRKEY,
  923. ),
  924. ),
  925. ),
  926. array(
  927. 'title' => 'Radarr',
  928. 'id' => 'radarr',
  929. 'image' => 'images/radarr.png',
  930. 'fields' => array(
  931. array(
  932. 'type' => 'text',
  933. 'placeholder' => 'http://hostname:8989',
  934. 'labelTranslate' => 'RADARR_URL',
  935. 'assist' => 'http://hostname:8989 | hostname/radarr | http://hostname:8989/radarr',
  936. 'name' => 'radarrURL',
  937. 'pattern' => $urlPattern,
  938. 'value' => RADARRURL,
  939. ),
  940. array(
  941. 'type' => 'text',
  942. 'placeholder' => randString(32),
  943. 'labelTranslate' => 'RADARR_KEY',
  944. 'name' => 'radarrKey',
  945. 'pattern' => '[a-zA-Z0-9]{32}',
  946. 'value' => RADARRKEY,
  947. ),
  948. ),
  949. ),
  950. array(
  951. 'title' => 'Sickbeard/Sickrage',
  952. 'id' => 'sick',
  953. 'image' => 'images/sickrage.png',
  954. 'fields' => array(
  955. array(
  956. 'type' => 'text',
  957. 'placeholder' => 'http://hostname:8081/sick',
  958. 'labelTranslate' => 'SICK_URL',
  959. 'assist' => 'http://hostname:8081 | hostname/sick | http://hostname:8081/sick',
  960. 'name' => 'sickrageURL',
  961. 'pattern' => $urlPattern,
  962. 'value' => SICKRAGEURL,
  963. ),
  964. array(
  965. 'type' => 'text',
  966. 'placeholder' => randString(32),
  967. 'labelTranslate' => 'SICK_KEY',
  968. 'name' => 'sickrageKey',
  969. //'pattern' => '[a-zA-Z0-9]{32}',
  970. 'value' => SICKRAGEKEY,
  971. ),
  972. ),
  973. ),
  974. array(
  975. 'title' => 'Headphones',
  976. 'id' => 'headphones',
  977. 'image' => 'images/headphones.png',
  978. 'fields' => array(
  979. array(
  980. 'type' => 'text',
  981. 'placeholder' => 'http://hostname:8181',
  982. 'labelTranslate' => 'HEADPHONES_URL',
  983. 'assist' => 'http://hostname:8181',
  984. 'name' => 'headphonesURL',
  985. 'pattern' => $urlPattern,
  986. 'value' => HEADPHONESURL,
  987. ),
  988. array(
  989. 'type' => 'text',
  990. 'placeholder' => randString(32),
  991. 'labelTranslate' => 'HEADPHONES_KEY',
  992. 'name' => 'headphonesKey',
  993. //'pattern' => '[a-zA-Z0-9]{32}',
  994. 'value' => HEADPHONESKEY,
  995. ),
  996. ),
  997. ),
  998. array(
  999. 'title' => 'Sabnzbd',
  1000. 'id' => 'sabnzbd',
  1001. 'image' => 'images/sabnzbd.png',
  1002. 'fields' => array(
  1003. array(
  1004. 'type' => 'text',
  1005. 'placeholder' => 'http://hostname:8080/sabnzbd',
  1006. 'labelTranslate' => 'SABNZBD_URL',
  1007. 'assist' => 'http://hostname:8080 | http://hostname/sabnzbd | http://hostname:8080/sabnzbd',
  1008. 'name' => 'sabnzbdURL',
  1009. 'pattern' => $urlPattern,
  1010. 'value' => SABNZBDURL,
  1011. ),
  1012. array(
  1013. 'type' => 'text',
  1014. 'placeholder' => randString(32),
  1015. 'labelTranslate' => 'SABNZBD_KEY',
  1016. 'name' => 'sabnzbdKey',
  1017. //'pattern' => '[a-zA-Z0-9]{32}',
  1018. 'value' => SABNZBDKEY,
  1019. ),
  1020. ),
  1021. ),
  1022. array(
  1023. 'title' => 'nzbGET',
  1024. 'id' => 'nzbget',
  1025. 'image' => 'images/nzbget.png',
  1026. 'fields' => array(
  1027. array(
  1028. 'type' => 'text',
  1029. 'placeholder' => 'http://hostname:6789',
  1030. 'labelTranslate' => 'NZBGET_URL',
  1031. 'assist' => 'http://hostname:6789',
  1032. 'name' => 'nzbgetURL',
  1033. 'pattern' => $urlPattern,
  1034. 'value' => NZBGETURL,
  1035. ),
  1036. array(
  1037. 'type' => 'text',
  1038. 'labelTranslate' => 'USERNAME',
  1039. 'name' => 'nzbgetUsername',
  1040. //'pattern' => '[a-zA-Z0-9]{32}',
  1041. 'value' => NZBGETUSERNAME,
  1042. ),
  1043. array(
  1044. 'type' => 'password',
  1045. 'labelTranslate' => 'PASSWORD',
  1046. 'name' => 'nzbgetPassword',
  1047. //'pattern' => '[a-zA-Z0-9]{32}',
  1048. 'value' => (empty(NZBGETPASSWORD)?'':randString(20)),
  1049. ),
  1050. ),
  1051. ),
  1052. array(
  1053. 'title' => 'Calendar',
  1054. 'id' => 'calendar',
  1055. 'image' => 'images/calendar.png',
  1056. 'fields' => array(
  1057. array(
  1058. 'type' => 'select',
  1059. 'labelTranslate' => 'CALENDAR_START_DAY',
  1060. 'name' => 'calendarStart',
  1061. 'value' => CALENDARSTART,
  1062. 'options' => array(
  1063. explode('|', translate('DAYS'))[0] => '0',
  1064. explode('|', translate('DAYS'))[1] => '1',
  1065. explode('|', translate('DAYS'))[2] => '2',
  1066. explode('|', translate('DAYS'))[3] => '3',
  1067. explode('|', translate('DAYS'))[4] => '4',
  1068. explode('|', translate('DAYS'))[5] => '5',
  1069. explode('|', translate('DAYS'))[6] => '6',
  1070. ),
  1071. ),
  1072. array(
  1073. 'type' => 'select',
  1074. 'labelTranslate' => 'DEFAULT',
  1075. 'name' => 'calendarView',
  1076. 'value' => CALENDARVIEW,
  1077. 'options' => array(
  1078. translate('MONTH') => 'month',
  1079. translate('DAY') => 'basicDay',
  1080. translate('WEEK') => 'basicWeek',
  1081. ),
  1082. ),
  1083. array(
  1084. 'type' => 'select',
  1085. 'labelTranslate' => 'CALTIMEFORMAT',
  1086. 'name' => 'calTimeFormat',
  1087. 'value' => CALTIMEFORMAT,
  1088. 'options' => array(
  1089. '6p' => 'h(:mm)t',
  1090. '6:00p' => 'h:mmt',
  1091. '6:00' => 'h:mm',
  1092. '18' => 'H(:mm)',
  1093. '18:00' => 'H:mm',
  1094. ),
  1095. ),
  1096. array(
  1097. 'type' => 'number',
  1098. 'placeholder' => '10',
  1099. 'labelTranslate' => 'CALENDAR_START_DATE',
  1100. 'name' => 'calendarStartDay',
  1101. 'pattern' => '[1-9][0-9]+',
  1102. 'value' => CALENDARSTARTDAY,
  1103. ),
  1104. array(
  1105. 'type' => 'number',
  1106. 'placeholder' => '10',
  1107. 'labelTranslate' => 'CALENDAR_END_DATE',
  1108. 'name' => 'calendarEndDay',
  1109. 'pattern' => '[1-9][0-9]+',
  1110. 'value' => CALENDARENDDAY,
  1111. ),
  1112. ),
  1113. ),
  1114. ),
  1115. )
  1116. );
  1117. ?>
  1118. </div>
  1119. <div class="email-content advanced-box white-bg">
  1120. <?php
  1121. $backendOptions = array();
  1122. foreach (array_filter(get_defined_functions()['user'],function($v) { return strpos($v, 'plugin_auth_') === 0; }) as $value) {
  1123. $name = str_replace('plugin_auth_','',$value);
  1124. if (strpos($name, 'disabled') === false) {
  1125. $backendOptions[ucwords(str_replace('_',' ',$name))] = $name;
  1126. } else {
  1127. $backendOptions[$value()] = array(
  1128. 'value' => randString(),
  1129. 'disabled' => true,
  1130. );
  1131. }
  1132. }
  1133. $urlPattern = '.*'; // https?:\/\/([-a-zA-Z0-9@:%._\+~#=]{2,256}\.)+[a-z]{2,}\b(:\d{2,5})?[^?.\s]*
  1134. echo buildSettings(
  1135. array(
  1136. 'title' => 'Advanced Settings',
  1137. 'id' => 'advanced_settings',
  1138. 'onready' => '$(\'.be-auth\').each(function() { $(this).parent().hide(); }); $(\'.be-auth-\'+$(\'#authBackend_id\').val()).each(function() { $(this).parent().show(); });',
  1139. 'fields' => array(
  1140. array(
  1141. 'type' => 'header',
  1142. 'value' => "General",
  1143. ),
  1144. array(
  1145. 'type' => 'text',
  1146. 'labelTranslate' => 'REGISTER_PASSWORD',
  1147. 'name' => 'registerPassword',
  1148. //'pattern' => '[a-zA-Z0-9]{32}',
  1149. 'value' => REGISTERPASSWORD,
  1150. ),
  1151. array(
  1152. 'type' => 'text',
  1153. 'labelTranslate' => 'COOKIE_DOMAIN',
  1154. 'name' => 'domain',
  1155. //'pattern' => '[a-zA-Z0-9]{32}',
  1156. 'value' => DOMAIN,
  1157. ),
  1158. array(
  1159. 'type' => 'password',
  1160. 'labelTranslate' => 'COOKIE_PASSWORD',
  1161. 'name' => 'cookiePassword',
  1162. //'pattern' => '[a-zA-Z0-9]{32}',
  1163. 'value' => (empty(COOKIEPASSWORD)?'':randString(20)),
  1164. ),
  1165. array(
  1166. 'type' => 'checkbox',
  1167. 'labelTranslate' => 'MULTIPLE_LOGINS',
  1168. 'name' => 'multipleLogin',
  1169. //'pattern' => '[a-zA-Z0-9]{32}',
  1170. 'value' => MULTIPLELOGIN,
  1171. ),
  1172. ),
  1173. 'tabs' => array(
  1174. array(
  1175. 'title' => 'Backend Authentication',
  1176. 'id' => 'be_auth',
  1177. 'image' => 'images/security.png',
  1178. 'fields' => array(
  1179. array(
  1180. 'type' => 'select',
  1181. 'labelTranslate' => 'AUTHTYPE',
  1182. 'name' => 'authType',
  1183. 'value' => AUTHTYPE,
  1184. 'options' => array(
  1185. 'Organizr' => 'internal',
  1186. 'Organizr & Backend' => 'both',
  1187. // 'Backend' => 'external',
  1188. ),
  1189. ),
  1190. array(
  1191. 'type' => 'select',
  1192. 'labelTranslate' => 'AUTHBACKEND',
  1193. 'name' => 'authBackend',
  1194. 'onchange' => '$(\'.be-auth\').each(function() { $(this).parent().hide(); }); $(\'.be-auth-\'+this.value).each(function() { $(this).parent().show(); });',
  1195. 'value' => AUTHBACKEND,
  1196. 'options' => $backendOptions,
  1197. ),
  1198. array(
  1199. 'type' => 'select',
  1200. 'labelTranslate' => 'AUTHBACKENDCREATE',
  1201. 'name' => 'authBackendCreate',
  1202. 'value' => AUTHBACKENDCREATE,
  1203. 'options' => array(
  1204. translate('YES_CREATE') => 'true',
  1205. translate('NO_CREATE') => 'false',
  1206. ),
  1207. ),
  1208. array(
  1209. 'type' => 'text',
  1210. 'placeholder' => 'http://hostname:8181',
  1211. 'labelTranslate' => 'AUTHBACKENDHOST',
  1212. 'assist' => 'http(s)://hostname:8181 | Ldap(s)://localhost:389 | ftp(s)://localhost:21',
  1213. 'name' => 'authBackendHost',
  1214. 'class' => 'be-auth be-auth-emby_local be-auth-emby_all be-auth-emby_connect be-auth-ftp be-auth-ldap',
  1215. 'pattern' => $urlPattern,
  1216. 'value' => AUTHBACKENDHOST,
  1217. ),
  1218. array(
  1219. 'type' => 'number',
  1220. 'placeholder' => 'DEPRECIATED',
  1221. 'labelTranslate' => 'AUTHBACKENDPORT',
  1222. 'assist' => 'DEPRECIATED',
  1223. 'name' => 'authBackendPort',
  1224. 'class' => 'be-auth be-auth-emby_local be-auth-emby_all be-auth-emby_connect be-auth-ftp be-auth-ldap',
  1225. 'value' => AUTHBACKENDPORT,
  1226. ),
  1227. array(
  1228. 'type' => 'text',
  1229. 'placeholder' => 'domain',
  1230. 'labelTranslate' => 'AUTHBACKENDDOMAIN',
  1231. 'name' => 'authBackendDomain',
  1232. 'class' => 'be-auth be-auth-ldap',
  1233. 'value' => AUTHBACKENDDOMAIN,
  1234. ),
  1235. array(
  1236. 'type' => 'text',
  1237. 'placeholder' => randString(32),
  1238. 'labelTranslate' => 'EMBY_TOKEN',
  1239. 'name' => 'plexToken',
  1240. 'class' => 'be-auth be-auth-emby_all be-auth-emby_connect',
  1241. 'pattern' => '[a-zA-Z0-9]{32}',
  1242. 'value' => EMBYTOKEN,
  1243. ),
  1244. array(
  1245. 'type' => 'text',
  1246. 'labelTranslate' => 'PLEX_USERNAME',
  1247. 'name' => 'plexUsername',
  1248. 'class' => 'be-auth be-auth-plex',
  1249. //'pattern' => '[a-zA-Z0-9]{32}',
  1250. 'value' => PLEXUSERNAME,
  1251. ),
  1252. array(
  1253. 'type' => 'password',
  1254. 'labelTranslate' => 'PLEX_PASSWORD',
  1255. 'name' => 'plexPassword',
  1256. 'class' => 'be-auth be-auth-plex',
  1257. //'pattern' => '[a-zA-Z0-9]{32}',
  1258. 'value' => (empty(PLEXPASSWORD)?'':randString(20)),
  1259. ),
  1260. ),
  1261. ),
  1262. array(
  1263. 'title' => 'Super Advanced',
  1264. 'id' => 'super_advanced',
  1265. 'image' => 'images/gear.png',
  1266. 'fields' => array(
  1267. array(
  1268. 'type' => 'text',
  1269. 'placeholder' => '/home/www-data/',
  1270. 'labelTranslate' => 'DATABASE_PATH',
  1271. 'name' => 'database_Location',
  1272. 'value' => DATABASE_LOCATION,
  1273. ),
  1274. array(
  1275. 'type' => 'select',
  1276. 'labelTranslate' => 'SET_TIMEZONE',
  1277. 'name' => 'timezone',
  1278. 'value' => TIMEZONE,
  1279. 'options' => timezoneOptions(),
  1280. ),
  1281. ),
  1282. ),
  1283. array(
  1284. 'title' => 'Mail Settings',
  1285. 'id' => 'mail_settings',
  1286. 'image' => 'images/mail.png',
  1287. 'fields' => array(
  1288. array(
  1289. 'type' => 'text',
  1290. 'placeholder' => 'mail.provider.com',
  1291. 'labelTranslate' => 'SMTP_HOST',
  1292. 'name' => 'smtpHost',
  1293. 'pattern' => $urlPattern,
  1294. 'value' => SMTPHOST,
  1295. ),
  1296. array(
  1297. 'type' => 'number',
  1298. 'placeholder' => '465',
  1299. 'labelTranslate' => 'SMTP_HOST_PORT',
  1300. 'name' => 'smtpHostPort',
  1301. 'value' => SMTPHOSTPORT,
  1302. ),
  1303. array(
  1304. 'type' => 'text',
  1305. 'labelTranslate' => 'SMTP_HOST_USERNAME',
  1306. 'name' => 'smtpHostUsername',
  1307. //'pattern' => '[a-zA-Z0-9]{32}',
  1308. 'value' => SMTPHOSTUSERNAME,
  1309. ),
  1310. array(
  1311. 'type' => 'password',
  1312. 'labelTranslate' => 'SMTP_HOST_PASSWORD',
  1313. 'name' => 'smtpHostPassword',
  1314. //'pattern' => '[a-zA-Z0-9]{32}',
  1315. 'value' => (empty(SMTPHOSTPASSWORD)?'':randString(20)),
  1316. ),
  1317. array(
  1318. 'type' => 'text',
  1319. 'labelTranslate' => 'SMTP_HOST_SENDER_NAME',
  1320. 'name' => 'smtpHostSenderName',
  1321. 'value' => SMTPHOSTSENDERNAME,
  1322. ),
  1323. array(
  1324. 'type' => 'text',
  1325. 'labelTranslate' => 'SMTP_HOST_SENDER_EMAIL',
  1326. 'name' => 'smtpHostSenderEmail',
  1327. //'pattern' => '[a-zA-Z0-9]{32}',
  1328. 'value' => SMTPHOSTSENDEREMAIL,
  1329. ),
  1330. array(
  1331. array(
  1332. 'type' => 'checkbox',
  1333. 'labelTranslate' => 'SMTP_HOST_AUTH',
  1334. 'name' => 'smtpHostAuth',
  1335. 'value' => SMTPHOSTAUTH,
  1336. ),
  1337. array(
  1338. 'type' => 'checkbox',
  1339. 'labelTranslate' => 'ENABLE_MAIL',
  1340. 'name' => 'enableMail',
  1341. 'value' => ENABLEMAIL,
  1342. ),
  1343. ),
  1344. ),
  1345. ),
  1346. array(
  1347. 'title' => 'Advanced Visual',
  1348. 'id' => 'advanced_visual',
  1349. 'image' => 'images/paint.png',
  1350. 'fields' => array(
  1351. array(
  1352. 'type' => 'text',
  1353. 'placeholder' => 'images/organizr.png',
  1354. 'labelTranslate' => 'LOADING_ICON_URL',
  1355. 'name' => 'loadingIcon',
  1356. 'value' => LOADINGICON,
  1357. ),
  1358. array(
  1359. 'type' => 'text',
  1360. 'placeholder' => 'images/organizr.png',
  1361. 'labelTranslate' => 'LOGO_URL_TITLE',
  1362. 'name' => 'titleLogo',
  1363. 'value' => TITLELOGO,
  1364. ),
  1365. array(
  1366. 'type' => 'select',
  1367. 'labelTranslate' => 'NOTIFICATION_TYPE',
  1368. 'name' => 'notifyEffect',
  1369. 'onchange' => 'parent.notify(\'This is an example popup!\', \'fa-bullhorn\', \'success\', 4000, this.value.split(\'-\')[0], this.value.split(\'-\')[1]);',
  1370. 'value' => explode("-", NOTIFYEFFECT)[1],
  1371. 'options' => array(
  1372. 'Slide From Top' => 'bar-slidetop',
  1373. 'Exploader From Top' => 'bar-exploader',
  1374. 'Flip' => 'attached-flip',
  1375. 'Bouncy Flip' => 'attached-bouncyflip',
  1376. 'Growl Scale' => 'growl-scale',
  1377. 'Growl Genie' => 'growl-genie',
  1378. 'Growl Jelly' => 'growl-jelly',
  1379. 'Growl Slide' => 'growl-slide',
  1380. 'Spinning Box' => 'other-boxspinner',
  1381. 'Sliding' => 'other-thumbslider',
  1382. ),
  1383. ),
  1384. array(
  1385. array(
  1386. 'type' => 'checkbox',
  1387. 'labelTranslate' => 'ENABLE_LOADING_SCREEN',
  1388. 'name' => 'loadingScreen',
  1389. 'value' => LOADINGSCREEN,
  1390. ),
  1391. array(
  1392. 'type' => 'checkbox',
  1393. 'labelTranslate' => 'ENABLE_SLIMBAR',
  1394. 'name' => 'slimBar',
  1395. 'value' => SLIMBAR,
  1396. ),
  1397. array(
  1398. 'type' => 'checkbox',
  1399. 'labelTranslate' => 'GRAVATAR',
  1400. 'name' => 'gravatar',
  1401. 'value' => GRAVATAR,
  1402. ),
  1403. ),
  1404. ),
  1405. ),
  1406. ),
  1407. )
  1408. );
  1409. ?>
  1410. </div>
  1411. <div class="email-content info-box white-bg">
  1412. <div class="email-body">
  1413. <div class="email-header gray-bg">
  1414. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1415. <h1>About Organizr</h1>
  1416. </div>
  1417. <div class="email-inner small-box">
  1418. <div class="email-inner-section">
  1419. <div class="small-box fade in" id="about">
  1420. <h4><img src="images/organizr-logo-h-d.png" height="50px"></h4>
  1421. <p id="version"></p>
  1422. <p id="submitFeedback">
  1423. <a href='https://reddit.com/r/organizr' target='_blank' type='button' style="background: #AD80FD" class='btn waves btn-labeled btn-success btn text-uppercase waves-effect waves-float'><span class='btn-label'><i class='fa fa-reddit'></i></span>SUBREDDIT</a>
  1424. <a href='https://github.com/causefx/Organizr/issues/new' target='_blank' type='button' class='btn waves btn-labeled btn-success btn text-uppercase waves-effect waves-float'><span class='btn-label'><i class='fa fa-github-alt'></i></span><?php echo $language->translate("SUBMIT_ISSUE");?></a>
  1425. <a href='https://github.com/causefx/Organizr' target='_blank' type='button' class='btn waves btn-labeled btn-primary btn text-uppercase waves-effect waves-float'><span class='btn-label'><i class='fa fa-github'></i></span><?php echo $language->translate("VIEW_ON_GITHUB");?></a>
  1426. <a href='https://gitter.im/Organizrr/Lobby' target='_blank' type='button' class='btn waves btn-labeled btn-dark btn text-uppercase waves-effect waves-float'><span class='btn-label'><i class='fa fa-comments-o'></i></span><?php echo $language->translate("CHAT_WITH_US");?></a>
  1427. <button type="button" class="class='btn waves btn-labeled btn-warning btn text-uppercase waves-effect waves-float" data-toggle="modal" data-target=".Help-Me-modal-lg"><span class='btn-label'><i class='fa fa-life-ring'></i></span><?php echo $language->translate("HELP");?></button>
  1428. <button id="deleteToggle" type="button" class="class='btn waves btn-labeled btn-danger btn text-uppercase waves-effect waves-float" ><span class='btn-label'><i class='fa fa-trash'></i></span><?php echo $language->translate("DELETE_DATABASE");?></button>
  1429. </p>
  1430. <div class="modal fade Help-Me-modal-lg" tabindex="-1" role="dialog">
  1431. <div class="modal-dialog modal-lg" role="document">
  1432. <div class="modal-content" style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;">
  1433. <div class="modal-header">
  1434. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  1435. <h4 class="modal-title"><?php echo $language->translate("HELP");?>!</h4>
  1436. </div>
  1437. <div class="modal-body" style="background: <?php echo $sidebar;?> !important;">
  1438. <div style="margin-bottom: 0px;" class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
  1439. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1440. <div class="panel-heading" role="tab" id="headingOne">
  1441. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
  1442. <?php echo $language->translate("ADDING_TABS");?>
  1443. </h4>
  1444. </div>
  1445. <div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne" aria-expanded="true">
  1446. <div class="panel-body">
  1447. <p><?php echo $language->translate("START_ADDING_TABS");?></p>
  1448. <ul>
  1449. <li><strong><?php echo $language->translate("TAB_URL");?></strong> <?php echo $language->translate("TAB_URL_ABOUT");?></li>
  1450. <li><strong><?php echo $language->translate("ICON_URL");?></strong> <?php echo $language->translate("ICON_URL_ABOUT");?></li>
  1451. <li><strong><?php echo $language->translate("DEFAULT");?></strong> <?php echo $language->translate("DEFAULT_ABOUT");?></li>
  1452. <li><strong><?php echo $language->translate("ACTIVE");?></strong> <?php echo $language->translate("ACTIVE_ABOUT");?></li>
  1453. <li><strong><?php echo $language->translate("USER");?></strong> <?php echo $language->translate("USER_ABOUT");?></li>
  1454. <li><strong><?php echo $language->translate("GUEST");?></strong> <?php echo $language->translate("GUEST_ABOUT");?></li>
  1455. <li><strong><?php echo $language->translate("NO_IFRAME");?></strong> <?php echo $language->translate("NO_IFRAME_ABOUT");?></li>
  1456. </ul>
  1457. </div>
  1458. </div>
  1459. </div>
  1460. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1461. <div class="panel-heading" role="tab" id="headingTwo">
  1462. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
  1463. <?php echo $language->translate("QUICK_ACCESS");?>
  1464. </h4>
  1465. </div>
  1466. <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo" aria-expanded="true">
  1467. <div class="panel-body">
  1468. <p><?php echo $language->translate("QUICK_ACCESS_ABOUT");?> <mark><?php echo getServerPath(); ?>#Sonarr</mark></p>
  1469. </div>
  1470. </div>
  1471. </div>
  1472. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1473. <div class="panel-heading" role="tab" id="headingThree">
  1474. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="true" aria-controls="collapseThree">
  1475. <?php echo $language->translate("SIDE_BY_SIDE");?>
  1476. </h4>
  1477. </div>
  1478. <div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree" aria-expanded="true">
  1479. <div class="panel-body">
  1480. <p><?php echo $language->translate("SIDE_BY_SIDE_ABOUT");?></p>
  1481. <ul>
  1482. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS1");?></li>
  1483. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS2");?> [<i class='mdi mdi-refresh'></i>]</li>
  1484. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS3");?></li>
  1485. </ul>
  1486. </div>
  1487. </div>
  1488. </div>
  1489. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1490. <div class="panel-heading" role="tab" id="headingFour">
  1491. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFour" aria-expanded="true" aria-controls="collapseFour">
  1492. <?php echo $language->translate("KEYBOARD_SHORTCUTS");?>
  1493. </h4>
  1494. </div>
  1495. <div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour" aria-expanded="true">
  1496. <div class="panel-body">
  1497. <p><?php echo $language->translate("KEYBOARD_SHORTCUTS_ABOUT");?></p>
  1498. <ul>
  1499. <li><keyboard class="key"><span>S</span></keyboard> + <keyboard class="key"><span>S</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS1");?></li>
  1500. <li><keyboard class="key"><span>F</span></keyboard> + <keyboard class="key"><span>F</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS6");?></li>
  1501. <li><keyboard class="key"><span>P</span></keyboard> + <keyboard class="key"><span>P</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS7");?></li>
  1502. <li><keyboard class="key"><span>M</span></keyboard> + <keyboard class="key"><span>M</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS8");?></li>
  1503. <li><keyboard class="key wide"><span>Ctrl</span></keyboard> + <keyboard class="key wide"><span>Shift</span></keyboard> + <keyboard class="key"><span>&darr;</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS2");?></li>
  1504. <li><keyboard class="key wide"><span>Ctrl</span></keyboard> + <keyboard class="key wide"><span>Shift</span></keyboard> + <keyboard class="key"><span>&uarr;</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS3");?></li>
  1505. <li><keyboard class="key wide"><span>Ctrl</span></keyboard> + <keyboard class="key wide"><span>Shift</span></keyboard> + <keyboard class="key"><span>1</span></keyboard> - <keyboard class="key"><span>9</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS5");?></li>
  1506. <li><keyboard class="key wide"><span>Esc</span></keyboard> + <keyboard class="key wide"><span>Esc</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS4");?></li>
  1507. </ul>
  1508. </div>
  1509. </div>
  1510. </div>
  1511. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1512. <div class="panel-heading" role="tab" id="headingFive">
  1513. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFive" aria-expanded="true" aria-controls="collapseFive">
  1514. <?php echo $language->translate("TAB_NOT_LOADING");?>
  1515. </h4>
  1516. </div>
  1517. <div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive" aria-expanded="true">
  1518. <div class="panel-body">
  1519. <p><?php echo $language->translate("TAB_NOT_LOADING_ABOUT");?></p>
  1520. <?php
  1521. if(get_browser_name() == "Chrome") : echo get_browser_name() . ": <a href='https://chrome.google.com/webstore/detail/ignore-x-frame-headers/gleekbfjekiniecknbkamfmkohkpodhe' target='_blank'><strong>Ignore X-Frame headers</strong> by Guillaume Ryder</a>";
  1522. elseif(get_browser_name() == "Firefox") : echo get_browser_name() . ": <a href='https://addons.mozilla.org/en-us/firefox/addon/ignore-x-frame-options/' target='_blank'><strong>Ignore X-Frame headers</strong> by rjhoukema</a>";
  1523. else : echo "Sorry, currently there is no other alternative for " . get_browser_name(); endif;
  1524. ?>
  1525. </div>
  1526. </div>
  1527. </div>
  1528. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1529. <div class="panel-heading" role="tab" id="headingSix">
  1530. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseSix" aria-expanded="true" aria-controls="collapseSix">
  1531. <?php echo $language->translate("USER_ICONS");?>
  1532. </h4>
  1533. </div>
  1534. <div id="collapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSix" aria-expanded="true">
  1535. <div class="panel-body">
  1536. <p><?php echo $language->translate("USER_ICONS_ABOUT");?> <a href="http://gravatar.com" target="_blank">gravatar.com</a></p>
  1537. </div>
  1538. </div>
  1539. </div>
  1540. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1541. <div class="panel-heading" role="tab" id="headingSeven">
  1542. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseSeven" aria-expanded="true" aria-controls="collapseSeven">
  1543. <?php echo $language->translate("TRANSLATIONS");?>
  1544. </h4>
  1545. </div>
  1546. <div id="collapseSeven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSeven" aria-expanded="true">
  1547. <div class="panel-body">
  1548. <p><?php echo $language->translate("TRANSLATIONS_ABOUT");?> <a href="https://github.com/causefx/Organizr/tree/develop/lang" target="_blank">Github Develop Branch</a></p>
  1549. </div>
  1550. </div>
  1551. </div>
  1552. </div>
  1553. </div>
  1554. <div class="modal-footer">
  1555. <button type="button" class="btn btn-default waves" data-dismiss="modal"><?php echo $language->translate("CLOSE");?></button>
  1556. </div>
  1557. </div>
  1558. </div>
  1559. </div>
  1560. <p id="whatsnew"></p>
  1561. <p id="downloadnow"></p>
  1562. <div id="deleteDiv" style="display: none;" class="panel panel-danger">
  1563. <div class="panel-heading">
  1564. <h3 class="panel-title"><?php echo $language->translate("DELETE_DATABASE");?></h3>
  1565. </div>
  1566. <div class="panel-body">
  1567. <div class="">
  1568. <p><?php echo $language->translate("DELETE_WARNING");?></p>
  1569. <form id="deletedb" method="post">
  1570. <input type="hidden" name="action" value="deleteDB" />
  1571. <button class="btn waves btn-labeled btn-danger pull-right text-uppercase waves-effect waves-float" type="submit">
  1572. <span class="btn-label"><i class="fa fa-trash"></i></span><?php echo $language->translate("DELETE_DATABASE");?>
  1573. </button>
  1574. </form>
  1575. </div>
  1576. </div>
  1577. </div>
  1578. <div class="timeline-container">
  1579. <div class="row">
  1580. <div class="col-lg-12">
  1581. <ul class="cbp_tmtimeline" id="versionHistory">
  1582. </ul>
  1583. <div class="btn-group-sm btn-group btn-group-justified">
  1584. <div id="loadMore" class="btn-group" role="group">
  1585. <button type="button" class="btn waves btn-primary waves-effect waves-float text-uppercase"><?php echo $language->translate("SHOW_MORE");?></button>
  1586. </div>
  1587. <div id="showLess" class="btn-group" role="group">
  1588. <button type="button" class="btn waves btn-warning waves-effect waves-float text-uppercase"><?php echo $language->translate("SHOW_LESS");?></button>
  1589. </div>
  1590. </div>
  1591. </div>
  1592. </div>
  1593. </div>
  1594. </div>
  1595. </div>
  1596. </div>
  1597. </div>
  1598. </div>
  1599. <div class="email-content users-box white-bg">
  1600. <div class="email-body">
  1601. <div class="email-header gray-bg">
  1602. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1603. <h1>Users Management</h1>
  1604. </div>
  1605. <div class="email-inner small-box">
  1606. <div class="email-inner-section">
  1607. <div class="small-box fade in" id="useredit">
  1608. <div class="row">
  1609. <div class="col-lg-12">
  1610. <div class="small-box">
  1611. <form class="content-form form-inline" name="new user registration" id="registration" action="" method="POST">
  1612. <input type="hidden" name="op" value="register"/>
  1613. <input type="hidden" name="sha1" value=""/>
  1614. <input type="hidden" name="settings" value="true"/>
  1615. <div class="form-group">
  1616. <input type="text" class="form-control material" name="username" placeholder="<?php echo $language->translate("USERNAME");?>" autocorrect="off" autocapitalize="off" value="">
  1617. </div>
  1618. <div class="form-group">
  1619. <input type="email" class="form-control material" name="email" placeholder="<?php echo $language->translate("EMAIL");?>">
  1620. </div>
  1621. <div class="form-group">
  1622. <input type="password" class="form-control material" name="password1" placeholder="<?php echo $language->translate("PASSWORD");?>">
  1623. </div>
  1624. <div class="form-group">
  1625. <input type="password" class="form-control material" name="password2" placeholder="<?php echo $language->translate("PASSWORD_AGAIN");?>">
  1626. </div>
  1627. <button type="submit" onclick="User.processRegistration()" class="btn waves btn-labeled btn-primary btn btn-sm text-uppercase waves-effect waves-float promoteUser">
  1628. <span class="btn-label"><i class="fa fa-user-plus"></i></span><?php echo $language->translate("CREATE_USER");?>
  1629. </button>
  1630. </form>
  1631. </div>
  1632. </div>
  1633. </div>
  1634. <div class="small-box">
  1635. <form class="content-form form-inline" name="unregister" id="unregister" action="" method="POST">
  1636. <p id="inputUsername"></p>
  1637. <div class="table-responsive">
  1638. <table class="table table-striped">
  1639. <thead>
  1640. <tr>
  1641. <th>#</th>
  1642. <th><?php echo $language->translate("USERNAME");?></th>
  1643. <th><?php echo $language->translate("EMAIL");?></th>
  1644. <th><?php echo $language->translate("LOGIN_STATUS");?></th>
  1645. <th><?php echo $language->translate("LAST_SEEN");?></th>
  1646. <th><?php echo $language->translate("USER_GROUP");?></th>
  1647. <th><?php echo $language->translate("USER_ACTIONS");?></th>
  1648. </tr>
  1649. </thead>
  1650. <tbody>
  1651. <?php $countUsers = 1;
  1652. foreach($gotUsers as $row) :
  1653. if($row['role'] == "admin" && $countUsers == 1) :
  1654. $userColor = "red";
  1655. $disableAction = "disabled=\"disabled\"";
  1656. else :
  1657. $userColor = "blue";
  1658. $disableAction = "";
  1659. endif;
  1660. if($row['active'] == "true") :
  1661. $userActive = $language->translate("LOGGED_IN");
  1662. $userActiveColor = "primary";
  1663. else :
  1664. $userActive = $language->translate("LOGGED_OUT");
  1665. $userActiveColor = "danger";
  1666. endif;
  1667. $userpic = md5( strtolower( trim( $row['email'] ) ) );
  1668. if(!empty($row["last"])) :
  1669. $lastActive = date("Y-m-d H:i", intval($row["last"]));
  1670. else :
  1671. $lastActive = "";
  1672. endif;
  1673. ?>
  1674. <tr id="<?=$row['username'];?>">
  1675. <th scope="row"><?=$countUsers;?></th>
  1676. <td><?php if(GRAVATAR == "true") : ?><i class="userpic"><img src="https://www.gravatar.com/avatar/<?=$userpic;?>?s=25&d=mm" class="img-circle"></i> &nbsp; <?php endif; ?><?=$row['username'];?></td>
  1677. <td><?=$row['email'];?></td>
  1678. <td><span class="label label-<?=$userActiveColor;?>"><?=$userActive;?></span></td>
  1679. <td><?=$lastActive;?></td>
  1680. <td><span class="text-uppercase <?=$userColor;?>"><?=$row['role'];?></span></td>
  1681. <td id="<?=$row['username'];?>">
  1682. <button <?=$disableAction;?> class="btn waves btn-labeled btn-danger btn btn-sm text-uppercase waves-effect waves-float deleteUser">
  1683. <span class="btn-label"><i class="fa fa-user-times"></i></span><?php echo $language->translate("DELETE");?>
  1684. </button>
  1685. <?php if ($row['role'] == "user") : ?>
  1686. <button class="btn waves btn-labeled btn-success btn btn-sm text-uppercase waves-effect waves-float promoteUser">
  1687. <span class="btn-label"><i class="fa fa-arrow-up"></i></span><?php echo $language->translate("PROMOTE");?>
  1688. </button>
  1689. <?php endif; ?>
  1690. <?php if ($row['role'] == "admin") : ?>
  1691. <button <?=$disableAction;?> class="btn waves btn-labeled btn-warning btn btn-sm text-uppercase waves-effect waves-float demoteUser">
  1692. <span class="btn-label"><i class="fa fa-arrow-down"></i></span><?php echo $language->translate("DEMOTE");?>
  1693. </button>
  1694. <?php endif; ?>
  1695. </td>
  1696. </tr>
  1697. <?php $countUsers++; endforeach; ?>
  1698. </tbody>
  1699. </table>
  1700. </div>
  1701. </form>
  1702. </div>
  1703. </div>
  1704. </div>
  1705. </div>
  1706. </div>
  1707. </div>
  1708. <div class="email-content logs-box white-bg">
  1709. <div class="email-body">
  1710. <div class="email-header gray-bg">
  1711. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1712. <h1>Logs</h1>
  1713. </div>
  1714. <div class="email-inner small-box">
  1715. <div class="email-inner-section">
  1716. <div class="small-box" id="loginlog">
  1717. <div class="table-responsive">
  1718. <?php if(file_exists(FAIL_LOG)) : ?>
  1719. <div id="loginStats">
  1720. <div class="content-box ultra-widget">
  1721. <div class="w-progress">
  1722. <span id="goodCount" class="w-amount green"></span>
  1723. <span id="badCount" class="w-amount red pull-right">3</span>
  1724. <br>
  1725. <span class="text-uppercase w-name"><?php echo $language->translate("GOOD_LOGINS");?></span>
  1726. <span class="text-uppercase w-name pull-right"><?php echo $language->translate("BAD_LOGINS");?></span>
  1727. </div>
  1728. <div class="progress progress-bar-sm zero-m">
  1729. <div id="goodPercent" class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"></div>
  1730. <div id="badPercent" class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"></div>
  1731. </div>
  1732. <div class="w-status clearfix">
  1733. <div id="goodTitle" class="w-status-title pull-left text-uppercase">20%</div>
  1734. <div id="badTitle" class="w-status-number pull-right text-uppercase">80%</div>
  1735. </div>
  1736. </div>
  1737. </div>
  1738. <table id="datatable" class="display">
  1739. <thead>
  1740. <tr>
  1741. <th><?php echo $language->translate("DATE");?></th>
  1742. <th><?php echo $language->translate("USERNAME");?></th>
  1743. <th><?php echo $language->translate("IP_ADDRESS");?></th>
  1744. <th><?php echo $language->translate("TYPE");?></th>
  1745. </tr>
  1746. </thead>
  1747. <tbody>
  1748. <?php
  1749. $getFailLog = str_replace("\r\ndate", "date", file_get_contents(FAIL_LOG));
  1750. $gotFailLog = json_decode($getFailLog, true);
  1751. $goodLogin = 0;
  1752. $badLogin = 0;
  1753. function getColor($colorTest){
  1754. if($colorTest == "bad_auth") :
  1755. $gotColorTest = "danger";
  1756. elseif($colorTest == "good_auth") :
  1757. $gotColorTest = "primary";
  1758. endif;
  1759. echo $gotColorTest;
  1760. }
  1761. foreach (array_reverse($gotFailLog["auth"]) as $key => $val) :
  1762. if($val["auth_type"] == "bad_auth") : $badLogin++; elseif($val["auth_type"] == "good_auth") : $goodLogin++; endif;
  1763. ?>
  1764. <tr>
  1765. <td><?=$val["date"];?></td>
  1766. <td><?=$val["username"];?></td>
  1767. <td><?=$val["ip"];?></td>
  1768. <td><span class="label label-<?php getColor($val["auth_type"]);?>"><?=$val["auth_type"];?></span></td>
  1769. </tr>
  1770. <?php endforeach; ?>
  1771. </tbody>
  1772. </table>
  1773. <?php
  1774. $totalLogin = $goodLogin + $badLogin;
  1775. $goodPercent = round(($goodLogin / $totalLogin) * 100);
  1776. $badPercent = round(($badLogin / $totalLogin) * 100);
  1777. endif;
  1778. if(!file_exists(FAIL_LOG)) :
  1779. echo $language->translate("NOTHING_LOG");
  1780. endif;
  1781. ?>
  1782. </div>
  1783. </div>
  1784. </div>
  1785. </div>
  1786. </div>
  1787. </div>
  1788. </div>
  1789. <!--End Content-->
  1790. </div>
  1791. <script>
  1792. $(function () {
  1793. //Data Tables
  1794. $('#datatable').DataTable({
  1795. displayLength: 10,
  1796. dom: 'T<"clear">lfrtip',
  1797. responsive: true,
  1798. "order": [[ 0, 'desc' ]],
  1799. "language": {
  1800. "info": "<?php echo explosion($language->translate('SHOW_ENTRY_CURRENT'), 0);?> _START_ <?php echo explosion($language->translate('SHOW_ENTRY_CURRENT'), 1);?> _END_ <?php echo explosion($language->translate('SHOW_ENTRY_CURRENT'), 2);?> _TOTAL_ <?php echo explosion($language->translate('SHOW_ENTRY_CURRENT'), 3);?>",
  1801. "infoEmpty": "<?php echo $language->translate('NO_ENTRIES');?>",
  1802. "infoFiltered": "<?php echo explosion($language->translate('FILTERED'), 0);?> _MAX_ <?php echo explosion($language->translate('FILTERED'), 1);?>",
  1803. "lengthMenu": "<?php echo $language->translate('SHOW');?> _MENU_ <?php echo $language->translate('ENTRIES');?>",
  1804. "search": "",
  1805. "searchPlaceholder": "<?php echo $language->translate('SEARCH');?>",
  1806. "searchClass": "<?php echo $language->translate('SEARCH');?>",
  1807. "zeroRecords": "<?php echo $language->translate('NO_MATCHING');?>",
  1808. "paginate": {
  1809. "next": "<?php echo $language->translate('NEXT');?>",
  1810. "previous": "<?php echo $language->translate('PREVIOUS');?>",
  1811. }
  1812. }
  1813. });
  1814. });
  1815. </script>
  1816. <?php if($_POST['op']) : ?>
  1817. <script>
  1818. parent.notify("<?php echo printArray($USER->info_log); ?>","info-circle","notice","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1819. <?php if(!empty($USER->error_log)) : ?>
  1820. parent.notify("<?php echo printArray($USER->error_log); ?>","exclamation-circle ","error","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1821. <?php endif; ?>
  1822. </script>
  1823. <?php endif; ?>
  1824. <?php if($action == "addTabz") : ?>
  1825. <script>
  1826. if(!window.location.hash) {
  1827. window.location = window.location + '#loaded';
  1828. window.location.reload();
  1829. }else{
  1830. parent.notify("<strong><?php echo $language->translate('TABS_SAVED');?></strong> <?php echo $language->translate('APPLY_RELOAD');?>","floppy-o","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1831. }
  1832. </script>
  1833. <?php endif; ?>
  1834. <?php if($action == "addOptionz") : ?>
  1835. <script>
  1836. parent.notify("<strong><?php echo $language->translate('COLORS_SAVED');?></strong> <?php echo $language->translate('APPLY_RELOAD');?>","floppy-o","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1837. </script>
  1838. <?php endif; ?>
  1839. <script>
  1840. (function($) {
  1841. function startTrigger(e,data) {
  1842. var $elem = $(this);
  1843. $elem.data('mouseheld_timeout', setTimeout(function() {
  1844. $elem.trigger('mouseheld');
  1845. }, e.data));
  1846. }
  1847. function stopTrigger() {
  1848. var $elem = $(this);
  1849. clearTimeout($elem.data('mouseheld_timeout'));
  1850. }
  1851. var mouseheld = $.event.special.mouseheld = {
  1852. setup: function(data) {
  1853. var $this = $(this);
  1854. $this.bind('mousedown', +data || mouseheld.time, startTrigger);
  1855. $this.bind('mouseleave mouseup', stopTrigger);
  1856. },
  1857. teardown: function() {
  1858. var $this = $(this);
  1859. $this.unbind('mousedown', startTrigger);
  1860. $this.unbind('mouseleave mouseup', stopTrigger);
  1861. },
  1862. time: 200 // default to 750ms
  1863. };
  1864. })(jQuery);
  1865. $(function () {
  1866. //$(".todo ul").sortable();
  1867. $(".todo ul").sortable({
  1868. 'opacity': 0.9,
  1869. });
  1870. $("#add_tab").on('submit', function (e) {
  1871. e.preventDefault();
  1872. var $toDo = $(this).find('.name-of-todo');
  1873. toDo_name = $toDo.val();
  1874. if (toDo_name.length >= 3) {
  1875. var newid = $('.list-group-item').length + 1;
  1876. $(".todo ul").append(
  1877. '<li id="item-' + newid + '" class="list-group-item animated zoomInDown" style="position: relative; left: 0px; top: 0px;"><tab class="content-form form-inline"> <div class="form-group"><div class="action-btns" style="width:calc(100%)"><a class="" style="margin-left: 0px"><span style="font: normal normal normal 30px/1 FontAwesome;" class="fa fa-hand-paper-o"></span></a></div></div> <div class="form-group"><input style="width: 100%;" type="text" class="form-control material input-sm" name="name-' + newid + '" id="name[' + newid + ']" placeholder="<?php echo $language->translate("NEW_TAB_NAME");?>" value="' + toDo_name + '"></div> <div class="form-group"><input style="width: 100%;" type="text" class="form-control material input-sm" name="url-' + newid + '" id="url[' + newid + ']" placeholder="<?php echo $language->translate("TAB_URL");?>"></div> <div style="margin-right: 5px;" class="form-group"><div class="input-group"><input style="width: 100%;" name="icon-' + newid + '" data-placement="bottomRight" class="form-control material icp-auto" value="fa-diamond" type="text" /><span class="input-group-addon"></span></div> - <?php echo $language->translate("OR");?> -</div> <div class="form-group"><input style="width: 100%;" type="text" class="form-control material input-sm" id="iconurl-' + newid + '" name="iconurl-' + newid + '" placeholder="<?php echo $language->translate("ICON_URL");?>" value=""></div> <div class="form-group"> <div class="radio radio-danger"> <input type="radio" name="default" id="default[' + newid + ']" name="default"> <label for="default[' + newid + ']"><?php echo $language->translate("DEFAULT");?></label></div></div> <div class="form-group"><div class=""><input id="" class="switcher switcher-success" value="false" name="active-' + newid + '" type="hidden"><input name="active-' + newid + '" id="active[' + newid + ']" class="switcher switcher-success" type="checkbox" checked=""><label for="active[' + newid + ']"></label></div> <?php echo $language->translate("ACTIVE");?></div> <div class="form-group"><div class=""><input id="" class="switcher switcher-primary" value="false" name="user-' + newid + '" type="hidden"><input id="user[' + newid + ']" name="user-' + newid + '" class="switcher switcher-primary" type="checkbox" checked=""><label for="user[' + newid + ']"></label></div> <?php echo $language->translate("USER");?></div> <div class="form-group"><div class=""><input id="" class="switcher switcher-primary" value="false" name="guest-' + newid + '" type="hidden"><input name="guest-' + newid + '" id="guest[' + newid + ']" class="switcher switcher-warning" type="checkbox" checked=""><label for="guest[' + newid + ']"></label></div> <?php echo $language->translate("GUEST");?></div> <div class="form-group"><div class=""><input id="" class="switcher switcher-primary" value="false" name="window-' + newid + '" type="hidden"><input name="window-' + newid + '" id="window[' + newid + ']" class="switcher switcher-danger" type="checkbox"><label for="window[' + newid + ']"></label></div> <?php echo $language->translate("NO_IFRAME");?></div><div class="pull-right action-btns" style="padding-top: 8px;"><a class="trash"><span class="fa fa-trash"></span></a></div></tab></li>'
  1878. );
  1879. $('.icp-auto').iconpicker({placement: 'left', hideOnSelect: false, collision: true});
  1880. var eventObject = {
  1881. title: $.trim($("#" + newid).text()),
  1882. className: $("#" + newid).attr("data-bg"),
  1883. stick: true
  1884. };
  1885. $("#" + newid).data('eventObject', eventObject);
  1886. $toDo.val('').focus();
  1887. } else {
  1888. $toDo.focus();
  1889. }
  1890. });
  1891. count();
  1892. $(".list-group-item").addClass("list-item");
  1893. //Remove one completed item
  1894. $(document).on('click', '.trash', function (e) {
  1895. var listItemRemove = $(this).closest(".list-group-item");
  1896. var animation = "zoomOutRight";
  1897. var container = $(this).closest(".list-group-item");
  1898. //container.attr('class', 'list-group-item gray-bg animation-container');
  1899. container.addClass('animated ' + animation);
  1900. setTimeout(function() {
  1901. var clearedCompItem = listItemRemove.remove();
  1902. console.log("removed");
  1903. e.preventDefault();
  1904. count();
  1905. }, 800);
  1906. });
  1907. //Count items
  1908. function count() {
  1909. var active = $('.list-group-item').length;
  1910. $('.total-tabs span').text(active);
  1911. };
  1912. $("#submitTabs").on('submit', function (e) {
  1913. console.log("submitted");
  1914. $("div.radio").each(function(i) {
  1915. $(this).find('input').attr('name', 'default-' + i);
  1916. console.log(i);
  1917. });
  1918. $('form input[type="radio"]').not(':checked').each(function() {
  1919. $(this).prop('checked', true);
  1920. $(this).prop('value', "false");
  1921. console.log("found unchecked");
  1922. });
  1923. });
  1924. $('#apply').on('click touchstart', function(){
  1925. window.parent.location.reload();
  1926. });
  1927. });
  1928. </script>
  1929. <script>
  1930. function rememberTabSelection(tabPaneSelector, useHash) {
  1931. var key = 'selectedTabFor' + tabPaneSelector;
  1932. if(get(key))
  1933. $(tabPaneSelector).find('a[href=' + get(key) + ']').tab('show');
  1934. $(tabPaneSelector).on("click", 'a[data-toggle]', function(event) {
  1935. set(key, this.getAttribute('href'));
  1936. });
  1937. function get(key) {
  1938. return useHash ? location.hash: localStorage.getItem(key);
  1939. }
  1940. function set(key, value){
  1941. if(useHash)
  1942. location.hash = value;
  1943. else
  1944. localStorage.setItem(key, value);
  1945. }
  1946. }
  1947. $("#notifyTest").click(function(){
  1948. var notifySplit = $("#notifyValue").val().split("-");
  1949. console.log(notifySplit[0]);
  1950. parent.notify("<?php echo $language->translate('TEST_MESSAGE');?>","flask","notice","5000", notifySplit[0], notifySplit[1]);
  1951. });
  1952. $("#iconHide").click(function(){
  1953. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).toggle();
  1954. });
  1955. $("#iconAll").click(function(){
  1956. $( "div[id^='viewAllIcons']" ).toggle();
  1957. });
  1958. $("#deleteToggle").click(function(){
  1959. $( "#deleteDiv" ).toggle();
  1960. });
  1961. $("#editCssButton").click(function(){
  1962. $( "#add_optionz" ).toggle();
  1963. $( "#editCssForm" ).toggle();
  1964. });
  1965. $("#backToThemeButton").click(function(){
  1966. $( "#add_optionz" ).toggle();
  1967. $( "#editCssForm" ).toggle();
  1968. });
  1969. $(".deleteUser").click(function(){
  1970. var parent_id = $(this).parent().attr('id');
  1971. editUsername = $('#unregister').find('#inputUsername');
  1972. $(editUsername).html('<input type="hidden" name="op" value="unregister"/><input type="hidden" name="username"value="' + parent_id + '" />');
  1973. });
  1974. $(".promoteUser").click(function(){
  1975. var parent_ids = $(this).parent().attr('id');
  1976. editUsername = $('#unregister').find('#inputUsername');
  1977. $(editUsername).html('<input type="hidden" name="op" value="update"/><input type="hidden" name="role" value="admin"/><input type="hidden" name="username"value="' + parent_ids + '" />');
  1978. });
  1979. $(".demoteUser").click(function(){
  1980. var parent_idz = $(this).parent().attr('id');
  1981. editUsername = $('#unregister').find('#inputUsername');
  1982. $(editUsername).html('<input type="hidden" name="op" value="update"/><input type="hidden" name="role" value="user"/><input type="hidden" name="username"value="' + parent_idz + '" />');
  1983. });
  1984. $('#showLess').hide();
  1985. $('#loadMore').click(function () {
  1986. x= (x+5 <= size_li) ? x+5 : size_li;
  1987. $('#versionHistory li:lt('+x+')').show();
  1988. $('#showLess').show();
  1989. if(x == size_li){
  1990. $('#loadMore').hide();
  1991. }
  1992. });
  1993. $('#showLess').click(function () {
  1994. $('#versionHistory li').not(':lt(2)').hide();
  1995. $('#loadMore').show();
  1996. $('#showLess').hide();
  1997. });
  1998. $('.icp-auto').iconpicker({placement: 'left', hideOnSelect: false, collision: true});
  1999. $("li[class^='list-group-item']").bind('mouseheld', function(e) {
  2000. $(this).find("span[class^='fa fa-hand-paper-o']").attr("class", "fa fa-hand-grab-o");
  2001. $(this).addClass("dragging");
  2002. $(this).find("div[class^='action-btns tabIconView']").addClass("animated swing");
  2003. $(this).mouseup(function() {
  2004. $(this).find("span[class^='fa fa-hand-grab-o']").attr("class", "fa fa-hand-paper-o");
  2005. $(this).removeClass("dragging");
  2006. $(this).find("div[class^='action-btns tabIconView']").removeClass("animated swing");
  2007. });
  2008. });
  2009. function copyToClipboard(elem) {
  2010. // create hidden text element, if it doesn't already exist
  2011. var targetId = "_hiddenCopyText_";
  2012. var isInput = elem.tagName === "INPUT" || elem.tagName === "TEXTAREA";
  2013. var origSelectionStart, origSelectionEnd;
  2014. if (isInput) {
  2015. // can just use the original source element for the selection and copy
  2016. target = elem;
  2017. origSelectionStart = elem.selectionStart;
  2018. origSelectionEnd = elem.selectionEnd;
  2019. } else {
  2020. // must use a temporary form element for the selection and copy
  2021. target = document.getElementById(targetId);
  2022. if (!target) {
  2023. var target = document.createElement("textarea");
  2024. target.style.position = "absolute";
  2025. target.style.left = "-9999px";
  2026. target.style.top = "0";
  2027. target.id = targetId;
  2028. document.body.appendChild(target);
  2029. }
  2030. target.textContent = elem.textContent;
  2031. }
  2032. // select the content
  2033. var currentFocus = document.activeElement;
  2034. target.focus();
  2035. target.setSelectionRange(0, target.value.length);
  2036. // copy the selection
  2037. var succeed;
  2038. try {
  2039. succeed = document.execCommand("copy");
  2040. } catch(e) {
  2041. succeed = false;
  2042. }
  2043. // restore original focus
  2044. if (currentFocus && typeof currentFocus.focus === "function") {
  2045. //currentFocus.focus();
  2046. }
  2047. if (isInput) {
  2048. // restore prior selection
  2049. elem.setSelectionRange(origSelectionStart, origSelectionEnd);
  2050. } else {
  2051. // clear temporary content
  2052. target.textContent = "";
  2053. }
  2054. return succeed;
  2055. }
  2056. $("img[class^='allIcons']").click(function(){
  2057. $("textarea[id^='copyTarget']").val($(this).attr("src"));
  2058. copyToClipboard(document.getElementById("copyTarget"));
  2059. parent.notify("<?php echo $language->translate('ICON_COPY');?>","clipboard","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  2060. $( "div[id^='viewAllIcons']" ).toggle();
  2061. });
  2062. $('body').on('click', 'b.allIcons', function() {
  2063. $("textarea[id^='copyTarget2']").val($(this).attr("title"));
  2064. copyToClipboard(document.getElementById("copyTarget2"));
  2065. parent.notify("<?php echo $language->translate('ICON_COPY');?>","clipboard","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  2066. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).hide();
  2067. });
  2068. </script>
  2069. <script>
  2070. //Custom Themes
  2071. function changeColor(elementName, elementColor) {
  2072. var definedElement = document.getElementById(elementName);
  2073. definedElement.focus();
  2074. definedElement.value = elementColor;
  2075. definedElement.style.backgroundColor = elementColor;
  2076. }
  2077. $('#plexTheme').on('click touchstart', function(){
  2078. changeColor("topbartext", "#E49F0C");
  2079. changeColor("topbar", "#000000");
  2080. changeColor("bottombar", "#000000");
  2081. changeColor("sidebar", "#121212");
  2082. changeColor("hoverbg", "#FFFFFF");
  2083. changeColor("activetabBG", "#E49F0C");
  2084. changeColor("activetabicon", "#FFFFFF");
  2085. changeColor("activetabtext", "#FFFFFF");
  2086. changeColor("inactiveicon", "#949494");
  2087. changeColor("inactivetext", "#B8B8B8");
  2088. changeColor("loading", "#E49F0C");
  2089. changeColor("hovertext", "#000000");
  2090. });
  2091. $('#embyTheme').on('click touchstart', function(){
  2092. changeColor("topbartext", "#52B54B");
  2093. changeColor("topbar", "#212121");
  2094. changeColor("bottombar", "#212121");
  2095. changeColor("sidebar", "#121212");
  2096. changeColor("hoverbg", "#FFFFFF");
  2097. changeColor("activetabBG", "#52B54B");
  2098. changeColor("activetabicon", "#FFFFFF");
  2099. changeColor("activetabtext", "#FFFFFF");
  2100. changeColor("inactiveicon", "#949494");
  2101. changeColor("inactivetext", "#B8B8B8");
  2102. changeColor("loading", "#52B54B");
  2103. changeColor("hovertext", "#000000");
  2104. });
  2105. $('#bookTheme').on('click touchstart', function(){
  2106. changeColor("topbartext", "#FFFFFF");
  2107. changeColor("topbar", "#3B5998");
  2108. changeColor("bottombar", "#3B5998");
  2109. changeColor("sidebar", "#8B9DC3");
  2110. changeColor("hoverbg", "#FFFFFF");
  2111. changeColor("activetabBG", "#3B5998");
  2112. changeColor("activetabicon", "#FFFFFF");
  2113. changeColor("activetabtext", "#FFFFFF");
  2114. changeColor("inactiveicon", "#DFE3EE");
  2115. changeColor("inactivetext", "#DFE3EE");
  2116. changeColor("loading", "#FFFFFF");
  2117. changeColor("hovertext", "#000000");
  2118. });
  2119. $('#spaTheme').on('click touchstart', function(){
  2120. changeColor("topbartext", "#5B391E");
  2121. changeColor("topbar", "#66BBAE");
  2122. changeColor("bottombar", "#66BBAE");
  2123. changeColor("sidebar", "#C3EEE7");
  2124. changeColor("hoverbg", "#66BBAE");
  2125. changeColor("activetabBG", "#C6C386");
  2126. changeColor("activetabicon", "#FFFFFF");
  2127. changeColor("activetabtext", "#FFFFFF");
  2128. changeColor("inactiveicon", "#5B391E");
  2129. changeColor("inactivetext", "#5B391E");
  2130. changeColor("loading", "#5B391E");
  2131. changeColor("hovertext", "#000000");
  2132. });
  2133. $('#darklyTheme').on('click touchstart', function(){
  2134. changeColor("topbartext", "#FFFFFF");
  2135. changeColor("topbar", "#375A7F");
  2136. changeColor("bottombar", "#375A7F");
  2137. changeColor("sidebar", "#222222");
  2138. changeColor("hoverbg", "#464545");
  2139. changeColor("activetabBG", "#FFFFFF");
  2140. changeColor("activetabicon", "#464545");
  2141. changeColor("activetabtext", "#464545");
  2142. changeColor("inactiveicon", "#0CE3AC");
  2143. changeColor("inactivetext", "#0CE3AC");
  2144. changeColor("loading", "#FFFFFF");
  2145. changeColor("hovertext", "#000000");
  2146. });
  2147. $('#slateTheme').on('click touchstart', function(){
  2148. changeColor("topbartext", "#C8C8C8");
  2149. changeColor("topbar", "#272B30");
  2150. changeColor("bottombar", "#272B30");
  2151. changeColor("sidebar", "#32383E");
  2152. changeColor("hoverbg", "#58C0DE");
  2153. changeColor("activetabBG", "#3E444C");
  2154. changeColor("activetabicon", "#C8C8C8");
  2155. changeColor("activetabtext", "#FFFFFF");
  2156. changeColor("inactiveicon", "#C8C8C8");
  2157. changeColor("inactivetext", "#C8C8C8");
  2158. changeColor("loading", "#C8C8C8");
  2159. changeColor("hovertext", "#000000");
  2160. });
  2161. $('#defaultTheme').on('click touchstart', function(){
  2162. changeColor("topbartext", "#FFFFFF");
  2163. changeColor("topbar", "#eb6363");
  2164. changeColor("bottombar", "#eb6363");
  2165. changeColor("sidebar", "#000000");
  2166. changeColor("hoverbg", "#eb6363");
  2167. changeColor("activetabBG", "#eb6363");
  2168. changeColor("activetabicon", "#FFFFFF");
  2169. changeColor("activetabtext", "#FFFFFF");
  2170. changeColor("inactiveicon", "#FFFFFF");
  2171. changeColor("inactivetext", "#FFFFFF");
  2172. changeColor("loading", "#FFFFFF");
  2173. changeColor("hovertext", "#000000");
  2174. });
  2175. $('#redTheme').on('click touchstart', function(){
  2176. changeColor("topbartext", "#FFFFFF");
  2177. changeColor("topbar", "#eb6363");
  2178. changeColor("bottombar", "#eb6363");
  2179. changeColor("sidebar", "#000000");
  2180. changeColor("hoverbg", "#eb6363");
  2181. changeColor("activetabBG", "#eb6363");
  2182. changeColor("activetabicon", "#FFFFFF");
  2183. changeColor("activetabtext", "#FFFFFF");
  2184. changeColor("inactiveicon", "#FFFFFF");
  2185. changeColor("inactivetext", "#FFFFFF");
  2186. changeColor("loading", "#FFFFFF");
  2187. changeColor("hovertext", "#000000");
  2188. });
  2189. $('#monokaiTheme').on('click touchstart', function(){
  2190. changeColor("topbartext", "#66D9EF");
  2191. changeColor("topbar", "#333333");
  2192. changeColor("bottombar", "#333333");
  2193. changeColor("sidebar", "#393939");
  2194. changeColor("hoverbg", "#AD80FD");
  2195. changeColor("activetabBG", "#F92671");
  2196. changeColor("activetabicon", "#FFFFFF");
  2197. changeColor("activetabtext", "#FFFFFF");
  2198. changeColor("inactiveicon", "#66D9EF");
  2199. changeColor("inactivetext", "#66D9EF");
  2200. changeColor("loading", "#66D9EF");
  2201. changeColor("hovertext", "#000000");
  2202. });
  2203. $('#thejokerTheme').on('click touchstart', function(){
  2204. changeColor("topbartext", "#CCCCCC");
  2205. changeColor("topbar", "#000000");
  2206. changeColor("bottombar", "#000000");
  2207. changeColor("sidebar", "#121212");
  2208. changeColor("hoverbg", "#CCC6CC");
  2209. changeColor("activetabBG", "#A50CB0");
  2210. changeColor("activetabicon", "#FFFFFF");
  2211. changeColor("activetabtext", "#FFFFFF");
  2212. changeColor("inactiveicon", "#949494");
  2213. changeColor("inactivetext", "#B8B8B8");
  2214. changeColor("loading", "#CCCCCC");
  2215. changeColor("hovertext", "#000000");
  2216. });
  2217. $('#newPlexTheme').on('click touchstart', function(){
  2218. changeColor("topbartext", "#E5A00D");
  2219. changeColor("topbar", "#282A2D");
  2220. changeColor("bottombar", "#282A2D");
  2221. changeColor("sidebar", "#3F4245");
  2222. changeColor("hoverbg", "#E5A00D");
  2223. changeColor("activetabBG", "#282A2D");
  2224. changeColor("activetabicon", "#E5A00D");
  2225. changeColor("activetabtext", "#E5A00D");
  2226. changeColor("inactiveicon", "#F9F9F9");
  2227. changeColor("inactivetext", "#F9F9F9");
  2228. changeColor("loading", "#E5A00D");
  2229. changeColor("hovertext", "#E0E3E6");
  2230. });
  2231. $('textarea').numberedtextarea({
  2232. // font color for line numbers
  2233. color: null,
  2234. // border color
  2235. borderColor: 'null',
  2236. // CSS class to be added to the line numbers
  2237. class: null,
  2238. // if true Tab key creates indentation
  2239. allowTabChar: true,
  2240. });
  2241. $(".email-header .close-button").click(function () {
  2242. $(".email-content").removeClass("email-active");
  2243. $('html').removeClass("overhid");
  2244. $("#settings-list").find("li").removeClass("active");
  2245. });
  2246. $(document).mouseup(function (e)
  2247. {
  2248. var container = $(".email-content");
  2249. if (!container.is(e.target) && container.has(e.target).length === 0) {
  2250. $(".email-content").removeClass("email-active");
  2251. $('html').removeClass("overhid");
  2252. $("#settings-list").find("li").removeClass("active");
  2253. }
  2254. });
  2255. $( document ).on( 'keydown', function ( e ) {
  2256. if ( e.keyCode === 27 ) { // ESC
  2257. var container = $(".email-content");
  2258. if (!container.is(e.target) && container.has(e.target).length === 0) {
  2259. $(".email-content").removeClass("email-active");
  2260. $('html').removeClass("overhid");
  2261. $("#settings-list").find("li").removeClass("active");
  2262. }
  2263. }
  2264. });
  2265. $("#open-tabs").on("click",function (e) {
  2266. $(".email-content").removeClass("email-active");
  2267. $('html').removeClass("overhid");
  2268. if($(window).width() < 768){
  2269. $('html').addClass("overhid");
  2270. }
  2271. var settingsBox = $('.tab-box');
  2272. settingsBox.addClass("email-active");
  2273. $(this).parent().addClass("active");
  2274. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2275. setTimeout(function(){
  2276. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2277. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2278. refreshMailPreloader.remove();
  2279. });
  2280. },600);
  2281. e.preventDefault();
  2282. });
  2283. $("#open-colors").on("click",function (e) {
  2284. $(".email-content").removeClass("email-active");
  2285. $('html').removeClass("overhid");
  2286. if($(window).width() < 768){
  2287. $('html').addClass("overhid");
  2288. }
  2289. var settingsBox = $('.color-box');
  2290. settingsBox.addClass("email-active");
  2291. $(this).parent().addClass("active");
  2292. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2293. setTimeout(function(){
  2294. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2295. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2296. refreshMailPreloader.remove();
  2297. });
  2298. },600);
  2299. e.preventDefault();
  2300. });
  2301. $("#open-homepage").on("click",function (e) {
  2302. $(".email-content").removeClass("email-active");
  2303. $('html').removeClass("overhid");
  2304. if($(window).width() < 768){
  2305. $('html').addClass("overhid");
  2306. }
  2307. var settingsBox = $('.homepage-box');
  2308. settingsBox.addClass("email-active");
  2309. $(this).parent().addClass("active");
  2310. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2311. setTimeout(function(){
  2312. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2313. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2314. refreshMailPreloader.remove();
  2315. });
  2316. },600);
  2317. e.preventDefault();
  2318. });
  2319. $("#open-advanced").on("click",function (e) {
  2320. $(".email-content").removeClass("email-active");
  2321. $('html').removeClass("overhid");
  2322. if($(window).width() < 768){
  2323. $('html').addClass("overhid");
  2324. }
  2325. var settingsBox = $('.advanced-box');
  2326. settingsBox.addClass("email-active");
  2327. $(this).parent().addClass("active");
  2328. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2329. setTimeout(function(){
  2330. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2331. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2332. refreshMailPreloader.remove();
  2333. });
  2334. },600);
  2335. e.preventDefault();
  2336. });
  2337. $("#open-info").on("click",function (e) {
  2338. $(".email-content").removeClass("email-active");
  2339. $('html').removeClass("overhid");
  2340. if($(window).width() < 768){
  2341. $('html').addClass("overhid");
  2342. }
  2343. var settingsBox = $('.info-box');
  2344. settingsBox.addClass("email-active");
  2345. $(this).parent().addClass("active");
  2346. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2347. setTimeout(function(){
  2348. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2349. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2350. refreshMailPreloader.remove();
  2351. });
  2352. },600);
  2353. e.preventDefault();
  2354. });
  2355. $("#open-users").on("click",function (e) {
  2356. $(".email-content").removeClass("email-active");
  2357. $('html').removeClass("overhid");
  2358. if($(window).width() < 768){
  2359. $('html').addClass("overhid");
  2360. }
  2361. var settingsBox = $('.users-box');
  2362. settingsBox.addClass("email-active");
  2363. $(this).parent().addClass("active");
  2364. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2365. setTimeout(function(){
  2366. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2367. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2368. refreshMailPreloader.remove();
  2369. });
  2370. },600);
  2371. e.preventDefault();
  2372. });
  2373. $("#open-logs").on("click",function (e) {
  2374. $(".email-content").removeClass("email-active");
  2375. $('html').removeClass("overhid");
  2376. if($(window).width() < 768){
  2377. $('html').addClass("overhid");
  2378. }
  2379. var settingsBox = $('.logs-box');
  2380. settingsBox.addClass("email-active");
  2381. $(this).parent().addClass("active");
  2382. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2383. setTimeout(function(){
  2384. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2385. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2386. refreshMailPreloader.remove();
  2387. });
  2388. },600);
  2389. e.preventDefault();
  2390. });
  2391. </script>
  2392. <script>
  2393. $( document ).ready(function() {
  2394. //Hide Icon box on load
  2395. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).hide();
  2396. //Set Some Scrollbars
  2397. $(".scroller-body").niceScroll({
  2398. railpadding: {top:0,right:0,left:0,bottom:0}
  2399. });
  2400. $(".email-content").niceScroll({
  2401. railpadding: {top:0,right:0,left:0,bottom:0}
  2402. });
  2403. //Stop Div behind From Scrolling
  2404. $( '.email-content' ).on( 'mousewheel', function ( e ) {
  2405. e.preventDefault();
  2406. }, false);
  2407. //Set Hide Function
  2408. if (0) {
  2409. var authTypeFunc = function() {
  2410. // Hide Everything
  2411. $('#host-selected, #host-other, #host-plex, #host-emby, #host-ldap').hide();
  2412. // Qualify Auth Type
  2413. if($('#authType').val() !== "internal"){
  2414. $( '#host-selected' ).show();
  2415. // Qualify aithBackend
  2416. if($('#authBackend').val() === "plex"){
  2417. $('#host-selected, #host-plex').show();
  2418. }else if($('#authBackend').val().indexOf("emby")>=0){
  2419. $('#host-selected, #host-other, #host-emby').show();
  2420. }else if($('#authBackend').val() === "ldap"){
  2421. $('#host-selected, #host-other, #host-ldap').show();
  2422. }else {
  2423. $('#host-selected, #host-other').show();
  2424. }
  2425. }
  2426. }
  2427. //Hide Settings on selection
  2428. $('#authType, #authBackend').on('change', authTypeFunc);
  2429. //Hide Settings on Load
  2430. authTypeFunc();
  2431. } else { console.log() }
  2432. //Simulate Edit Tabs Click
  2433. $("#open-tabs").trigger("click");
  2434. //Append Delete log to User Logs
  2435. $("div[class^='DTTT_container']").append('<form style="display: inline; margin-left: 3px;" id="deletelog" method="post"><input type="hidden" name="action" value="deleteLog" /><button class="btn waves btn-labeled btn-danger text-uppercase waves-effect waves-float" type="submit"><span class="btn-label"><i class="fa fa-trash"></i></span><?php echo $language->translate("PURGE_LOG");?> </button></form>')
  2436. $("a[id^='ToolTables_datatable_0'] span").html('<?php echo $language->translate("PRINT");?>')
  2437. //Enable Tooltips
  2438. $('[data-toggle="tooltip"]').tooltip();
  2439. //Tab save on reload - might need to delete as we changed tab layout
  2440. //rememberTabSelection('#settingsTabs', !localStorage);
  2441. //AJAX call to github to get version info
  2442. $.ajax({
  2443. type: "GET",
  2444. url: "https://api.github.com/repos/causefx/Organizr/releases",
  2445. dataType: "json",
  2446. success: function(github) {
  2447. var currentVersion = "<?php echo INSTALLEDVERSION;?>";
  2448. infoTabVersion = $('#about').find('#version');
  2449. infoTabVersionHistory = $('#about').find('#versionHistory');
  2450. infoTabNew = $('#about').find('#whatsnew');
  2451. infoTabDownload = $('#about').find('#downloadnow');
  2452. $.each(github, function(i,v) {
  2453. if(i === 0){
  2454. console.log(v.tag_name);
  2455. githubVersion = v.tag_name;
  2456. githubDescription = v.body;
  2457. githubName = v.name;
  2458. }
  2459. $(infoTabVersionHistory).append('<li style="display: none"><time class="cbp_tmtime" datetime="' + v.published_at + '"><span>' + v.published_at.substring(0,10) + '</span> <span>' + v.tag_name + '</span></time><div class="cbp_tmicon animated jello"><i class="fa fa-github-alt"></i></div><div class="cbp_tmlabel"><h2 class="text-uppercase">' + v.name + '</h2><p>' + v.body + '</p></div></li>');
  2460. size_li = $("#versionHistory li").size();
  2461. x=2;
  2462. $('#versionHistory li:lt('+x+')').show();
  2463. });
  2464. if(currentVersion < githubVersion){
  2465. console.log("You Need To Upgrade");
  2466. parent.notify("<strong><?php echo $language->translate("NEW_VERSION");?></strong> <?php echo $language->translate("CLICK_INFO");?>","arrow-circle-o-down","warning","50000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  2467. $(infoTabNew).html("<br/><h4><strong><?php echo $language->translate("WHATS_NEW");?> " + githubVersion + "</strong></h4><strong><?php echo $language->translate("TITLE");?>: </strong>" + githubName + " <br/><strong><?php echo $language->translate("CHANGES");?>: </strong>" + githubDescription);
  2468. $(infoTabDownload).html("<br/><form style=\"display:initial;\" id=\"deletedb\" method=\"post\"><input type=\"hidden\" name=\"action\" value=\"upgrade\" /><button class=\"btn waves btn-labeled btn-success text-uppercase waves-effect waves-float\" type=\"submit\"><span class=\"btn-label\"><i class=\"fa fa-refresh\"></i></span><?php echo $language->translate("AUTO_UPGRADE");?></button></form> <a href='https://github.com/causefx/Organizr/archive/master.zip' target='_blank' type='button' class='btn waves btn-labeled btn-success text-uppercase waves-effect waves-float'><span class='btn-label'><i class='fa fa-download'></i></span>Organizr v." + githubVersion + "</a>");
  2469. $( "p[id^='upgrade']" ).toggle();
  2470. }else if(currentVersion === githubVersion){
  2471. console.log("You Are on Current Version");
  2472. }else{
  2473. console.log("something went wrong");
  2474. }
  2475. $(infoTabVersion).html("<strong><?php echo $language->translate("INSTALLED_VERSION");?>: </strong>" + currentVersion + " <strong><?php echo $language->translate("CURRENT_VERSION");?>: </strong>" + githubVersion + " <strong><?php echo $language->translate("DATABASE_PATH");?>: </strong> <?php echo htmlentities(DATABASE_LOCATION);?>");
  2476. }
  2477. });
  2478. //Edit Info tab with Github info
  2479. <?php if(file_exists(FAIL_LOG)) : ?>
  2480. goodCount = $('#loginStats').find('#goodCount');
  2481. goodPercent = $('#loginStats').find('#goodPercent');
  2482. goodTitle = $('#loginStats').find('#goodTitle');
  2483. badCount = $('#loginStats').find('#badCount');
  2484. badPercent = $('#loginStats').find('#badPercent');
  2485. badTitle = $('#loginStats').find('#badTitle');
  2486. $(goodCount).html("<?php echo $goodLogin;?>");
  2487. $(goodTitle).html("<?php echo $goodPercent;?>%");
  2488. $(goodPercent).attr('aria-valuenow', "<?php echo $goodPercent;?>");
  2489. $(goodPercent).attr('style', "width: <?php echo $goodPercent;?>%");
  2490. $(badCount).html("<?php echo $badLogin;?>");
  2491. $(badTitle).html("<?php echo $badPercent;?>%");
  2492. $(badPercent).attr('aria-valuenow', "<?php echo $badPercent;?>");
  2493. $(badPercent).attr('style', "width: <?php echo $badPercent;?>%");
  2494. <?php endif; ?>
  2495. });
  2496. </script>
  2497. </body>
  2498. </html>