Subversion Repositories oidplus

Rev

Rev 104 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 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. class OIDplusPagePublicContactEMail extends OIDplusPagePlugin {
  21.         public function type() {
  22.                 return 'public';
  23.         }
  24.  
  25.         public function priority() {
  26.                 return 900;
  27.         }
  28.  
  29.         public function action(&$handled) {
  30.                 // Nothing
  31.         }
  32.  
  33.         public function init($html=true) {
  34.                 // Nothing
  35.         }
  36.  
  37.         public function cfgSetValue($name, $value) {
  38.                 // Nothing
  39.         }
  40.  
  41.         public function gui($id, &$out, &$handled) {
  42.                 if ($id === 'oidplus:contact') {
  43.                         $handled = true;
  44.                         $out['title'] = 'Contact system admin';
  45.                         $out['icon'] = file_exists(__DIR__.'/icon_big.png') ? 'plugins/publicPages/'.basename(__DIR__).'/icon_big.png' : '';
  46.  
  47.                         if (empty(OIDplus::config()->getValue('admin_email'))) {
  48.                                 $out['text'] = '<p>The administrator of this system has not entered a contact email address.';
  49.                         } else {
  50.                                 $out['text'] = '<p>You can contact the administrator of this OIDplus system at this email address:</p><p><a href="mailto:'.htmlentities(OIDplus::config()->getValue('admin_email')).'">'.htmlentities(OIDplus::config()->getValue('admin_email')).'</a></p>';
  51.                         }
  52.                 }
  53.         }
  54.  
  55.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  56.                 if (file_exists(__DIR__.'/treeicon.png')) {
  57.                         $tree_icon = 'plugins/publicPages/'.basename(__DIR__).'/treeicon.png';
  58.                 } else {
  59.                         $tree_icon = null; // default icon (folder)
  60.                 }
  61.  
  62.                 $json[] = array(
  63.                         'id' => 'oidplus:contact',
  64.                         'icon' => $tree_icon,
  65.                         'text' => 'Contact sysadmin'
  66.                 );
  67.  
  68.                 return true;
  69.         }
  70. }
  71.  
  72. OIDplus::registerPagePlugin(new OIDplusPagePublicContactEMail());
  73.