Example #1
0
 /**
  * Read and return plugin info from top of a plugin file.
  *
  * @param string $theme - theme folder
  * @return array|false
  */
 public function readThemeMeta($theme = 'default')
 {
     require_once LIBS . 'ThemeSettings.php';
     $themeSettings = new ThemeSettings();
     return $themeSettings->readThemeMeta($this, $theme);
 }