/**
  * Constructs a new data action decorator
  * @param string $href Base URL for the href attribute
  * @param string $label Translation key for the label
  * @param string $message Translation key for the confirmation message
  */
 public function __construct($href, $label, $message = null)
 {
     parent::__construct($href, $label, $message);
 }
 /**
  * Constructs a new action decorator
  * @param string $href Base URL for the uninstall action
  * @return null
  */
 public function __construct($href)
 {
     parent::__construct($href, self::TRANSLATION_LABEL, self::TRANSLATION_MESSAGE);
 }
 /**
  * Constructs a new export action decorator
  * @param string $href Base URL for the export action, the name of the connection will be added to this string
  * @return null
  */
 public function __construct($href)
 {
     parent::__construct($href, self::TRANSLATION_EXPORT);
 }