class-wpml-tm-ate-api-error.php
649 Bytes
<?php
class WPML_TM_ATE_API_Error {
public function log( $message ) {
$wpml_admin_notices = wpml_get_admin_notices();
$notice = new WPML_Notice(
WPML_TM_ATE_Jobs_Actions::RESPONSE_ATE_ERROR_NOTICE_ID,
sprintf(
__( 'There was a problem communicating with ATE: %s ', 'wpml-translation-management' ),
'(<i>' . $message . '</i>)'
),
WPML_TM_ATE_Jobs_Actions::RESPONSE_ATE_ERROR_NOTICE_GROUP
);
$notice->set_css_class_types( array( 'warning' ) );
$notice->add_capability_check( array( 'manage_options', 'wpml_manage_translation_management' ) );
$notice->set_flash();
$wpml_admin_notices->add_notice( $notice );
}
}