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

Adjust for PHP 5.3+

This commit is contained in:
Бараников Максим 2020-08-08 18:45:31 +03:00
parent 1a4478f002
commit ff2136cc00
2 changed files with 9 additions and 8 deletions

View file

@ -182,12 +182,11 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
* Client roles options
*/
$client_roles_option = array();
$client_roles_list = wp_roles();
$client_roles_list = wp_roles()->get_names();
if ($client_roles_list && !empty($client_roles_list->get_names())) {
foreach ($client_roles_list->get_names() as $code => $name) {
$client_roles_option[$code] =$name;
if (!empty($client_roles_list)) {
foreach ($client_roles_list as $code => $name) {
$client_roles_option[$code] = $name;
}
$this->form_fields[] = array(

View file

@ -621,10 +621,12 @@ if (!class_exists('WC_Retailcrm_Customers')) :
*/
public function isCustomer($user)
{
if (empty($this->retailcrm_settings['client_roles']))
$selectedRoles = [self::CUSTOMER_ROLE, self::ADMIN_ROLE];
$retailcrmSettings = $this->retailcrm_settings['client_roles'];
if (empty($retailcrmSettings))
$selectedRoles = array(self::CUSTOMER_ROLE, self::ADMIN_ROLE);
else
$selectedRoles = $this->retailcrm_settings['client_roles'];
$selectedRoles = $retailcrmSettings;
if ($user instanceof WP_User) {
$userRoles = $user->roles;