[\s\S]*?\*\/)\s*|\s*(?.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
// Remove the last semicolon
'#;+\}#',
// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
'#([\{,])([\'])(\d+|[a-z_]\w*)\2(?=\:)#i',
// --ibid. From `foo['bar']` to `foo.bar`
'#([\w\)\]])\[([\'"])([a-z_]\w*)\2\]#i',
// Replace `true` with `!0`
'#(?<=return |[=:,\(\[])true\b#',
// Replace `false` with `!1`
'#(?<=return |[=:,\(\[])false\b#',
// Clean up ...
'#\s*(\/\*|\*\/)\s*#',
),
array(
'$1',
'$1$2',
'}',
'$1$3',
'$1.$3',
'!0',
'!1',
'$1',
),
$input
);
}
function bten_minify_css( $input ) {
if ( trim( $input ) === '' ) {
return $input;
}
// Force white-space(s) in `calc()`
if ( strpos( $input, 'calc(' ) !== false ) {
$input = preg_replace_callback(
'#(?<=[\s:])calc\(\s*(.*?)\s*\)#',
function ( $matches ) {
return 'calc(' . preg_replace( '#\s+#', "\x1A", $matches[1] ) . ')';
},
$input
);
}
return preg_replace(
array(
// Remove comment(s)
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
// Remove unused white-space(s)
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~+]|\s*+-(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
// Replace `:0 0 0 0` with `:0`
'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
// Replace `background-position:0` with `background-position:0 0`
'#(background-position):0(?=[;\}])#si',
// Replace `0.6` with `.6`, but only when preceded by a white-space or `=`, `:`, `,`, `(`, `-`
'#(?<=[\s=:,\(\-]|&\#32;)0+\.(\d+)#s',
// Minify string value
'#(\/\*(?>.*?\*\/))|(?.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
// Minify HEX color code
'#(?<=[\s=:,\(]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
// Replace `(border|outline):none` with `(border|outline):0`
'#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
// Remove empty selector(s)
'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s',
'#\x1A#',
),
array(
'$1',
'$1$2$3$4$5$6$7',
'$1',
':0',
'$1:0 0',
'.$1',
'$1$3',
'$1$2$4$5',
'$1$2$3',
'$1:0',
'$1$2',
' ',
),
$input
);
}
/**
* Retrieves the image field.
*
* @link https://pippinsplugins.com/retrieve-attachment-id-from-image-url/
*/
function blossomthemes_email_newsletter_companion_get_image_field( $id, $name, $image, $label ) {
$output = '';
$output .= '
' . "\n";
echo $output;
}
/**
* Get an attachment ID given a URL.
*
* @param string $url
*
* @return int Attachment ID on success, 0 on failure
*/
function blossomthemes_email_newsletter_get_attachment_id( $url ) {
$attachment_id = 0;
$dir = wp_upload_dir();
if ( false !== strpos( $url, $dir['baseurl'] . '/' ) ) { // Is URL in uploads directory?
$file = basename( $url );
$query_args = array(
'post_type' => 'attachment',
'post_status' => 'inherit',
'fields' => 'ids',
'meta_query' => array(
array(
'value' => $file,
'compare' => 'LIKE',
'key' => '_wp_attachment_metadata',
),
),
);
$query = new WP_Query( $query_args );
if ( $query->have_posts() ) {
foreach ( $query->posts as $post_id ) {
$meta = wp_get_attachment_metadata( $post_id );
$original_file = basename( $meta['file'] );
$cropped_image_files = wp_list_pluck( $meta['sizes'], 'file' );
if ( $original_file === $file || in_array( $file, $cropped_image_files ) ) {
$attachment_id = $post_id;
break;
}
}
}
}
return $attachment_id;
}
function bten_get_mailing_list() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : '';
$calling_action = isset( $_POST['calling_action'] ) ? sanitize_text_field( wp_unslash( $_POST['calling_action'] ) ) : '';
if ( empty( $calling_action ) ) {
echo wp_json_encode( array( 'error' => __( 'Sorry, no platform found.', 'blossomthemes-email-newsletter' ) ) );
exit;
}
if ( ! wp_verify_nonce( $nonce, $calling_action ) ) {
echo wp_json_encode( array( 'error' => __( 'Sorry, your nonce did not verify.', 'blossomthemes-email-newsletter' ) ) );
exit;
}
// Sanitize $_POST data before using it.
$bten_aw_auth_code = isset( $_POST['bten_aw_auth_code'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_aw_auth_code'] ) ) : '';
$bten_mc_api_key = isset( $_POST['bten_mc_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_mc_api_key'] ) ) : '';
$bten_ml_api_key = isset( $_POST['bten_ml_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_ml_api_key'] ) ) : '';
$bten_ck_api_key = isset( $_POST['bten_ck_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_ck_api_key'] ) ) : '';
$bten_gr_api_key = isset( $_POST['bten_gr_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_gr_api_key'] ) ) : '';
$bten_ac_api_url = isset( $_POST['bten_ac_api_url'] ) ? esc_url_raw( wp_unslash( $_POST['bten_ac_api_url'] ) ) : '';
$bten_ac_api_key = isset( $_POST['bten_ac_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_ac_api_key'] ) ) : '';
$bten_sendin_api_key = isset( $_POST['bten_sendin_api_key'] ) ? sanitize_text_field( wp_unslash( $_POST['bten_sendin_api_key'] ) ) : '';
if ( 'bten_aweber_auth' === $calling_action ) {
$aw = new Blossomthemes_Email_Newsletter_AWeber();
echo wp_json_encode( $aw->bten_get_aw_auth( $bten_aw_auth_code ) );
} elseif ( 'bten_aweber_remove_auth' === $calling_action ) {
$aw = new Blossomthemes_Email_Newsletter_AWeber();
echo wp_json_encode( $aw->bten_get_aw_remove_auth() );
} elseif ( 'bten_aweber_list' === $calling_action ) {
$aw = new Blossomthemes_Email_Newsletter_AWeber();
echo wp_json_encode( $aw->bten_get_aw_lists() );
} elseif ( 'bten_mailchimp_list' === $calling_action ) {
if ( empty( $bten_mc_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
$mc = new BlossomThemes_Email_Newsletter_Settings();
$data = $mc->mailchimp_lists( $bten_mc_api_key );
if ( empty( $data['lists'] ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'invalid api key',
);
echo wp_json_encode( $data );
} else {
echo wp_json_encode( $data['lists'] );
}
}
} elseif ( 'bten_mailerlite_list' === $calling_action ) {
if ( empty( $bten_ml_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
$ml = new BlossomThemes_Email_Newsletter_Settings();
$data = $ml->mailerlite_lists( $bten_ml_api_key );
if ( empty( $data ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
wp_send_json_success( $data );
}
}
} elseif ( 'bten_convertkit_list' === $calling_action ) {
if ( empty( $bten_ck_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
$ck = new BlossomThemes_Email_Newsletter_Settings();
$data = $ck->convertkit_lists( $bten_ck_api_key );
if ( empty( $data ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'invalid api key',
);
echo wp_json_encode( $data );
} else {
echo wp_json_encode( $data );
}
}
} elseif ( 'bten_getresponse_list' === $calling_action ) {
if ( empty( $bten_gr_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
$gt = new Blossomthemes_Email_Newsletter_GetResponse();
$data = $gt->getresponse_lists( $bten_gr_api_key );
if ( empty( $data ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'invalid api key',
);
echo wp_json_encode( $data );
} else {
echo wp_json_encode( $data );
}
}
} elseif ( 'bten_activecampaign_list' === $calling_action ) {
if ( empty( $bten_ac_api_url ) || empty( $bten_ac_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key or URL',
'desc' => 'empty api key or url',
);
echo wp_json_encode( $data );
} else {
$ac = new BlossomThemes_Email_Newsletter_Settings();
$data = $ac->activecampaign_lists( $bten_ac_api_key, $bten_ac_api_url );
echo wp_json_encode( $data );
if ( isset( $data['errorMessage'] ) ) {
return '';
}
}
} elseif ( 'bten_sendinblue_list' === $calling_action ) {
$lists = array();
if ( empty( $bten_sendin_api_key ) ) {
$data[0] = array(
'name' => 'No Lists Found',
'message' => 'Please enter a valid API Key',
'desc' => 'empty api key',
);
echo wp_json_encode( $data );
} else {
$mailin = new Blossom_Sendinblue_API_Client();
$lists = array();
$list_data = $mailin->getAllLists();
if ( ! empty( $list_data['lists'] ) ) {
foreach ( $list_data['lists'] as $value ) {
if ( 'Temp - DOUBLE OPTIN' == $value['name'] ) {
$temp_list = $value['id'];
update_option( 'bten_sib_temp_list', $temp_list );
continue;
}
$lists[] = array(
'id' => $value['id'],
'name' => $value['name'],
);
}
}
}
if ( count( $lists ) > 0 ) {
set_transient( 'bten_sib_list_' . md5( $bten_sendin_api_key ), $lists, 4 * HOUR_IN_SECONDS );
}
wp_send_json_success( $lists );
} else {
echo wp_json_encode( array() );
}
die();
}
/**
* Clean variables using sanitize_text_field. Arrays are cleaned recursively.
* Non-scalar values are ignored.
*
* @param string|array $var Data to sanitize.
* @return string|array
* @since 2.2.7
*/
public static function bten_clean( $var ) {
if ( is_array( $var ) ) {
return array_map( array( 'Blossomthemes_Email_Newsletter_Functions', 'bten_clean' ), $var );
} elseif ( is_scalar( $var ) ) {
return sanitize_text_field( $var );
} else {
return $var;
}
}
}
new Blossomthemes_Email_Newsletter_Functions();
Làm chứng chỉ Anh Văn B1 -
Chuyển đến phần nội dung
Làm chứng chỉ Anh Văn
BẠN MUỐN LÀM CHỨNG CHỈ ANH VĂN TIN HỌC HOẮC CÁC LOẠI CHỨNG CHỈ KHÁC HÃY LIÊN HỆ: 0936.257.404 (HOÀNG TÙNG) CÓ THỂ GỌI TRỰC TIẾP 24/24 HOẶC TRAO ĐỔI QUA ZALO
LÀM CHỨNG CHỈ ANH VĂN, LÀM CHỨNG CHỈ TIẾNG ANH. LÀM CHỨNG CHỈ CÁC LOẠI
Làm chứng chỉ Ngoại ngữ (ABC) Làm chứng chỉ Tiếng anh khung 6 bậc Làm chứng chỉ tin học
Theo thông tư số 01/2014/TT-BGDĐT về khung năng lực Ngoại ngữ 6 bậc dùng cho Việt Nam thì những người có trình độ tiếng Anh A2 có thể sử dụng được các cấu trúc câu được sử dụng thường xuyên liên quan đến nhu cầu giao tiếp cơ bản và có vốn từ vựng về những nhu cầu thiết yếu. Như vậy, so sánh trình độ A2 tiếng Anh với các chứng chỉ tiếng Anh quốc gia A, B, C cũ thì trình độ A2 tương đương trình độ B trước đây.
Bạn muốn bổ sung chứng chỉ anh văn Theo thông tư số 01/2014/TT-BGDĐT mà không có thời gian đi học. Hãy liên hệ với chúng tôi. Chúng tôi cam kết làm chứng chỉ anh văn:
– Bảo mật; – Chất lượng; – Nhanh chóng; – Không cần đặt cọc, nhận hàng kiểm tra rồi thanh toán;
Cần tư vấn chuyên sâu hơn vui lòng LIÊN HỆ: 0936.257.404 (Hoàng Tùng) CÓ THỂ GỌI TRỰC TIẾP 24/24 HOẶC TRAO ĐỔI QUA ZALO
Làm chứng chỉ anh văn cần cung cấp thông tin sau:
Họ tên: Ngày sinh: Trường cấp Năm cấp: Số điện thoại: Địa chỉ nhận:
Mong muốn giúp đỡ được các bạn Xin cảm ơn!
Điều hướng bài viết
[instagram-feed]
Lên trên