/**
  * Initiate grid
  */
 protected static function setGrid()
 {
     parent::$grid = ['grid' => ['id' => ['title' => t('Id'), 'order' => true, 'filter' => ['type' => 'input', 'sanitize' => 'int', 'style' => 'width: 60px;']], 'key' => ['title' => t('Key'), 'order' => true, 'filter' => ['type' => 'input', 'sanitize' => 'string', 'style' => '']], 'type' => ['title' => t('Type'), 'order' => true, 'filter' => ['type' => 'select', 'sanitize' => 'int', 'using' => null, 'values' => Configuration::getTypesWithLabels(), 'style' => 'width: 100px;']], 'value' => ['title' => t('Value'), 'filter' => ['type' => 'input', 'sanitize' => 'number', 'style' => 'width : 90px;']], 'caption' => ['title' => t('Caption'), 'filter' => ['type' => 'input', 'sanitize' => 'string', 'style' => ''], 'display_filter' => 'truncate'], 'null' => ['title' => t('Actions')]], 'actions' => ['delete' => ['title' => t('Delete selected'), 'class' => 'btn btn-sm btn-danger']]];
 }