コード例 #1
0
ファイル: billing.php プロジェクト: CrazyBobik/allotaxi.test
 protected static function init()
 {
     if (self::$_isInit) {
         return;
     }
     $prices = K_TreeQuery::gOne('/payment/accountscost/', 'prices');
     self::$_adminCost = $prices['admin_cost'];
     self::$_userCost = $prices['user_cost'];
     self::$_isInit = true;
 }