Subversion Repositories oidplus

Rev

Rev 768 | Rev 801 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
  6.  *
  7.  * Licensed under the Apache License, Version 2.0 (the "License");
  8.  * you may not use this file except in compliance with the License.
  9.  * You may obtain a copy of the License at
  10.  *
  11.  *     http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing, software
  14.  * distributed under the License is distributed on an "AS IS" BASIS,
  15.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16.  * See the License for the specific language governing permissions and
  17.  * limitations under the License.
  18.  */
  19.  
  20. // ATTENTION: If you change something, please make sure that the changes
  21. //            are synchronous with OIDplusPageRaAutomatedAJAXCalls
  22.  
  23. if (!defined('INSIDE_OIDPLUS')) die();
  24.  
  25. class OIDplusPageAdminNostalgia extends OIDplusPagePluginAdmin {
  26.  
  27.         public function gui($id, &$out, &$handled) {
  28.                 if ($id === 'oidplus:nostalgia') {
  29.                         $handled = true;
  30.                         $out['title'] = _L('Nostalgia');
  31.                         $out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,true).'img/main_icon.png' : '';
  32.  
  33.                         if (!OIDplus::authUtils()->isAdminLoggedIn()) {
  34.                                 $out['icon'] = 'img/error.png';
  35.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')).'</p>';
  36.                                 return;
  37.                         }
  38.  
  39.                         $out['text'] = '<p>'._L('Did you ever wonder what OIDplus would look like if it had been created in the era of MS-DOS, Windows 3.11, or Windows 95? Just download the ZIP files below and have a look!').'</p>';
  40.  
  41.                         if (class_exists('ZipArchive')) {
  42.                                 $out['text'] .= '<ul>';
  43.                                 $out['text'] .= '<li><a href="'.OIDplus::webpath(__DIR__,true).'export_dos.php">'._L('Download OIDplus for DOS').'</a>, '._L('including your database* (only OIDs)').'</li>';
  44.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/252/oidplus_dos.zip">'._L('Download OIDplus for DOS').'</a>, '._L('without data').'</li>';
  45.                                 $out['text'] .= '<li><a href="'.OIDplus::webpath(__DIR__,true).'export_win.php">'._L('Download OIDplus for Windows 3.11').'</a>, '._L('including your database* (only OIDs)').'</li>';
  46.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/254/oidplus_win311.zip">'._L('Download OIDplus for Windows 3.11').'</a>, '._L('without data').'</li>';
  47.                                 $out['text'] .= '<li><a href="'.OIDplus::webpath(__DIR__,true).'export_win.php">'._L('Download OIDplus for Windows 95 or later').'</a>, '._L('including your database* (only OIDs)').'</li>';
  48.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/253/oidplus_win95.zip">'._L('Download OIDplus for Windows 95 or later').'</a>, '._L('without data').'</li>';
  49.                                 $out['text'] .= '</ul>';
  50.                                 $out['text'] .= '<p>'._L('* Please note that the download might be delayed since your OID database is exported and added to the ZIP file.').'</p>';
  51.                         } else {
  52.                                 $out['text'] .= '<ul>';
  53.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/252/oidplus_dos.zip">'._L('Download OIDplus for DOS').'</a>, '._L('without data').'</li>';
  54.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/254/oidplus_win311.zip">'._L('Download OIDplus for Windows 3.11').'</a>, '._L('without data').'</li>';
  55.                                 $out['text'] .= '<li><a href="https://www.viathinksoft.de/download/253/oidplus_win95.zip">'._L('Download OIDplus for Windows 95 or later').'</a>, '._L('without data').'</li>';
  56.                                 $out['text'] .= '</ul>';
  57.                                 $out['text'] .= '<p><font color="red">'._L('The PHP extension "ZipArchive" needs to be installed to create a ZIP archive with an included database. Otherwise, you can just download the plain program without data.').'</font></p>';
  58.                         }
  59.                 }
  60.         }
  61.  
  62.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  63.                 if (!OIDplus::authUtils()->isAdminLoggedIn()) return false;
  64.  
  65.                 if (file_exists(__DIR__.'/img/main_icon16.png')) {
  66.                         $tree_icon = OIDplus::webpath(__DIR__,true).'img/main_icon16.png';
  67.                 } else {
  68.                         $tree_icon = null; // default icon (folder)
  69.                 }
  70.  
  71.                 $json[] = array(
  72.                         'id' => 'oidplus:nostalgia',
  73.                         'icon' => $tree_icon,
  74.                         'text' => _L('Nostalgia')
  75.                 );
  76.  
  77.                 return true;
  78.         }
  79.  
  80.         public function tree_search($request) {
  81.                 return false;
  82.         }
  83. }
  84.