You are here

class OGMDrupalSettings in Open Graph meta tags 6

Same name and namespace in other branches
  1. 7 opengraph_meta.common.inc \OGMDrupalSettings

Implementation which uses Drupal's variables store.

Hierarchy

Expanded class hierarchy of OGMDrupalSettings

File

./opengraph_meta.common.inc, line 369

View source
class OGMDrupalSettings implements OGMSettings {
  public function get($name, $default) {
    return variable_get($name, $default);
  }
  public function set($name, $value) {
    variable_set($name, $value);
  }

}

Members