>VGTV@ HTV02HTVK%Ck@+HTVHTV>VGTV@ HTV02HTVK%Ck@+HTV@HTV>V0#GTV@ HTV02HTVK%Ck@+HTVXG4GTV%GTV@ HTV0+HTVF=؎ getPosition11HTV:\Aَ getposition2HTV0+HTV@+HTV>VGTV@ HTV@@(HTV6TOSTRING_USE_KEY6HTV02HTV@+HTVHTV>V`GTV@ HTV%HTV0+HTV-HTVߢ>bPHTV.HTV1StHTV`/HTVU1p HTV/HTV HTV`0HTVֿHTV0HTV|pHTV`1HTV-ڝ|'HTV@2HTV:\Aَ2HTV3HTVK+STHTV02HTVY limititeratoraJHTVpHTV @HTV`/HTV`0HTV/HTV0HTV.HTV`06HTVu2lCachingIterator!@<HTV2HTVFHTV GTVU*GTVP GTV-HTV8HTV=HTVJHTVpGTV0GTV KHTVB4GTV@ HTV2HTVPHTV89HTVGTV@ HTV@<HTVK%CkP>V0q HTV>VP8HTVtHTV6HTVHTV>V`GTV@ HTV@<HTVK%Ck6HTV@HTV>V GTV@ HTV@<HTVK%Ck6HTVHTV>VGTV@ HTV@<HTVK%Ck6HTVHTV>VGTV@ HTV@<HTVK%Ck6HTV@HTV>VGTV@ HTV 06HTV53hasNext1;HTV 4hasnext<HTV6HTV6HTV>VpGTV@ HTV0<HTV2getFlagsg@HTV@<HTV6HTV>VGTV@ HTV@HTVK%Ck6HTVHTV>V`GTV@ HTV6HTVHTVeHTVߢ>bPHTVeHTV1StHTVPfHTVU1p HTVfHTV HTVPgHTVֿHTVgHTV|pHTVhHTVK+STHTV=HTV"ropHTV=HTVK+STHTV@HTVR@HTVAHTVpAHTVPBHTVlۦUrw y HTVhis->is_promo_active() ? $infinite_pricing->prices->from_single->sale : $regular; } /** * Gets the regular upgrade price from plus to infinite * * @return int */ public function get_regular_plus_to_infinite_price() { $infinite_pricing = $this->get_infinite_pricing(); if ( is_null( $infinite_pricing ) || ! isset( $infinite_pricing->prices->from_plus->regular ) ) { return 0; } return $infinite_pricing->prices->from_plus->regular; } /** * Gets the current upgrade price from plus to infinite * * @return int */ public function get_plus_to_infinite_price() { $infinite_pricing = $this->get_infinite_pricing(); $regular = $this->get_regular_plus_to_infinite_price(); if ( is_null( $infinite_pricing ) || ! isset( $infinite_pricing->prices->from_plus->sale ) ) { return $regular; } return $this->is_promo_active() ? $infinite_pricing->prices->from_plus->sale : $regular; } /** * Gets the number of websites allowed for the single license * * @return int */ public function get_single_websites_count() { $single_pricing = $this->get_single_pricing(); if ( is_null( $single_pricing ) || ! isset( $single_pricing->websites ) ) { return 0; } return (int) $single_pricing->websites; } /** * Gets the number of websites allowed for the plus license * * @return int */ public function get_plus_websites_count() { $plus_pricing = $this->get_plus_pricing(); if ( is_null( $plus_pricing ) || ! isset( $plus_pricing->websites ) ) { return 0; } return (int) $plus_pricing->websites; } /** * Gets the number of websites allowed for the infinite license * * @return int */ public function get_infinite_websites_count() { $infinite_pricing = $this->get_infinite_pricing(); if ( is_null( $infinite_pricing ) || ! isset( $infinite_pricing->websites ) ) { return 0; } return (int) $infinite_pricing->websites; } }