0B̋JXB̋JB̋JB̋JB̋JB̋J C̋JHC̋JpC̋JC̋J C̋J C̋J D̋J 8D̋J `D̋JD̋JD̋JD̋JE̋J(E̋JPE̋JxE̋JE̋JE̋JE̋JF̋J@F̋JhF̋JF̋JF̋JF̋JG̋J0G̋J XG̋J!G̋J"G̋J#G̋J$G̋J% H̋J&HH̋J'pH̋J(H̋J)H̋J*H̋J+I̋J,8I̋J-`I̋J.I̋J/I̋J0I̋J1J̋J2(J̋J3PJ̋J4xJ̋J5J̋J6J̋J7J̋J8K̋J9@K̋J:hK̋J;K̋J<K̋J=K̋J>L̋J?0L̋J@XL̋JAL̋JBL̋JCL̋JDL̋JE M̋JFHM̋JGpM̋JHM̋JIM̋JJM̋JKN̋JL8N̋JM`N̋JNN̋JON̋JPN̋JQŐJR(ŐJSPŐJTxŐJUŐJVŐJWP̋JX(P̋JYPP̋JZxP̋J[P̋J\P̋J]P̋J^Q̋J_@Q̋J`hQ̋JaQ̋JbQ̋JcQ̋JdR̋Je0R̋JfXR̋JgR̋JhR̋JiR̋JjR̋Jk S̋JlHS̋JmpS̋JnS̋JoS̋JpS̋JqT̋Jr8T̋Js`T̋JtT̋JuT̋JvT̋JwŰJx(ŰJyPŰJzxŰJ{ŰJ|ŰJ}ŰJ~V̋Jhis->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; } }