openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

TemplateEngineInfo.class.php (241B)


      1 <?php
      2 
      3 namespace template_engine;
      4 
      5 class TemplateEngineInfo
      6 {
      7 
      8     public static function getComponentList()
      9     {
     10         $components = parse_ini_file(__DIR__.'/components/components.ini');
     11 
     12         return array_keys($components);
     13     }
     14 
     15 }