/**
  * Retrieve data-ui-id attribute
  *
  * Retrieve data-ui-id attribute which will distinguish
  * link/input/container/anything else in template among others.
  * Function takes an arbitrary amount of parameters.
  *
  * @param string|null $arg1
  * @param string|null $arg2
  * @param string|null $arg3
  * @param string|null $arg4
  * @param string|null $arg5
  * @return string
  */
 public function getUiId($arg1 = null, $arg2 = null, $arg3 = null, $arg4 = null, $arg5 = null)
 {
     return parent::getUiId($arg1, $arg2, $arg3, $arg4, $arg5) . 'data-enable="' . $this->getDataAttributeName() . '" ';
 }