/**
  * 일반 옵션
  *
  * @return array
  */
 private static function get_settings_general()
 {
     $auth_section = WSKL_Dabory_SMS_Provider_Loading::get_auth_section_settings();
     return array_merge($auth_section, array(array('type' => 'title', 'title' => __('문자메시지 일반 옵션', 'wskl'), 'id' => 'general_options'), array('id' => wskl_get_option_name('sms_sender_phone'), 'title' => __('발신번호', 'wskl'), 'type' => 'text', 'desc' => __('발신자의 전화번호는 반드시 사전에 발신자 등록이 되어야 합니다.', 'wskl'), 'default' => ''), array('id' => wskl_get_option_name('sms_receiver_meta_field'), 'type' => 'text', 'title' => __('전화번호 메타 필드', 'wskl'), 'desc' => __('문자메시지 발송에 필요한 고객의 휴대전화를 저장하는 메타 필드의 이름입니다. 기본값: billing_phone', 'wskl'), 'default' => 'billing_phone'), array('id' => wskl_get_option_name('sms_shop_manager_phones'), 'title' => '상점관리자 수신번호', 'type' => 'textarea', 'desc' => __('상점관리자의 전화번호를 한 줄에 하나씩 입력합니다.', 'wskl'), 'custom_attributes' => array('rows' => 10, 'cols' => 18), 'default' => ''), array('type' => 'message_tester'), array('type' => 'sectionend', 'id' => 'general_options')));
 }