You are here

public function StylesDefault::_get in Styles 7.2

4 calls to StylesDefault::_get()
StylesDefault::arrayPop in includes/Styles.inc
StylesDefault::arrayPush in includes/Styles.inc
StylesDefault::arrayShift in includes/Styles.inc
StylesDefault::arrayUnshift in includes/Styles.inc

File

includes/Styles.inc, line 141
Styles.inc Base class for Styles.

Class

StylesDefault
@file Styles.inc Base class for Styles.

Code

public function _get($variable) {
  if (function_exists('get_' . $variable)) {
    return $this
      ->{'get_' . $variable}();
  }
  else {
    return $this
      ->get($variable);
  }
}