/**
  * Gets a data table for the model
  * @param string $formAction URL where the table form will point to
  * @return zibo\library\html\table\ExtendedTable
  */
 protected function getTable($formAction)
 {
     $decorator = new AdvertisementDecorator($this->request->getBasePath() . '/' . self::ACTION_EDIT . '/');
     $decorator = new ZebraDecorator($decorator);
     $table = parent::getTable($formAction);
     $table->addDecorator($decorator);
     return $table;
 }