public function addAction()
{
$success = false;
$report = CustomReport\Config::getByName($this->getParam("name"));
if (!$report) {
$report = new CustomReport\Config();
$report->setName($this->getParam("name"));
$report->save();
$success = true;
}
$this->_helper->json(["success" => $success, "id" => $report->getName()]);
}