Код: Выделить всё
if($module_data['module_classname'] != 'custom')
Код: Выделить всё
if(!in_array($module_data['module_classname'], array('custom', 'personal')))
Код: Выделить всё
if ($submit && ((isset($null['type']) && $null['type'] == 'custom') || (isset($null['submit_type']) && $null['submit_type'] == 'custom')))
Код: Выделить всё
if ($submit && ((isset($null['type']) && in_array($null['type'], array('custom', 'personal'))) || ((isset($null['submit_type']) && in_array($null['submit_type'], array('custom', 'personal'))))))
Код: Выделить всё
if(isset($null['type']) && $null['type'] == 'custom')
Код: Выделить всё
if(isset($null['type']) && in_array($null['type'], array('custom', 'personal')))
Код: Выделить всё
if($vars['type'] != 'custom')
Код: Выделить всё
if(!in_array($vars['type'], array('custom', 'personal')))
Код: Выделить всё
if (!$submit && $module_classname != 'custom')
Код: Выделить всё
if (!$submit && (!in_array($module_classname, array('custom', 'personal'))))
Код: Выделить всё
if ($module_class != 'custom')
Код: Выделить всё
if (!in_array($module_class, array('custom', 'personal')))
Код: Выделить всё
if ($row['module_classname'] != 'custom')
Код: Выделить всё
if (!in_array($row['module_classname'], array('custom', 'personal')))
PPK
9CaraTT
Код: Выделить всё
if (!$submit && $module_classname != 'custom')
Oleg
PPK
Oleg
Jeepo
PPK
Jeepo
Jeepo