public function index() {
$data['show_name'] = $this->config->get('show_name');
.............
}
public function write($settings = array()) {
if ($show_name == '1') {
if ( (utf8_strlen($firstname) < 3) || (utf8_strlen($firstname) > 50) ) {
$json['error']['firstname'] = $this->language->get('error_firstname');
}
}
............................
}