1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

feature/online-consultant: code styling for psr2

This commit is contained in:
Sergey Chazov 2020-08-03 16:15:50 +03:00
parent 41f8a1e5c8
commit ed968d3701
6 changed files with 17 additions and 17 deletions

View file

@ -151,8 +151,8 @@ msgstr "Ajustes del catálogo"
msgid "Online assistant"
msgstr "Consultor en línea"
msgid "Insert the javascript from the retailCRM admin panel"
msgstr "Inserte javascript desde el panel de administración de retailCRM"
msgid "Insert the Online consultant code here"
msgstr "Inserte el código de consultor en Línea aquí"
msgid "Select API version"
msgstr "Selecciona la versión de API"

View file

@ -160,8 +160,8 @@ msgstr "Настройки каталога"
msgid "Online assistant"
msgstr "Онлайн консультант"
msgid "Insert the javascript from the retailCRM admin panel"
msgstr "Вставьте javascript из административной панели retailCRM"
msgid "Insert the Online consultant code here"
msgstr "Вставьте код Онлайн-консультанта здесь"
msgid "Select API version"
msgstr "Выберите версию API"

View file

@ -151,7 +151,7 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
'title' => __( 'Online assistant', 'retailcrm' ),
'type' => 'textarea',
'id' => 'online_assistant',
'placeholder' => __( 'Insert the javascript from the retailCRM admin panel', 'retailcrm' )
'placeholder' => __( 'Insert the Online consultant code here', 'retailcrm' )
);
$this->form_fields[] = array(
@ -573,8 +573,8 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
public function validate_online_assistant_field($key, $value)
{
$onlineAssistant = $_POST['woocommerce_integration-retailcrm_online_assistant'];
if (!empty($onlineAssistant) && is_string($onlineAssistant))
{
if (!empty($onlineAssistant) && is_string($onlineAssistant)){
return wp_unslash($onlineAssistant);
}
return '';

View file

@ -375,16 +375,16 @@ if (!class_exists('WC_Retailcrm_Base')) {
echo '';
}
}
/**
* Initialize online consultant
*/
public function initialize_online_assistant()
{
if (!is_admin()) {
echo $this->get_option('online_assistant');
}
}
/**
* Initialize online consultant
*/
public function initialize_online_assistant()
{
if (!is_admin()) {
echo $this->get_option('online_assistant');
}
}
/**
* Get retailcrm api client

Binary file not shown.

Binary file not shown.