Esempio n. 1
0
 /**
  * Get a single property from a specified plugin
  *
  * @param string $property - plugin property, e.g. "plugin_version"
  * @param string $folder - plugin folder name, else $h->plugin->folder is used
  * @param string $field - an alternative field to use instead of $folder
  */
 public function getPluginProperty($property = '', $folder = '', $field = '')
 {
     $pluginFunctions = new PluginFunctions();
     return $pluginFunctions->getPluginProperty($this, $property, $folder, $field);
 }