Ignore:
Timestamp:
May 18, 2013, 8:21:50 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Některé formulářové typy přesunuty do jednotlivých modulů.
  • Přidáno: Moduly Customer, Task a Stock.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/System/System.php

    r534 r538  
    99    $this->ShortTitle = 'Moduly';
    1010    $this->ParentClass = 'PagePortal';
     11  }
     12 
     13  function ShowList()
     14  {
     15    $Output = '';
     16    $DbResult = $this->Database->query('SELECT COUNT(*) FROM `SystemModule`');
     17    $DbRow = $DbResult->fetch_row();
     18    $PageList = GetPageList($DbRow[0]);
     19   
     20    $Output .= $PageList['Output'];
     21    $Output .= '<table class="WideTable" style="font-size: small;">';
     22     
     23    $TableColumns = array(
     24        array('Name' => 'Name', 'Title' => 'Jméno'),
     25        array('Name' => 'Creator', 'Title' => 'Tvůrce'),
     26        array('Name' => 'Version', 'Title' => 'Verze'),
     27        array('Name' => 'License', 'Title' => 'Licence'),
     28        array('Name' => 'Installed', 'Title' => 'Instalováno'),
     29        array('Name' => 'Description', 'Title' => 'Popis'),
     30        array('Name' => 'Dependencies', 'Title' => 'Závislosti'),
     31        array('Name' => '', 'Title' => 'Akce'),
     32    );
     33    $Order = GetOrderTableHeader($TableColumns, 'Name', 0);
     34    $Output .= $Order['Output'];
     35    $Query = 'SELECT *, (SELECT GROUP_CONCAT(`T1`.`Name` SEPARATOR ", ") FROM `SystemModuleDependency` '.
     36        'LEFT JOIN `SystemModule` AS `T1` ON `T1`.`Id` = `SystemModuleDependency`.`DependencyModule` '.
     37        'WHERE `SystemModuleDependency`.`Module` = `SystemModule`.`Id`) AS `Dependencies` '.
     38        'FROM `SystemModule` '.$Order['SQL'].$PageList['SQLLimit'];
     39   
     40    $DbResult = $this->Database->query($Query);
     41    while($Module = $DbResult->fetch_assoc())
     42    {
     43      if($Module['Dependencies'] != '') $Dependencies = $Module['Dependencies'];
     44      else $Dependencies = '&nbsp;';
     45      if($Module['Installed'] == 1) $Installed = 'Ano';
     46      else $Installed = 'Ne';
     47      if($Module['Installed'] == 1) $Actions = '<a href="?A=Uninstall&amp;Id='.$Module['Id'].'">Odinstalovat</a>';
     48      else $Actions = '<a href="?A=Install&amp;Id='.$Module['Id'].'">Instalovat</a>';
     49      $Output .= '<tr><td>'.$Module['Name'].'</td>'.
     50          '<td>'.$Module['Creator'].'</td>'.
     51          '<td>'.$Module['Version'].'</td>'.
     52          '<td>'.$Module['License'].'</td>'.
     53          '<td>'.$Installed.'</td>'.
     54          '<td>'.$Module['Description'].'</td>'.
     55          '<td>'.$Dependencies.'</td>'.
     56          '<td>'.$Actions.'</td></tr>';
     57    }
     58    $Output .= '</table>';
     59    $Output .= $PageList['Output'];
     60    $Output .= '<p><a href="?A=SaveToDb">Uložit do databáze</a></p>';
     61    return($Output);   
    1162  }
    1263 
     
    3182        } else $Output .= 'Modul id '.$_GET['Id'].' nenalezen';
    3283       
    33       }
     84      } else
    3485      if($_GET['A'] == 'Uninstall')
    3586      {
     
    4091          $this->System->ModuleManager->Init();
    4192        } else $Output .= 'Modul id '.$_GET['Id'].' nenalezen';
    42       }
    43     }
    44     $DbResult = $this->Database->query('SELECT COUNT(*) FROM `SystemModule`');
    45     $DbRow = $DbResult->fetch_row();
    46     $PageList = GetPageList($DbRow[0]);   
    47 
    48     $Output .= $PageList['Output'];
    49     $Output .= '<table class="WideTable" style="font-size: small;">';
    50    
    51     $TableColumns = array(
    52       array('Name' => 'Name', 'Title' => 'Jméno'),
    53       array('Name' => 'Creator', 'Title' => 'Tvůrce'),
    54       array('Name' => 'Version', 'Title' => 'Verze'),
    55       array('Name' => 'License', 'Title' => 'Licence'),
    56       array('Name' => 'Installed', 'Title' => 'Instalováno'),
    57       array('Name' => 'Description', 'Title' => 'Popis'),
    58       array('Name' => 'Dependencies', 'Title' => 'Závislosti'),
    59       array('Name' => '', 'Title' => 'Akce'),
    60     );
    61     $Order = GetOrderTableHeader($TableColumns, 'Name', 0);
    62     $Output .= $Order['Output'];
    63     $Query = 'SELECT *, (SELECT GROUP_CONCAT(`T1`.`Name` SEPARATOR ", ") FROM `SystemModuleDependency` '.
    64       'LEFT JOIN `SystemModule` AS `T1` ON `T1`.`Id` = `SystemModuleDependency`.`DependencyModule` '.
    65       'WHERE `SystemModuleDependency`.`Module` = `SystemModule`.`Id`) AS `Dependencies` '.
    66       'FROM `SystemModule` '.$Order['SQL'].$PageList['SQLLimit'];
    67    
    68     $DbResult = $this->Database->query($Query);
    69     while($Module = $DbResult->fetch_assoc())
    70     {
    71       if($Module['Dependencies'] != '') $Dependencies = $Module['Dependencies'];
    72         else $Module['Dependencies'] = '&nbsp;';
    73       if($Module['Installed'] == 1) $Installed = 'Ano';
    74         else $Installed = 'Ne';
    75       if($Module['Installed'] == 1) $Actions = '<a href="?A=Uninstall&nbsp;Id='.$Module['Id'].'">Odinstalovat</a>';
    76         else $Actions = '<a href="?A=Install&nbsp;Id='.$Module['Id'].'">Instalovat</a>';
    77           $Output .= '<tr><td>'.$Module['Name'].'</td>'.
    78             '<td>'.$Module['Creator'].'</td>'.
    79             '<td>'.$Module['Version'].'</td>'.
    80             '<td>'.$Module['License'].'</td>'.
    81             '<td>'.$Installed.'</td>'.
    82             '<td>'.$Module['Description'].'</td>'.
    83             '<td>'.$Dependencies.'</td>'.
    84             '<td>'.$Actions.'</td></tr>';
    85     }
    86     $Output .= '</table>';
    87     $Output .= $PageList['Output'];
    88     $Output .= '<p><a href="?A=SaveToDb">Uložit do databáze</a></p>';
    89     return($Output);
     93      } else $Output .= 'Neplatná akce';         
     94    }
     95    $Output .= $this->ShowList();
     96    return($Output);   
    9097  }
    9198}
Note: See TracChangeset for help on using the changeset viewer.