'MY', 'currency' => 'MYR', 'phone_code' => 60, ); /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'unknown'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Malaysia', 'wp-ultimo-locations'); } // end get_name; /** * Returns the list of states for MY. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return array( '10' => __('Selangor', 'wp-ultimo-locations'), '11' => __('Terengganu', 'wp-ultimo-locations'), '12' => __('Sabah', 'wp-ultimo-locations'), '13' => __('Sarawak', 'wp-ultimo-locations'), '14' => __('Kuala Lumpur', 'wp-ultimo-locations'), '15' => __('Labuan', 'wp-ultimo-locations'), '16' => __('Putrajaya', 'wp-ultimo-locations'), '01' => __('Johor', 'wp-ultimo-locations'), '02' => __('Kedah', 'wp-ultimo-locations'), '03' => __('Kelantan', 'wp-ultimo-locations'), '04' => __('Malacca', 'wp-ultimo-locations'), '05' => __('Negeri Sembilan', 'wp-ultimo-locations'), '06' => __('Pahang', 'wp-ultimo-locations'), '07' => __('Penang', 'wp-ultimo-locations'), '08' => __('Perak', 'wp-ultimo-locations'), '09' => __('Perlis', 'wp-ultimo-locations'), ); } // end states; } // end class Country_MY;