getConfig('itemName'); $itemsName = $this->getConfig('itemsName'); return [ 'new' => 'Add New ' . $itemName, 'clear' => [ 'title' => 'Clear all ' . $itemsName, 'attribs' => ['onclick' => "return confirm('Do you really want to clear all " . $itemsName . "?');"], ], ]; } protected function _doClear() { $this->_getDataObj()->clear(); $this->_doBack(); } }