Ejemplo n.º 1
0
 /**
  * Get the value for a given plugin and setting
  *
  * @param string $folder name of plugin folder
  * @param string $setting name of the setting to retrieve
  * @return string|false
  *
  * Notes: If there are multiple settings with the same name,
  * this will only get the first.
  */
 public function getSetting($setting = '', $folder = '')
 {
     $pluginSettings = new PluginSettings();
     return $pluginSettings->getSetting($this, $setting, $folder);
 }