linea21-core
[ class tree: linea21-core ] [ index: linea21-core ] [ all elements ]

Source for file list.php

Documentation is available at list.php

  1. <?php
  2. /**
  3.  * @package linea21.core
  4.  * @subpackage plugins
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  */
  10.  
  11. //////////// Check Inclusion de pages ////////////
  12. if (!function_exists('AuthenthificationProcess')) {
  13.   include_once ("../lib/lib_common.php");
  14.   ReloadIndex('admin');
  15. }
  16.  
  17. $plugins availablePlugins();
  18.  
  19. ?>
  20. <div id="chemin">
  21. <ul>
  22.     <li><a href="index.php" class="chemin_home"><?php echo _t('way','home'?></a>
  23.     </li>
  24.     <li><a href="<?php echo $rub_link?>" id="chemin_<?php echo $rub?>"
  25.         class="chemin_rub"> <?php echo _t('menu','plugins')?> </a></li>
  26. </ul>
  27. </div>
  28. <!--end barre haute -->
  29. <?php include_once(THEME_ADMIN_PATH."quickicons.php")?>
  30. <div class="contentcontainer"><?php include_once($dir "/menurub.php");?>
  31. <div id="content">
  32. <div id="plugins_list">
  33. <h2><?php echo _t('plugins','list')?></h2>
  34. <?php if(count($plugins)>0?>
  35. <ul>
  36. <?php foreach($plugins as $plugin?>
  37.     <li
  38.         style="border-bottom: 1px dotted #ccc; margin: 1em 0; min-height: 85px">
  39.         <?php
  40.         $plug new plugin($plugin);
  41.         $infos $plug->getPluginInfo();
  42.         if($plug->hasImage()) echo '<img src="'.$plug->imagePath().'" style="float:right;border:1px solid #777" alt="'.$plug->getVar('name').'" />';
  43.         echo '<strong>'$infos['shortname''</strong> - ' _t('plugins''author'.' : '.  $infos['author'].' - ' _t('plugins''version'.' : '.$infos['version'].'<br />';
  44.         echo _t('plugins''description'.' : '.$infos['description'].'<br />';
  45.         echo _t('plugins''compatibility'.' : '.$infos['compatibility'].'<br />';
  46.         echo _t('plugins''homepage'.' : ';
  47.         if(!empty($infos['homepage'])) echo '<a href="'.$infos['homepage'].'">'.$infos['homepage'].'</a>';
  48.         else echo empty_nc('');
  49.         echo '<br />'.END_LINE;
  50.         if($plug->is_active()) {
  51.           echo '<span style="color:#0BC221">'._t('plugins''enabled')'</span> | ';
  52.           echo '<a href="index.php?rub=plugins&amp;todo=disable&amp;name='.$plug->getVar('name').'">'._t('plugins','disable').'</a>';
  53.           if($plug->hasAdvancedSettings()) echo ' | <a href="index.php?rub=plugins&amp;current='.$plug->getVar('name').'">'._t('plugins','access').'</a>';
  54.         else {
  55.           echo '<span style="color:#FF0000">'_t('plugins''disabled')'</span> | ';
  56.           echo '<a href="index.php?rub=plugins&amp;todo=enable&amp;name='.$plug->getVar('name').'">'._t('plugins','enable').'</a>';
  57.         }
  58.         ?></li>
  59.         <?php
  60. // closing foreach instruction
  61. ?>
  62. </ul>
  63. </div>
  64. </div>
  65. <?php include_once($dir "/help.php");?></div>

Documentation generated on Thu, 03 May 2012 15:05:55 +0200 by phpDocumentor 1.4.1