public static function getButtons() { if (self::$buttons == null) { $fn = Yii::app()->modulePath . "/payPal/data/buttons.php"; self::$buttons = (require $fn); } return self::$buttons; }
public function getButton($name) { $buttons = PPPhpButton::getButtons(); return isset($buttons[$name]) ? $buttons[$name] : false; }