settings.php 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600
  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. 'tabs' => array(
  1140. array(
  1141. 'title' => 'Backend Authentication',
  1142. 'id' => 'be_auth',
  1143. 'image' => 'images/security.png',
  1144. 'fields' => array(
  1145. array(
  1146. 'type' => 'select',
  1147. 'labelTranslate' => 'AUTHTYPE',
  1148. 'name' => 'authType',
  1149. 'value' => AUTHTYPE,
  1150. 'options' => array(
  1151. 'Organizr' => 'internal',
  1152. 'Organizr & Backend' => 'both',
  1153. // 'Backend' => 'external',
  1154. ),
  1155. ),
  1156. array(
  1157. 'type' => 'select',
  1158. 'labelTranslate' => 'AUTHBACKEND',
  1159. 'name' => 'authBackend',
  1160. 'onchange' => '$(\'.be-auth\').each(function() { $(this).parent().hide(); }); $(\'.be-auth-\'+this.value).each(function() { $(this).parent().show(); });',
  1161. 'value' => AUTHBACKEND,
  1162. 'options' => $backendOptions,
  1163. ),
  1164. array(
  1165. 'type' => 'select',
  1166. 'labelTranslate' => 'AUTHBACKENDCREATE',
  1167. 'name' => 'authBackendCreate',
  1168. 'value' => AUTHBACKENDCREATE,
  1169. 'options' => array(
  1170. translate('YES_CREATE') => 'true',
  1171. translate('NO_CREATE') => 'false',
  1172. ),
  1173. ),
  1174. array(
  1175. 'type' => 'text',
  1176. 'placeholder' => 'http://hostname:8181',
  1177. 'labelTranslate' => 'AUTHBACKENDHOST',
  1178. 'assist' => 'http(s)://hostname:8181 | Ldap(s)://localhost:389 | ftp(s)://localhost:21',
  1179. 'name' => 'authBackendHost',
  1180. 'class' => 'be-auth be-auth-emby_local be-auth-emby_all be-auth-emby_connect be-auth-ftp be-auth-ldap',
  1181. 'pattern' => $urlPattern,
  1182. 'value' => AUTHBACKENDHOST,
  1183. ),
  1184. array(
  1185. 'type' => 'number',
  1186. 'placeholder' => 'DEPRECIATED',
  1187. 'labelTranslate' => 'AUTHBACKENDPORT',
  1188. 'assist' => 'DEPRECIATED',
  1189. 'name' => 'authBackendPort',
  1190. 'class' => 'be-auth be-auth-emby_local be-auth-emby_all be-auth-emby_connect be-auth-ftp be-auth-ldap',
  1191. 'value' => AUTHBACKENDPORT,
  1192. ),
  1193. array(
  1194. 'type' => 'text',
  1195. 'placeholder' => 'domain',
  1196. 'labelTranslate' => 'AUTHBACKENDDOMAIN',
  1197. 'name' => 'authBackendDomain',
  1198. 'class' => 'be-auth be-auth-ldap',
  1199. 'value' => AUTHBACKENDDOMAIN,
  1200. ),
  1201. array(
  1202. 'type' => 'text',
  1203. 'placeholder' => randString(32),
  1204. 'labelTranslate' => 'EMBY_TOKEN',
  1205. 'name' => 'plexToken',
  1206. 'class' => 'be-auth be-auth-emby_all be-auth-emby_connect',
  1207. 'pattern' => '[a-zA-Z0-9]{32}',
  1208. 'value' => EMBYTOKEN,
  1209. ),
  1210. array(
  1211. 'type' => 'text',
  1212. 'labelTranslate' => 'PLEX_USERNAME',
  1213. 'name' => 'plexUsername',
  1214. 'class' => 'be-auth be-auth-plex',
  1215. //'pattern' => '[a-zA-Z0-9]{32}',
  1216. 'value' => PLEXUSERNAME,
  1217. ),
  1218. array(
  1219. 'type' => 'password',
  1220. 'labelTranslate' => 'PLEX_PASSWORD',
  1221. 'name' => 'plexPassword',
  1222. 'class' => 'be-auth be-auth-plex',
  1223. //'pattern' => '[a-zA-Z0-9]{32}',
  1224. 'value' => (empty(PLEXPASSWORD)?'':randString(20)),
  1225. ),
  1226. ),
  1227. ),
  1228. array(
  1229. 'title' => 'Super Advanced',
  1230. 'id' => 'super_advanced',
  1231. 'image' => 'images/gear.png',
  1232. 'fields' => array(
  1233. array(
  1234. 'type' => 'text',
  1235. 'placeholder' => '/home/www-data/',
  1236. 'labelTranslate' => 'DATABASE_PATH',
  1237. 'name' => 'database_Location',
  1238. 'value' => DATABASE_LOCATION,
  1239. ),
  1240. array(
  1241. 'type' => 'select',
  1242. 'labelTranslate' => 'SET_TIMEZONE',
  1243. 'name' => 'timezone',
  1244. 'value' => TIMEZONE,
  1245. 'options' => timezoneOptions(),
  1246. ),
  1247. array(
  1248. 'type' => 'text',
  1249. 'labelTranslate' => 'REGISTER_PASSWORD',
  1250. 'name' => 'registerPassword',
  1251. //'pattern' => '[a-zA-Z0-9]{32}',
  1252. 'value' => REGISTERPASSWORD,
  1253. ),
  1254. array(
  1255. 'type' => 'text',
  1256. 'labelTranslate' => 'COOKIE_DOMAIN',
  1257. 'name' => 'domain',
  1258. //'pattern' => '[a-zA-Z0-9]{32}',
  1259. 'value' => DOMAIN,
  1260. ),
  1261. array(
  1262. 'type' => 'password',
  1263. 'labelTranslate' => 'COOKIE_PASSWORD',
  1264. 'name' => 'cookiePassword',
  1265. //'pattern' => '[a-zA-Z0-9]{32}',
  1266. 'value' => (empty(COOKIEPASSWORD)?'':randString(20)),
  1267. ),
  1268. array(
  1269. 'type' => 'checkbox',
  1270. 'labelTranslate' => 'MULTIPLE_LOGINS',
  1271. 'name' => 'multipleLogin',
  1272. //'pattern' => '[a-zA-Z0-9]{32}',
  1273. 'value' => MULTIPLELOGIN,
  1274. ),
  1275. ),
  1276. ),
  1277. array(
  1278. 'title' => 'Mail Settings',
  1279. 'id' => 'mail_settings',
  1280. 'image' => 'images/mail.png',
  1281. 'fields' => array(
  1282. array(
  1283. 'type' => 'text',
  1284. 'placeholder' => 'mail.provider.com',
  1285. 'labelTranslate' => 'SMTP_HOST',
  1286. 'name' => 'smtpHost',
  1287. 'pattern' => $urlPattern,
  1288. 'value' => SMTPHOST,
  1289. ),
  1290. array(
  1291. 'type' => 'number',
  1292. 'placeholder' => '465',
  1293. 'labelTranslate' => 'SMTP_HOST_PORT',
  1294. 'name' => 'smtpHostPort',
  1295. 'value' => SMTPHOSTPORT,
  1296. ),
  1297. array(
  1298. 'type' => 'text',
  1299. 'labelTranslate' => 'SMTP_HOST_USERNAME',
  1300. 'name' => 'smtpHostUsername',
  1301. //'pattern' => '[a-zA-Z0-9]{32}',
  1302. 'value' => SMTPHOSTUSERNAME,
  1303. ),
  1304. array(
  1305. 'type' => 'password',
  1306. 'labelTranslate' => 'SMTP_HOST_PASSWORD',
  1307. 'name' => 'smtpHostPassword',
  1308. //'pattern' => '[a-zA-Z0-9]{32}',
  1309. 'value' => (empty(SMTPHOSTPASSWORD)?'':randString(20)),
  1310. ),
  1311. array(
  1312. 'type' => 'text',
  1313. 'labelTranslate' => 'SMTP_HOST_SENDER_NAME',
  1314. 'name' => 'smtpHostSenderName',
  1315. 'value' => SMTPHOSTSENDERNAME,
  1316. ),
  1317. array(
  1318. 'type' => 'text',
  1319. 'labelTranslate' => 'SMTP_HOST_SENDER_EMAIL',
  1320. 'name' => 'smtpHostSenderEmail',
  1321. //'pattern' => '[a-zA-Z0-9]{32}',
  1322. 'value' => SMTPHOSTSENDEREMAIL,
  1323. ),
  1324. array(
  1325. array(
  1326. 'type' => 'checkbox',
  1327. 'labelTranslate' => 'SMTP_HOST_AUTH',
  1328. 'name' => 'smtpHostAuth',
  1329. 'value' => SMTPHOSTAUTH,
  1330. ),
  1331. array(
  1332. 'type' => 'checkbox',
  1333. 'labelTranslate' => 'ENABLE_MAIL',
  1334. 'name' => 'enableMail',
  1335. 'value' => ENABLEMAIL,
  1336. ),
  1337. ),
  1338. ),
  1339. ),
  1340. array(
  1341. 'title' => 'Advanced Visual',
  1342. 'id' => 'advanced_visual',
  1343. 'image' => 'images/paint.png',
  1344. 'fields' => array(
  1345. array(
  1346. 'type' => 'text',
  1347. 'placeholder' => 'images/organizr.png',
  1348. 'labelTranslate' => 'LOADING_ICON_URL',
  1349. 'name' => 'loadingIcon',
  1350. 'value' => LOADINGICON,
  1351. ),
  1352. array(
  1353. 'type' => 'text',
  1354. 'placeholder' => 'images/organizr.png',
  1355. 'labelTranslate' => 'LOGO_URL_TITLE',
  1356. 'name' => 'titleLogo',
  1357. 'value' => TITLELOGO,
  1358. ),
  1359. array(
  1360. 'type' => 'select',
  1361. 'labelTranslate' => 'NOTIFICATION_TYPE',
  1362. 'name' => 'notifyEffect',
  1363. 'onchange' => 'parent.notify(\'This is an example popup!\', \'fa-bullhorn\', \'success\', 4000, this.value.split(\'-\')[0], this.value.split(\'-\')[1]);',
  1364. 'value' => explode("-", NOTIFYEFFECT)[1],
  1365. 'options' => array(
  1366. 'Slide From Top' => 'bar-slidetop',
  1367. 'Exploader From Top' => 'bar-exploader',
  1368. 'Flip' => 'attached-flip',
  1369. 'Bouncy Flip' => 'attached-bouncyflip',
  1370. 'Growl Scale' => 'growl-scale',
  1371. 'Growl Genie' => 'growl-genie',
  1372. 'Growl Jelly' => 'growl-jelly',
  1373. 'Growl Slide' => 'growl-slide',
  1374. 'Spinning Box' => 'other-boxspinner',
  1375. 'Sliding' => 'other-thumbslider',
  1376. ),
  1377. ),
  1378. array(
  1379. array(
  1380. 'type' => 'checkbox',
  1381. 'labelTranslate' => 'ENABLE_LOADING_SCREEN',
  1382. 'name' => 'loadingScreen',
  1383. 'value' => LOADINGSCREEN,
  1384. ),
  1385. array(
  1386. 'type' => 'checkbox',
  1387. 'labelTranslate' => 'ENABLE_SLIMBAR',
  1388. 'name' => 'slimBar',
  1389. 'value' => SLIMBAR,
  1390. ),
  1391. array(
  1392. 'type' => 'checkbox',
  1393. 'labelTranslate' => 'GRAVATAR',
  1394. 'name' => 'gravatar',
  1395. 'value' => GRAVATAR,
  1396. ),
  1397. ),
  1398. ),
  1399. ),
  1400. ),
  1401. )
  1402. );
  1403. ?>
  1404. </div>
  1405. <div class="email-content info-box white-bg">
  1406. <div class="email-body">
  1407. <div class="email-header gray-bg">
  1408. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1409. <h1>About Organizr</h1>
  1410. </div>
  1411. <div class="email-inner small-box">
  1412. <div class="email-inner-section">
  1413. <div class="small-box fade in" id="about">
  1414. <h4><img src="images/organizr-logo-h-d.png" height="50px"></h4>
  1415. <p id="version"></p>
  1416. <p id="submitFeedback">
  1417. <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>
  1418. <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>
  1419. <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>
  1420. <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>
  1421. <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>
  1422. <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>
  1423. </p>
  1424. <div class="modal fade Help-Me-modal-lg" tabindex="-1" role="dialog">
  1425. <div class="modal-dialog modal-lg" role="document">
  1426. <div class="modal-content" style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;">
  1427. <div class="modal-header">
  1428. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  1429. <h4 class="modal-title"><?php echo $language->translate("HELP");?>!</h4>
  1430. </div>
  1431. <div class="modal-body" style="background: <?php echo $sidebar;?> !important;">
  1432. <div style="margin-bottom: 0px;" class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
  1433. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1434. <div class="panel-heading" role="tab" id="headingOne">
  1435. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
  1436. <?php echo $language->translate("ADDING_TABS");?>
  1437. </h4>
  1438. </div>
  1439. <div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne" aria-expanded="true">
  1440. <div class="panel-body">
  1441. <p><?php echo $language->translate("START_ADDING_TABS");?></p>
  1442. <ul>
  1443. <li><strong><?php echo $language->translate("TAB_URL");?></strong> <?php echo $language->translate("TAB_URL_ABOUT");?></li>
  1444. <li><strong><?php echo $language->translate("ICON_URL");?></strong> <?php echo $language->translate("ICON_URL_ABOUT");?></li>
  1445. <li><strong><?php echo $language->translate("DEFAULT");?></strong> <?php echo $language->translate("DEFAULT_ABOUT");?></li>
  1446. <li><strong><?php echo $language->translate("ACTIVE");?></strong> <?php echo $language->translate("ACTIVE_ABOUT");?></li>
  1447. <li><strong><?php echo $language->translate("USER");?></strong> <?php echo $language->translate("USER_ABOUT");?></li>
  1448. <li><strong><?php echo $language->translate("GUEST");?></strong> <?php echo $language->translate("GUEST_ABOUT");?></li>
  1449. <li><strong><?php echo $language->translate("NO_IFRAME");?></strong> <?php echo $language->translate("NO_IFRAME_ABOUT");?></li>
  1450. </ul>
  1451. </div>
  1452. </div>
  1453. </div>
  1454. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1455. <div class="panel-heading" role="tab" id="headingTwo">
  1456. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
  1457. <?php echo $language->translate("QUICK_ACCESS");?>
  1458. </h4>
  1459. </div>
  1460. <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo" aria-expanded="true">
  1461. <div class="panel-body">
  1462. <p><?php echo $language->translate("QUICK_ACCESS_ABOUT");?> <mark><?php echo getServerPath(); ?>#Sonarr</mark></p>
  1463. </div>
  1464. </div>
  1465. </div>
  1466. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1467. <div class="panel-heading" role="tab" id="headingThree">
  1468. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="true" aria-controls="collapseThree">
  1469. <?php echo $language->translate("SIDE_BY_SIDE");?>
  1470. </h4>
  1471. </div>
  1472. <div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree" aria-expanded="true">
  1473. <div class="panel-body">
  1474. <p><?php echo $language->translate("SIDE_BY_SIDE_ABOUT");?></p>
  1475. <ul>
  1476. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS1");?></li>
  1477. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS2");?> [<i class='mdi mdi-refresh'></i>]</li>
  1478. <li><?php echo $language->translate("SIDE_BY_SIDE_INSTRUCTIONS3");?></li>
  1479. </ul>
  1480. </div>
  1481. </div>
  1482. </div>
  1483. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1484. <div class="panel-heading" role="tab" id="headingFour">
  1485. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFour" aria-expanded="true" aria-controls="collapseFour">
  1486. <?php echo $language->translate("KEYBOARD_SHORTCUTS");?>
  1487. </h4>
  1488. </div>
  1489. <div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour" aria-expanded="true">
  1490. <div class="panel-body">
  1491. <p><?php echo $language->translate("KEYBOARD_SHORTCUTS_ABOUT");?></p>
  1492. <ul>
  1493. <li><keyboard class="key"><span>S</span></keyboard> + <keyboard class="key"><span>S</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS1");?></li>
  1494. <li><keyboard class="key"><span>F</span></keyboard> + <keyboard class="key"><span>F</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS6");?></li>
  1495. <li><keyboard class="key"><span>P</span></keyboard> + <keyboard class="key"><span>P</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS7");?></li>
  1496. <li><keyboard class="key"><span>M</span></keyboard> + <keyboard class="key"><span>M</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS8");?></li>
  1497. <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>
  1498. <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>
  1499. <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>
  1500. <li><keyboard class="key wide"><span>Esc</span></keyboard> + <keyboard class="key wide"><span>Esc</span></keyboard> <?php echo $language->translate("KEYBOARD_INSTRUCTIONS4");?></li>
  1501. </ul>
  1502. </div>
  1503. </div>
  1504. </div>
  1505. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1506. <div class="panel-heading" role="tab" id="headingFive">
  1507. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFive" aria-expanded="true" aria-controls="collapseFive">
  1508. <?php echo $language->translate("TAB_NOT_LOADING");?>
  1509. </h4>
  1510. </div>
  1511. <div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive" aria-expanded="true">
  1512. <div class="panel-body">
  1513. <p><?php echo $language->translate("TAB_NOT_LOADING_ABOUT");?></p>
  1514. <?php
  1515. 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>";
  1516. 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>";
  1517. else : echo "Sorry, currently there is no other alternative for " . get_browser_name(); endif;
  1518. ?>
  1519. </div>
  1520. </div>
  1521. </div>
  1522. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1523. <div class="panel-heading" role="tab" id="headingSix">
  1524. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseSix" aria-expanded="true" aria-controls="collapseSix">
  1525. <?php echo $language->translate("USER_ICONS");?>
  1526. </h4>
  1527. </div>
  1528. <div id="collapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSix" aria-expanded="true">
  1529. <div class="panel-body">
  1530. <p><?php echo $language->translate("USER_ICONS_ABOUT");?> <a href="http://gravatar.com" target="_blank">gravatar.com</a></p>
  1531. </div>
  1532. </div>
  1533. </div>
  1534. <div style="color: <?php echo $topbartext;?> !important; background: <?php echo $topbar;?> !important;" class="panel panel-default">
  1535. <div class="panel-heading" role="tab" id="headingSeven">
  1536. <h4 class="panel-title" style="text-decoration: none;" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseSeven" aria-expanded="true" aria-controls="collapseSeven">
  1537. <?php echo $language->translate("TRANSLATIONS");?>
  1538. </h4>
  1539. </div>
  1540. <div id="collapseSeven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSeven" aria-expanded="true">
  1541. <div class="panel-body">
  1542. <p><?php echo $language->translate("TRANSLATIONS_ABOUT");?> <a href="https://github.com/causefx/Organizr/tree/develop/lang" target="_blank">Github Develop Branch</a></p>
  1543. </div>
  1544. </div>
  1545. </div>
  1546. </div>
  1547. </div>
  1548. <div class="modal-footer">
  1549. <button type="button" class="btn btn-default waves" data-dismiss="modal"><?php echo $language->translate("CLOSE");?></button>
  1550. </div>
  1551. </div>
  1552. </div>
  1553. </div>
  1554. <p id="whatsnew"></p>
  1555. <p id="downloadnow"></p>
  1556. <div id="deleteDiv" style="display: none;" class="panel panel-danger">
  1557. <div class="panel-heading">
  1558. <h3 class="panel-title"><?php echo $language->translate("DELETE_DATABASE");?></h3>
  1559. </div>
  1560. <div class="panel-body">
  1561. <div class="">
  1562. <p><?php echo $language->translate("DELETE_WARNING");?></p>
  1563. <form id="deletedb" method="post">
  1564. <input type="hidden" name="action" value="deleteDB" />
  1565. <button class="btn waves btn-labeled btn-danger pull-right text-uppercase waves-effect waves-float" type="submit">
  1566. <span class="btn-label"><i class="fa fa-trash"></i></span><?php echo $language->translate("DELETE_DATABASE");?>
  1567. </button>
  1568. </form>
  1569. </div>
  1570. </div>
  1571. </div>
  1572. <div class="timeline-container">
  1573. <div class="row">
  1574. <div class="col-lg-12">
  1575. <ul class="cbp_tmtimeline" id="versionHistory">
  1576. </ul>
  1577. <div class="btn-group-sm btn-group btn-group-justified">
  1578. <div id="loadMore" class="btn-group" role="group">
  1579. <button type="button" class="btn waves btn-primary waves-effect waves-float text-uppercase"><?php echo $language->translate("SHOW_MORE");?></button>
  1580. </div>
  1581. <div id="showLess" class="btn-group" role="group">
  1582. <button type="button" class="btn waves btn-warning waves-effect waves-float text-uppercase"><?php echo $language->translate("SHOW_LESS");?></button>
  1583. </div>
  1584. </div>
  1585. </div>
  1586. </div>
  1587. </div>
  1588. </div>
  1589. </div>
  1590. </div>
  1591. </div>
  1592. </div>
  1593. <div class="email-content users-box white-bg">
  1594. <div class="email-body">
  1595. <div class="email-header gray-bg">
  1596. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1597. <h1>Users Management</h1>
  1598. </div>
  1599. <div class="email-inner small-box">
  1600. <div class="email-inner-section">
  1601. <div class="small-box fade in" id="useredit">
  1602. <div class="row">
  1603. <div class="col-lg-12">
  1604. <div class="small-box">
  1605. <form class="content-form form-inline" name="new user registration" id="registration" action="" method="POST">
  1606. <input type="hidden" name="op" value="register"/>
  1607. <input type="hidden" name="sha1" value=""/>
  1608. <input type="hidden" name="settings" value="true"/>
  1609. <div class="form-group">
  1610. <input type="text" class="form-control material" name="username" placeholder="<?php echo $language->translate("USERNAME");?>" autocorrect="off" autocapitalize="off" value="">
  1611. </div>
  1612. <div class="form-group">
  1613. <input type="email" class="form-control material" name="email" placeholder="<?php echo $language->translate("EMAIL");?>">
  1614. </div>
  1615. <div class="form-group">
  1616. <input type="password" class="form-control material" name="password1" placeholder="<?php echo $language->translate("PASSWORD");?>">
  1617. </div>
  1618. <div class="form-group">
  1619. <input type="password" class="form-control material" name="password2" placeholder="<?php echo $language->translate("PASSWORD_AGAIN");?>">
  1620. </div>
  1621. <button type="submit" onclick="User.processRegistration()" class="btn waves btn-labeled btn-primary btn btn-sm text-uppercase waves-effect waves-float promoteUser">
  1622. <span class="btn-label"><i class="fa fa-user-plus"></i></span><?php echo $language->translate("CREATE_USER");?>
  1623. </button>
  1624. </form>
  1625. </div>
  1626. </div>
  1627. </div>
  1628. <div class="small-box">
  1629. <form class="content-form form-inline" name="unregister" id="unregister" action="" method="POST">
  1630. <p id="inputUsername"></p>
  1631. <div class="table-responsive">
  1632. <table class="table table-striped">
  1633. <thead>
  1634. <tr>
  1635. <th>#</th>
  1636. <th><?php echo $language->translate("USERNAME");?></th>
  1637. <th><?php echo $language->translate("EMAIL");?></th>
  1638. <th><?php echo $language->translate("LOGIN_STATUS");?></th>
  1639. <th><?php echo $language->translate("LAST_SEEN");?></th>
  1640. <th><?php echo $language->translate("USER_GROUP");?></th>
  1641. <th><?php echo $language->translate("USER_ACTIONS");?></th>
  1642. </tr>
  1643. </thead>
  1644. <tbody>
  1645. <?php $countUsers = 1;
  1646. foreach($gotUsers as $row) :
  1647. if($row['role'] == "admin" && $countUsers == 1) :
  1648. $userColor = "red";
  1649. $disableAction = "disabled=\"disabled\"";
  1650. else :
  1651. $userColor = "blue";
  1652. $disableAction = "";
  1653. endif;
  1654. if($row['active'] == "true") :
  1655. $userActive = $language->translate("LOGGED_IN");
  1656. $userActiveColor = "primary";
  1657. else :
  1658. $userActive = $language->translate("LOGGED_OUT");
  1659. $userActiveColor = "danger";
  1660. endif;
  1661. $userpic = md5( strtolower( trim( $row['email'] ) ) );
  1662. if(!empty($row["last"])) :
  1663. $lastActive = date("Y-m-d H:i", intval($row["last"]));
  1664. else :
  1665. $lastActive = "";
  1666. endif;
  1667. ?>
  1668. <tr id="<?=$row['username'];?>">
  1669. <th scope="row"><?=$countUsers;?></th>
  1670. <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>
  1671. <td><?=$row['email'];?></td>
  1672. <td><span class="label label-<?=$userActiveColor;?>"><?=$userActive;?></span></td>
  1673. <td><?=$lastActive;?></td>
  1674. <td><span class="text-uppercase <?=$userColor;?>"><?=$row['role'];?></span></td>
  1675. <td id="<?=$row['username'];?>">
  1676. <button <?=$disableAction;?> class="btn waves btn-labeled btn-danger btn btn-sm text-uppercase waves-effect waves-float deleteUser">
  1677. <span class="btn-label"><i class="fa fa-user-times"></i></span><?php echo $language->translate("DELETE");?>
  1678. </button>
  1679. <?php if ($row['role'] == "user") : ?>
  1680. <button class="btn waves btn-labeled btn-success btn btn-sm text-uppercase waves-effect waves-float promoteUser">
  1681. <span class="btn-label"><i class="fa fa-arrow-up"></i></span><?php echo $language->translate("PROMOTE");?>
  1682. </button>
  1683. <?php endif; ?>
  1684. <?php if ($row['role'] == "admin") : ?>
  1685. <button <?=$disableAction;?> class="btn waves btn-labeled btn-warning btn btn-sm text-uppercase waves-effect waves-float demoteUser">
  1686. <span class="btn-label"><i class="fa fa-arrow-down"></i></span><?php echo $language->translate("DEMOTE");?>
  1687. </button>
  1688. <?php endif; ?>
  1689. </td>
  1690. </tr>
  1691. <?php $countUsers++; endforeach; ?>
  1692. </tbody>
  1693. </table>
  1694. </div>
  1695. </form>
  1696. </div>
  1697. </div>
  1698. </div>
  1699. </div>
  1700. </div>
  1701. </div>
  1702. <div class="email-content logs-box white-bg">
  1703. <div class="email-body">
  1704. <div class="email-header gray-bg">
  1705. <button type="button" class="btn btn-danger btn-sm waves close-button"><i class="fa fa-close"></i></button>
  1706. <h1>Logs</h1>
  1707. </div>
  1708. <div class="email-inner small-box">
  1709. <div class="email-inner-section">
  1710. <div class="small-box" id="loginlog">
  1711. <div class="table-responsive">
  1712. <?php if(file_exists(FAIL_LOG)) : ?>
  1713. <div id="loginStats">
  1714. <div class="content-box ultra-widget">
  1715. <div class="w-progress">
  1716. <span id="goodCount" class="w-amount green"></span>
  1717. <span id="badCount" class="w-amount red pull-right">3</span>
  1718. <br>
  1719. <span class="text-uppercase w-name"><?php echo $language->translate("GOOD_LOGINS");?></span>
  1720. <span class="text-uppercase w-name pull-right"><?php echo $language->translate("BAD_LOGINS");?></span>
  1721. </div>
  1722. <div class="progress progress-bar-sm zero-m">
  1723. <div id="goodPercent" class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"></div>
  1724. <div id="badPercent" class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"></div>
  1725. </div>
  1726. <div class="w-status clearfix">
  1727. <div id="goodTitle" class="w-status-title pull-left text-uppercase">20%</div>
  1728. <div id="badTitle" class="w-status-number pull-right text-uppercase">80%</div>
  1729. </div>
  1730. </div>
  1731. </div>
  1732. <table id="datatable" class="display">
  1733. <thead>
  1734. <tr>
  1735. <th><?php echo $language->translate("DATE");?></th>
  1736. <th><?php echo $language->translate("USERNAME");?></th>
  1737. <th><?php echo $language->translate("IP_ADDRESS");?></th>
  1738. <th><?php echo $language->translate("TYPE");?></th>
  1739. </tr>
  1740. </thead>
  1741. <tbody>
  1742. <?php
  1743. $getFailLog = str_replace("\r\ndate", "date", file_get_contents(FAIL_LOG));
  1744. $gotFailLog = json_decode($getFailLog, true);
  1745. $goodLogin = 0;
  1746. $badLogin = 0;
  1747. function getColor($colorTest){
  1748. if($colorTest == "bad_auth") :
  1749. $gotColorTest = "danger";
  1750. elseif($colorTest == "good_auth") :
  1751. $gotColorTest = "primary";
  1752. endif;
  1753. echo $gotColorTest;
  1754. }
  1755. foreach (array_reverse($gotFailLog["auth"]) as $key => $val) :
  1756. if($val["auth_type"] == "bad_auth") : $badLogin++; elseif($val["auth_type"] == "good_auth") : $goodLogin++; endif;
  1757. ?>
  1758. <tr>
  1759. <td><?=$val["date"];?></td>
  1760. <td><?=$val["username"];?></td>
  1761. <td><?=$val["ip"];?></td>
  1762. <td><span class="label label-<?php getColor($val["auth_type"]);?>"><?=$val["auth_type"];?></span></td>
  1763. </tr>
  1764. <?php endforeach; ?>
  1765. </tbody>
  1766. </table>
  1767. <?php
  1768. $totalLogin = $goodLogin + $badLogin;
  1769. $goodPercent = round(($goodLogin / $totalLogin) * 100);
  1770. $badPercent = round(($badLogin / $totalLogin) * 100);
  1771. endif;
  1772. if(!file_exists(FAIL_LOG)) :
  1773. echo $language->translate("NOTHING_LOG");
  1774. endif;
  1775. ?>
  1776. </div>
  1777. </div>
  1778. </div>
  1779. </div>
  1780. </div>
  1781. </div>
  1782. </div>
  1783. <!--End Content-->
  1784. </div>
  1785. <script>
  1786. $(function () {
  1787. //Data Tables
  1788. $('#datatable').DataTable({
  1789. displayLength: 10,
  1790. dom: 'T<"clear">lfrtip',
  1791. responsive: true,
  1792. "order": [[ 0, 'desc' ]],
  1793. "language": {
  1794. "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);?>",
  1795. "infoEmpty": "<?php echo $language->translate('NO_ENTRIES');?>",
  1796. "infoFiltered": "<?php echo explosion($language->translate('FILTERED'), 0);?> _MAX_ <?php echo explosion($language->translate('FILTERED'), 1);?>",
  1797. "lengthMenu": "<?php echo $language->translate('SHOW');?> _MENU_ <?php echo $language->translate('ENTRIES');?>",
  1798. "search": "",
  1799. "searchPlaceholder": "<?php echo $language->translate('SEARCH');?>",
  1800. "searchClass": "<?php echo $language->translate('SEARCH');?>",
  1801. "zeroRecords": "<?php echo $language->translate('NO_MATCHING');?>",
  1802. "paginate": {
  1803. "next": "<?php echo $language->translate('NEXT');?>",
  1804. "previous": "<?php echo $language->translate('PREVIOUS');?>",
  1805. }
  1806. }
  1807. });
  1808. });
  1809. </script>
  1810. <?php if($_POST['op']) : ?>
  1811. <script>
  1812. parent.notify("<?php echo printArray($USER->info_log); ?>","info-circle","notice","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1813. <?php if(!empty($USER->error_log)) : ?>
  1814. parent.notify("<?php echo printArray($USER->error_log); ?>","exclamation-circle ","error","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1815. <?php endif; ?>
  1816. </script>
  1817. <?php endif; ?>
  1818. <?php if($action == "addTabz") : ?>
  1819. <script>
  1820. if(!window.location.hash) {
  1821. window.location = window.location + '#loaded';
  1822. window.location.reload();
  1823. }else{
  1824. parent.notify("<strong><?php echo $language->translate('TABS_SAVED');?></strong> <?php echo $language->translate('APPLY_RELOAD');?>","floppy-o","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1825. }
  1826. </script>
  1827. <?php endif; ?>
  1828. <?php if($action == "addOptionz") : ?>
  1829. <script>
  1830. parent.notify("<strong><?php echo $language->translate('COLORS_SAVED');?></strong> <?php echo $language->translate('APPLY_RELOAD');?>","floppy-o","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  1831. </script>
  1832. <?php endif; ?>
  1833. <script>
  1834. (function($) {
  1835. function startTrigger(e,data) {
  1836. var $elem = $(this);
  1837. $elem.data('mouseheld_timeout', setTimeout(function() {
  1838. $elem.trigger('mouseheld');
  1839. }, e.data));
  1840. }
  1841. function stopTrigger() {
  1842. var $elem = $(this);
  1843. clearTimeout($elem.data('mouseheld_timeout'));
  1844. }
  1845. var mouseheld = $.event.special.mouseheld = {
  1846. setup: function(data) {
  1847. var $this = $(this);
  1848. $this.bind('mousedown', +data || mouseheld.time, startTrigger);
  1849. $this.bind('mouseleave mouseup', stopTrigger);
  1850. },
  1851. teardown: function() {
  1852. var $this = $(this);
  1853. $this.unbind('mousedown', startTrigger);
  1854. $this.unbind('mouseleave mouseup', stopTrigger);
  1855. },
  1856. time: 200 // default to 750ms
  1857. };
  1858. })(jQuery);
  1859. $(function () {
  1860. //$(".todo ul").sortable();
  1861. $(".todo ul").sortable({
  1862. 'opacity': 0.9,
  1863. });
  1864. $("#add_tab").on('submit', function (e) {
  1865. e.preventDefault();
  1866. var $toDo = $(this).find('.name-of-todo');
  1867. toDo_name = $toDo.val();
  1868. if (toDo_name.length >= 3) {
  1869. var newid = $('.list-group-item').length + 1;
  1870. $(".todo ul").append(
  1871. '<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>'
  1872. );
  1873. $('.icp-auto').iconpicker({placement: 'left', hideOnSelect: false, collision: true});
  1874. var eventObject = {
  1875. title: $.trim($("#" + newid).text()),
  1876. className: $("#" + newid).attr("data-bg"),
  1877. stick: true
  1878. };
  1879. $("#" + newid).data('eventObject', eventObject);
  1880. $toDo.val('').focus();
  1881. } else {
  1882. $toDo.focus();
  1883. }
  1884. });
  1885. count();
  1886. $(".list-group-item").addClass("list-item");
  1887. //Remove one completed item
  1888. $(document).on('click', '.trash', function (e) {
  1889. var listItemRemove = $(this).closest(".list-group-item");
  1890. var animation = "zoomOutRight";
  1891. var container = $(this).closest(".list-group-item");
  1892. //container.attr('class', 'list-group-item gray-bg animation-container');
  1893. container.addClass('animated ' + animation);
  1894. setTimeout(function() {
  1895. var clearedCompItem = listItemRemove.remove();
  1896. console.log("removed");
  1897. e.preventDefault();
  1898. count();
  1899. }, 800);
  1900. });
  1901. //Count items
  1902. function count() {
  1903. var active = $('.list-group-item').length;
  1904. $('.total-tabs span').text(active);
  1905. };
  1906. $("#submitTabs").on('submit', function (e) {
  1907. console.log("submitted");
  1908. $("div.radio").each(function(i) {
  1909. $(this).find('input').attr('name', 'default-' + i);
  1910. console.log(i);
  1911. });
  1912. $('form input[type="radio"]').not(':checked').each(function() {
  1913. $(this).prop('checked', true);
  1914. $(this).prop('value', "false");
  1915. console.log("found unchecked");
  1916. });
  1917. });
  1918. $('#apply').on('click touchstart', function(){
  1919. window.parent.location.reload();
  1920. });
  1921. });
  1922. </script>
  1923. <script>
  1924. function rememberTabSelection(tabPaneSelector, useHash) {
  1925. var key = 'selectedTabFor' + tabPaneSelector;
  1926. if(get(key))
  1927. $(tabPaneSelector).find('a[href=' + get(key) + ']').tab('show');
  1928. $(tabPaneSelector).on("click", 'a[data-toggle]', function(event) {
  1929. set(key, this.getAttribute('href'));
  1930. });
  1931. function get(key) {
  1932. return useHash ? location.hash: localStorage.getItem(key);
  1933. }
  1934. function set(key, value){
  1935. if(useHash)
  1936. location.hash = value;
  1937. else
  1938. localStorage.setItem(key, value);
  1939. }
  1940. }
  1941. $("#notifyTest").click(function(){
  1942. var notifySplit = $("#notifyValue").val().split("-");
  1943. console.log(notifySplit[0]);
  1944. parent.notify("<?php echo $language->translate('TEST_MESSAGE');?>","flask","notice","5000", notifySplit[0], notifySplit[1]);
  1945. });
  1946. $("#iconHide").click(function(){
  1947. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).toggle();
  1948. });
  1949. $("#iconAll").click(function(){
  1950. $( "div[id^='viewAllIcons']" ).toggle();
  1951. });
  1952. $("#deleteToggle").click(function(){
  1953. $( "#deleteDiv" ).toggle();
  1954. });
  1955. $("#editCssButton").click(function(){
  1956. $( "#add_optionz" ).toggle();
  1957. $( "#editCssForm" ).toggle();
  1958. });
  1959. $("#backToThemeButton").click(function(){
  1960. $( "#add_optionz" ).toggle();
  1961. $( "#editCssForm" ).toggle();
  1962. });
  1963. $(".deleteUser").click(function(){
  1964. var parent_id = $(this).parent().attr('id');
  1965. editUsername = $('#unregister').find('#inputUsername');
  1966. $(editUsername).html('<input type="hidden" name="op" value="unregister"/><input type="hidden" name="username"value="' + parent_id + '" />');
  1967. });
  1968. $(".promoteUser").click(function(){
  1969. var parent_ids = $(this).parent().attr('id');
  1970. editUsername = $('#unregister').find('#inputUsername');
  1971. $(editUsername).html('<input type="hidden" name="op" value="update"/><input type="hidden" name="role" value="admin"/><input type="hidden" name="username"value="' + parent_ids + '" />');
  1972. });
  1973. $(".demoteUser").click(function(){
  1974. var parent_idz = $(this).parent().attr('id');
  1975. editUsername = $('#unregister').find('#inputUsername');
  1976. $(editUsername).html('<input type="hidden" name="op" value="update"/><input type="hidden" name="role" value="user"/><input type="hidden" name="username"value="' + parent_idz + '" />');
  1977. });
  1978. $('#showLess').hide();
  1979. $('#loadMore').click(function () {
  1980. x= (x+5 <= size_li) ? x+5 : size_li;
  1981. $('#versionHistory li:lt('+x+')').show();
  1982. $('#showLess').show();
  1983. if(x == size_li){
  1984. $('#loadMore').hide();
  1985. }
  1986. });
  1987. $('#showLess').click(function () {
  1988. $('#versionHistory li').not(':lt(2)').hide();
  1989. $('#loadMore').show();
  1990. $('#showLess').hide();
  1991. });
  1992. $('.icp-auto').iconpicker({placement: 'left', hideOnSelect: false, collision: true});
  1993. $("li[class^='list-group-item']").bind('mouseheld', function(e) {
  1994. $(this).find("span[class^='fa fa-hand-paper-o']").attr("class", "fa fa-hand-grab-o");
  1995. $(this).addClass("dragging");
  1996. $(this).find("div[class^='action-btns tabIconView']").addClass("animated swing");
  1997. $(this).mouseup(function() {
  1998. $(this).find("span[class^='fa fa-hand-grab-o']").attr("class", "fa fa-hand-paper-o");
  1999. $(this).removeClass("dragging");
  2000. $(this).find("div[class^='action-btns tabIconView']").removeClass("animated swing");
  2001. });
  2002. });
  2003. function copyToClipboard(elem) {
  2004. // create hidden text element, if it doesn't already exist
  2005. var targetId = "_hiddenCopyText_";
  2006. var isInput = elem.tagName === "INPUT" || elem.tagName === "TEXTAREA";
  2007. var origSelectionStart, origSelectionEnd;
  2008. if (isInput) {
  2009. // can just use the original source element for the selection and copy
  2010. target = elem;
  2011. origSelectionStart = elem.selectionStart;
  2012. origSelectionEnd = elem.selectionEnd;
  2013. } else {
  2014. // must use a temporary form element for the selection and copy
  2015. target = document.getElementById(targetId);
  2016. if (!target) {
  2017. var target = document.createElement("textarea");
  2018. target.style.position = "absolute";
  2019. target.style.left = "-9999px";
  2020. target.style.top = "0";
  2021. target.id = targetId;
  2022. document.body.appendChild(target);
  2023. }
  2024. target.textContent = elem.textContent;
  2025. }
  2026. // select the content
  2027. var currentFocus = document.activeElement;
  2028. target.focus();
  2029. target.setSelectionRange(0, target.value.length);
  2030. // copy the selection
  2031. var succeed;
  2032. try {
  2033. succeed = document.execCommand("copy");
  2034. } catch(e) {
  2035. succeed = false;
  2036. }
  2037. // restore original focus
  2038. if (currentFocus && typeof currentFocus.focus === "function") {
  2039. //currentFocus.focus();
  2040. }
  2041. if (isInput) {
  2042. // restore prior selection
  2043. elem.setSelectionRange(origSelectionStart, origSelectionEnd);
  2044. } else {
  2045. // clear temporary content
  2046. target.textContent = "";
  2047. }
  2048. return succeed;
  2049. }
  2050. $("img[class^='allIcons']").click(function(){
  2051. $("textarea[id^='copyTarget']").val($(this).attr("src"));
  2052. copyToClipboard(document.getElementById("copyTarget"));
  2053. parent.notify("<?php echo $language->translate('ICON_COPY');?>","clipboard","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  2054. $( "div[id^='viewAllIcons']" ).toggle();
  2055. });
  2056. $('body').on('click', 'b.allIcons', function() {
  2057. $("textarea[id^='copyTarget2']").val($(this).attr("title"));
  2058. copyToClipboard(document.getElementById("copyTarget2"));
  2059. parent.notify("<?php echo $language->translate('ICON_COPY');?>","clipboard","success","5000", "<?=$notifyExplode[0];?>", "<?=$notifyExplode[1];?>");
  2060. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).hide();
  2061. });
  2062. </script>
  2063. <script>
  2064. //Custom Themes
  2065. function changeColor(elementName, elementColor) {
  2066. var definedElement = document.getElementById(elementName);
  2067. definedElement.focus();
  2068. definedElement.value = elementColor;
  2069. definedElement.style.backgroundColor = elementColor;
  2070. }
  2071. $('#plexTheme').on('click touchstart', function(){
  2072. changeColor("topbartext", "#E49F0C");
  2073. changeColor("topbar", "#000000");
  2074. changeColor("bottombar", "#000000");
  2075. changeColor("sidebar", "#121212");
  2076. changeColor("hoverbg", "#FFFFFF");
  2077. changeColor("activetabBG", "#E49F0C");
  2078. changeColor("activetabicon", "#FFFFFF");
  2079. changeColor("activetabtext", "#FFFFFF");
  2080. changeColor("inactiveicon", "#949494");
  2081. changeColor("inactivetext", "#B8B8B8");
  2082. changeColor("loading", "#E49F0C");
  2083. changeColor("hovertext", "#000000");
  2084. });
  2085. $('#embyTheme').on('click touchstart', function(){
  2086. changeColor("topbartext", "#52B54B");
  2087. changeColor("topbar", "#212121");
  2088. changeColor("bottombar", "#212121");
  2089. changeColor("sidebar", "#121212");
  2090. changeColor("hoverbg", "#FFFFFF");
  2091. changeColor("activetabBG", "#52B54B");
  2092. changeColor("activetabicon", "#FFFFFF");
  2093. changeColor("activetabtext", "#FFFFFF");
  2094. changeColor("inactiveicon", "#949494");
  2095. changeColor("inactivetext", "#B8B8B8");
  2096. changeColor("loading", "#52B54B");
  2097. changeColor("hovertext", "#000000");
  2098. });
  2099. $('#bookTheme').on('click touchstart', function(){
  2100. changeColor("topbartext", "#FFFFFF");
  2101. changeColor("topbar", "#3B5998");
  2102. changeColor("bottombar", "#3B5998");
  2103. changeColor("sidebar", "#8B9DC3");
  2104. changeColor("hoverbg", "#FFFFFF");
  2105. changeColor("activetabBG", "#3B5998");
  2106. changeColor("activetabicon", "#FFFFFF");
  2107. changeColor("activetabtext", "#FFFFFF");
  2108. changeColor("inactiveicon", "#DFE3EE");
  2109. changeColor("inactivetext", "#DFE3EE");
  2110. changeColor("loading", "#FFFFFF");
  2111. changeColor("hovertext", "#000000");
  2112. });
  2113. $('#spaTheme').on('click touchstart', function(){
  2114. changeColor("topbartext", "#5B391E");
  2115. changeColor("topbar", "#66BBAE");
  2116. changeColor("bottombar", "#66BBAE");
  2117. changeColor("sidebar", "#C3EEE7");
  2118. changeColor("hoverbg", "#66BBAE");
  2119. changeColor("activetabBG", "#C6C386");
  2120. changeColor("activetabicon", "#FFFFFF");
  2121. changeColor("activetabtext", "#FFFFFF");
  2122. changeColor("inactiveicon", "#5B391E");
  2123. changeColor("inactivetext", "#5B391E");
  2124. changeColor("loading", "#5B391E");
  2125. changeColor("hovertext", "#000000");
  2126. });
  2127. $('#darklyTheme').on('click touchstart', function(){
  2128. changeColor("topbartext", "#FFFFFF");
  2129. changeColor("topbar", "#375A7F");
  2130. changeColor("bottombar", "#375A7F");
  2131. changeColor("sidebar", "#222222");
  2132. changeColor("hoverbg", "#464545");
  2133. changeColor("activetabBG", "#FFFFFF");
  2134. changeColor("activetabicon", "#464545");
  2135. changeColor("activetabtext", "#464545");
  2136. changeColor("inactiveicon", "#0CE3AC");
  2137. changeColor("inactivetext", "#0CE3AC");
  2138. changeColor("loading", "#FFFFFF");
  2139. changeColor("hovertext", "#000000");
  2140. });
  2141. $('#slateTheme').on('click touchstart', function(){
  2142. changeColor("topbartext", "#C8C8C8");
  2143. changeColor("topbar", "#272B30");
  2144. changeColor("bottombar", "#272B30");
  2145. changeColor("sidebar", "#32383E");
  2146. changeColor("hoverbg", "#58C0DE");
  2147. changeColor("activetabBG", "#3E444C");
  2148. changeColor("activetabicon", "#C8C8C8");
  2149. changeColor("activetabtext", "#FFFFFF");
  2150. changeColor("inactiveicon", "#C8C8C8");
  2151. changeColor("inactivetext", "#C8C8C8");
  2152. changeColor("loading", "#C8C8C8");
  2153. changeColor("hovertext", "#000000");
  2154. });
  2155. $('#defaultTheme').on('click touchstart', function(){
  2156. changeColor("topbartext", "#FFFFFF");
  2157. changeColor("topbar", "#eb6363");
  2158. changeColor("bottombar", "#eb6363");
  2159. changeColor("sidebar", "#000000");
  2160. changeColor("hoverbg", "#eb6363");
  2161. changeColor("activetabBG", "#eb6363");
  2162. changeColor("activetabicon", "#FFFFFF");
  2163. changeColor("activetabtext", "#FFFFFF");
  2164. changeColor("inactiveicon", "#FFFFFF");
  2165. changeColor("inactivetext", "#FFFFFF");
  2166. changeColor("loading", "#FFFFFF");
  2167. changeColor("hovertext", "#000000");
  2168. });
  2169. $('#redTheme').on('click touchstart', function(){
  2170. changeColor("topbartext", "#FFFFFF");
  2171. changeColor("topbar", "#eb6363");
  2172. changeColor("bottombar", "#eb6363");
  2173. changeColor("sidebar", "#000000");
  2174. changeColor("hoverbg", "#eb6363");
  2175. changeColor("activetabBG", "#eb6363");
  2176. changeColor("activetabicon", "#FFFFFF");
  2177. changeColor("activetabtext", "#FFFFFF");
  2178. changeColor("inactiveicon", "#FFFFFF");
  2179. changeColor("inactivetext", "#FFFFFF");
  2180. changeColor("loading", "#FFFFFF");
  2181. changeColor("hovertext", "#000000");
  2182. });
  2183. $('#monokaiTheme').on('click touchstart', function(){
  2184. changeColor("topbartext", "#66D9EF");
  2185. changeColor("topbar", "#333333");
  2186. changeColor("bottombar", "#333333");
  2187. changeColor("sidebar", "#393939");
  2188. changeColor("hoverbg", "#AD80FD");
  2189. changeColor("activetabBG", "#F92671");
  2190. changeColor("activetabicon", "#FFFFFF");
  2191. changeColor("activetabtext", "#FFFFFF");
  2192. changeColor("inactiveicon", "#66D9EF");
  2193. changeColor("inactivetext", "#66D9EF");
  2194. changeColor("loading", "#66D9EF");
  2195. changeColor("hovertext", "#000000");
  2196. });
  2197. $('#thejokerTheme').on('click touchstart', function(){
  2198. changeColor("topbartext", "#CCCCCC");
  2199. changeColor("topbar", "#000000");
  2200. changeColor("bottombar", "#000000");
  2201. changeColor("sidebar", "#121212");
  2202. changeColor("hoverbg", "#CCC6CC");
  2203. changeColor("activetabBG", "#A50CB0");
  2204. changeColor("activetabicon", "#FFFFFF");
  2205. changeColor("activetabtext", "#FFFFFF");
  2206. changeColor("inactiveicon", "#949494");
  2207. changeColor("inactivetext", "#B8B8B8");
  2208. changeColor("loading", "#CCCCCC");
  2209. changeColor("hovertext", "#000000");
  2210. });
  2211. $('#newPlexTheme').on('click touchstart', function(){
  2212. changeColor("topbartext", "#E5A00D");
  2213. changeColor("topbar", "#282A2D");
  2214. changeColor("bottombar", "#282A2D");
  2215. changeColor("sidebar", "#3F4245");
  2216. changeColor("hoverbg", "#E5A00D");
  2217. changeColor("activetabBG", "#282A2D");
  2218. changeColor("activetabicon", "#E5A00D");
  2219. changeColor("activetabtext", "#E5A00D");
  2220. changeColor("inactiveicon", "#F9F9F9");
  2221. changeColor("inactivetext", "#F9F9F9");
  2222. changeColor("loading", "#E5A00D");
  2223. changeColor("hovertext", "#E0E3E6");
  2224. });
  2225. $('textarea').numberedtextarea({
  2226. // font color for line numbers
  2227. color: null,
  2228. // border color
  2229. borderColor: 'null',
  2230. // CSS class to be added to the line numbers
  2231. class: null,
  2232. // if true Tab key creates indentation
  2233. allowTabChar: true,
  2234. });
  2235. $(".email-header .close-button").click(function () {
  2236. $(".email-content").removeClass("email-active");
  2237. $('html').removeClass("overhid");
  2238. $("#settings-list").find("li").removeClass("active");
  2239. });
  2240. $(document).mouseup(function (e)
  2241. {
  2242. var container = $(".email-content");
  2243. if (!container.is(e.target) && container.has(e.target).length === 0) {
  2244. $(".email-content").removeClass("email-active");
  2245. $('html').removeClass("overhid");
  2246. $("#settings-list").find("li").removeClass("active");
  2247. }
  2248. });
  2249. $( document ).on( 'keydown', function ( e ) {
  2250. if ( e.keyCode === 27 ) { // ESC
  2251. var container = $(".email-content");
  2252. if (!container.is(e.target) && container.has(e.target).length === 0) {
  2253. $(".email-content").removeClass("email-active");
  2254. $('html').removeClass("overhid");
  2255. $("#settings-list").find("li").removeClass("active");
  2256. }
  2257. }
  2258. });
  2259. $("#open-tabs").on("click",function (e) {
  2260. $(".email-content").removeClass("email-active");
  2261. $('html').removeClass("overhid");
  2262. if($(window).width() < 768){
  2263. $('html').addClass("overhid");
  2264. }
  2265. var settingsBox = $('.tab-box');
  2266. settingsBox.addClass("email-active");
  2267. $(this).parent().addClass("active");
  2268. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2269. setTimeout(function(){
  2270. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2271. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2272. refreshMailPreloader.remove();
  2273. });
  2274. },600);
  2275. e.preventDefault();
  2276. });
  2277. $("#open-colors").on("click",function (e) {
  2278. $(".email-content").removeClass("email-active");
  2279. $('html').removeClass("overhid");
  2280. if($(window).width() < 768){
  2281. $('html').addClass("overhid");
  2282. }
  2283. var settingsBox = $('.color-box');
  2284. settingsBox.addClass("email-active");
  2285. $(this).parent().addClass("active");
  2286. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2287. setTimeout(function(){
  2288. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2289. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2290. refreshMailPreloader.remove();
  2291. });
  2292. },600);
  2293. e.preventDefault();
  2294. });
  2295. $("#open-homepage").on("click",function (e) {
  2296. $(".email-content").removeClass("email-active");
  2297. $('html').removeClass("overhid");
  2298. if($(window).width() < 768){
  2299. $('html').addClass("overhid");
  2300. }
  2301. var settingsBox = $('.homepage-box');
  2302. settingsBox.addClass("email-active");
  2303. $(this).parent().addClass("active");
  2304. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2305. setTimeout(function(){
  2306. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2307. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2308. refreshMailPreloader.remove();
  2309. });
  2310. },600);
  2311. e.preventDefault();
  2312. });
  2313. $("#open-advanced").on("click",function (e) {
  2314. $(".email-content").removeClass("email-active");
  2315. $('html').removeClass("overhid");
  2316. if($(window).width() < 768){
  2317. $('html').addClass("overhid");
  2318. }
  2319. var settingsBox = $('.advanced-box');
  2320. settingsBox.addClass("email-active");
  2321. $(this).parent().addClass("active");
  2322. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2323. setTimeout(function(){
  2324. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2325. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2326. refreshMailPreloader.remove();
  2327. });
  2328. },600);
  2329. e.preventDefault();
  2330. });
  2331. $("#open-info").on("click",function (e) {
  2332. $(".email-content").removeClass("email-active");
  2333. $('html').removeClass("overhid");
  2334. if($(window).width() < 768){
  2335. $('html').addClass("overhid");
  2336. }
  2337. var settingsBox = $('.info-box');
  2338. settingsBox.addClass("email-active");
  2339. $(this).parent().addClass("active");
  2340. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2341. setTimeout(function(){
  2342. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2343. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2344. refreshMailPreloader.remove();
  2345. });
  2346. },600);
  2347. e.preventDefault();
  2348. });
  2349. $("#open-users").on("click",function (e) {
  2350. $(".email-content").removeClass("email-active");
  2351. $('html').removeClass("overhid");
  2352. if($(window).width() < 768){
  2353. $('html').addClass("overhid");
  2354. }
  2355. var settingsBox = $('.users-box');
  2356. settingsBox.addClass("email-active");
  2357. $(this).parent().addClass("active");
  2358. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2359. setTimeout(function(){
  2360. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2361. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2362. refreshMailPreloader.remove();
  2363. });
  2364. },600);
  2365. e.preventDefault();
  2366. });
  2367. $("#open-logs").on("click",function (e) {
  2368. $(".email-content").removeClass("email-active");
  2369. $('html').removeClass("overhid");
  2370. if($(window).width() < 768){
  2371. $('html').addClass("overhid");
  2372. }
  2373. var settingsBox = $('.logs-box');
  2374. settingsBox.addClass("email-active");
  2375. $(this).parent().addClass("active");
  2376. $("<div class='refresh-preloader'><div class='la-timer la-dark'><div></div></div></div>").appendTo(settingsBox).show();
  2377. setTimeout(function(){
  2378. var refreshMailPreloader = settingsBox.find('.refresh-preloader'),
  2379. deletedMailBox = refreshMailPreloader.fadeOut(300, function(){
  2380. refreshMailPreloader.remove();
  2381. });
  2382. },600);
  2383. e.preventDefault();
  2384. });
  2385. </script>
  2386. <script>
  2387. $( document ).ready(function() {
  2388. //Hide Icon box on load
  2389. $( "div[class^='jFiler jFiler-theme-dragdropbox']" ).hide();
  2390. //Set Some Scrollbars
  2391. $(".scroller-body").niceScroll({
  2392. railpadding: {top:0,right:0,left:0,bottom:0}
  2393. });
  2394. $(".email-content").niceScroll({
  2395. railpadding: {top:0,right:0,left:0,bottom:0}
  2396. });
  2397. //Stop Div behind From Scrolling
  2398. $( '.email-content' ).on( 'mousewheel', function ( e ) {
  2399. e.preventDefault();
  2400. }, false);
  2401. //Set Hide Function
  2402. if (0) {
  2403. var authTypeFunc = function() {
  2404. // Hide Everything
  2405. $('#host-selected, #host-other, #host-plex, #host-emby, #host-ldap').hide();
  2406. // Qualify Auth Type
  2407. if($('#authType').val() !== "internal"){
  2408. $( '#host-selected' ).show();
  2409. // Qualify aithBackend
  2410. if($('#authBackend').val() === "plex"){
  2411. $('#host-selected, #host-plex').show();
  2412. }else if($('#authBackend').val().indexOf("emby")>=0){
  2413. $('#host-selected, #host-other, #host-emby').show();
  2414. }else if($('#authBackend').val() === "ldap"){
  2415. $('#host-selected, #host-other, #host-ldap').show();
  2416. }else {
  2417. $('#host-selected, #host-other').show();
  2418. }
  2419. }
  2420. }
  2421. //Hide Settings on selection
  2422. $('#authType, #authBackend').on('change', authTypeFunc);
  2423. //Hide Settings on Load
  2424. authTypeFunc();
  2425. } else { console.log() }
  2426. //Simulate Edit Tabs Click
  2427. $("#open-tabs").trigger("click");
  2428. //Append Delete log to User Logs
  2429. $("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>')
  2430. $("a[id^='ToolTables_datatable_0'] span").html('<?php echo $language->translate("PRINT");?>')
  2431. //Enable Tooltips
  2432. $('[data-toggle="tooltip"]').tooltip();
  2433. //Tab save on reload - might need to delete as we changed tab layout
  2434. //rememberTabSelection('#settingsTabs', !localStorage);
  2435. //AJAX call to github to get version info
  2436. $.ajax({
  2437. type: "GET",
  2438. url: "https://api.github.com/repos/causefx/Organizr/releases",
  2439. dataType: "json",
  2440. success: function(github) {
  2441. var currentVersion = "<?php echo INSTALLEDVERSION;?>";
  2442. infoTabVersion = $('#about').find('#version');
  2443. infoTabVersionHistory = $('#about').find('#versionHistory');
  2444. infoTabNew = $('#about').find('#whatsnew');
  2445. infoTabDownload = $('#about').find('#downloadnow');
  2446. $.each(github, function(i,v) {
  2447. if(i === 0){
  2448. console.log(v.tag_name);
  2449. githubVersion = v.tag_name;
  2450. githubDescription = v.body;
  2451. githubName = v.name;
  2452. }
  2453. $(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>');
  2454. size_li = $("#versionHistory li").size();
  2455. x=2;
  2456. $('#versionHistory li:lt('+x+')').show();
  2457. });
  2458. if(currentVersion < githubVersion){
  2459. console.log("You Need To Upgrade");
  2460. 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];?>");
  2461. $(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);
  2462. $(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>");
  2463. $( "p[id^='upgrade']" ).toggle();
  2464. }else if(currentVersion === githubVersion){
  2465. console.log("You Are on Current Version");
  2466. }else{
  2467. console.log("something went wrong");
  2468. }
  2469. $(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);?>");
  2470. }
  2471. });
  2472. //Edit Info tab with Github info
  2473. <?php if(file_exists(FAIL_LOG)) : ?>
  2474. goodCount = $('#loginStats').find('#goodCount');
  2475. goodPercent = $('#loginStats').find('#goodPercent');
  2476. goodTitle = $('#loginStats').find('#goodTitle');
  2477. badCount = $('#loginStats').find('#badCount');
  2478. badPercent = $('#loginStats').find('#badPercent');
  2479. badTitle = $('#loginStats').find('#badTitle');
  2480. $(goodCount).html("<?php echo $goodLogin;?>");
  2481. $(goodTitle).html("<?php echo $goodPercent;?>%");
  2482. $(goodPercent).attr('aria-valuenow', "<?php echo $goodPercent;?>");
  2483. $(goodPercent).attr('style', "width: <?php echo $goodPercent;?>%");
  2484. $(badCount).html("<?php echo $badLogin;?>");
  2485. $(badTitle).html("<?php echo $badPercent;?>%");
  2486. $(badPercent).attr('aria-valuenow', "<?php echo $badPercent;?>");
  2487. $(badPercent).attr('style', "width: <?php echo $badPercent;?>%");
  2488. <?php endif; ?>
  2489. });
  2490. </script>
  2491. </body>
  2492. </html>