get_default_options() 보호된 메소드

Return array of default options
protected get_default_options ( ) : array
리턴 array
 /**
  * Add default value for "position" setting
  *
  * @return array
  */
 protected function get_default_options()
 {
     $defaults = parent::get_default_options();
     $defaults['position'] = 'billing';
     return $defaults;
 }