public function __construct($configuration, $colSpan = 1) { parent::__construct($colSpan); $this->configuration = $configuration; $width = $this->configuration->isVolumeControl() ? "260px" : "240px"; $this->addCssElement("width", $width, true); }
public function __construct($configuration, $colSpan = 1) { parent::__construct($colSpan); $this->configuration = $configuration; $this->addCssElement("text-align", "center", true); $this->addCssElement("width", $this->configuration->getDownloadColWidth() . "px", true); }
public function __construct($colSpan = 1) { parent::__construct($colSpan); }
public function __construct($headerText, $userFunction, $colSpan = 1) { parent::__construct($colSpan); $this->headerText = $headerText; $this->userFunction = $userFunction; }
public function __construct($headerText, $cellText, $colSpan = 1) { parent::__construct($colSpan); $this->headerText = $headerText; $this->cellText = $cellText; }