first commit
This commit is contained in:
34
_rejestracja/core/class/HtmlElement.class.php
Normal file
34
_rejestracja/core/class/HtmlElement.class.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Klasa elementow html
|
||||
*/
|
||||
class HtmlElement {
|
||||
|
||||
|
||||
private $elements;
|
||||
|
||||
/*
|
||||
* Pusty konstruktor
|
||||
*/
|
||||
public function __construct() {
|
||||
|
||||
}
|
||||
|
||||
public function GetElements() {
|
||||
return $this->elements;
|
||||
}
|
||||
|
||||
public function SetElements($elements) {
|
||||
$this->elements = $elements;
|
||||
}
|
||||
|
||||
public function AddElement($element) {
|
||||
$this->elements[] = $element;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user