*/ class Button extends Control { private $text; private $icon; private $mainStyle; private $onClick; function __construct($parent) { parent::__construct($parent); $this->onClick = new Collection(); } public function getText() { return $this->text; } protected function setText($text) { $this->text = $text; } public function getValue() { return $this->getText(); } protected function setValue($value) { $this->setText($value); } public function getIcon() { return $this->icon; } protected function setIcon($icon) { $this->icon = $icon; } public function getMainStyle() { return $this->mainStyle; } protected function setMainStyle($mainStyle) { $this->mainStyle = $mainStyle; } public function OnClick() { return $this->onClick; } } WebSVN - freenet-router - Blame - Rev 2 - /trunk/freenet-router/var/www/freenet-router/Framework/Libraries/UI/Model/Button.php
  jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [UI/] [Model/] [Button.php] - Blame information for rev 2

 

Line No. Rev Author Line

Powered by WebSVN 2.2.1