コード例 #1
0
 public function __construct($configuration, $colSpan = 1)
 {
     parent::__construct($colSpan);
     $this->configuration = $configuration;
     $width = $this->configuration->isVolumeControl() ? "260px" : "240px";
     $this->addCssElement("width", $width, true);
 }
コード例 #2
0
 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);
 }
コード例 #3
0
 public function __construct($colSpan = 1)
 {
     parent::__construct($colSpan);
 }
コード例 #4
0
 public function __construct($headerText, $userFunction, $colSpan = 1)
 {
     parent::__construct($colSpan);
     $this->headerText = $headerText;
     $this->userFunction = $userFunction;
 }
コード例 #5
0
 public function __construct($headerText, $cellText, $colSpan = 1)
 {
     parent::__construct($colSpan);
     $this->headerText = $headerText;
     $this->cellText = $cellText;
 }