aufgaben weil vergesen zu commiten
This commit is contained in:
45
progp/25-3-26/lehrer-class.php
Normal file
45
progp/25-3-26/lehrer-class.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
require_once "personen-class.php";
|
||||
class Lehrer extends Person{
|
||||
// Attribute (Member)
|
||||
private int $gehaltsstufe;#
|
||||
|
||||
// Klassen Arttribute
|
||||
public static int $maxGehaltsstufe =16;
|
||||
|
||||
// spezieller (parametrisierter) Konstruktor
|
||||
public function __construct(string $vn, string $nn, int $gs) {
|
||||
parent::__construct($vn, $nn);
|
||||
$this->setGehaltsstufe($gs);
|
||||
}
|
||||
|
||||
// Öffentliche Zugriffsfunktionen
|
||||
// Setter
|
||||
public function setGehaltsstufe(int $gs): void {
|
||||
$this->gehaltsstufe = $gs;
|
||||
}
|
||||
|
||||
// Getter
|
||||
public function getGehaltsstufe(): int {
|
||||
return $this->gehaltsstufe;
|
||||
}
|
||||
|
||||
// Sonstige Funktionen
|
||||
public function ausgabe() { // Funktion ausgabe() der Elternklasse
|
||||
// überschreibt => erweitern
|
||||
parent::ausgabe();
|
||||
echo "Gehaltsstufe: A$this->gehaltsstufe";
|
||||
echo "</p>";
|
||||
}
|
||||
|
||||
public function befoerdern():bool{
|
||||
// self die klasse selsbst -> Klasse lehrer
|
||||
// $this-> die Instanz der Klasse
|
||||
if($this->gehaltsstufe < self::$maxGehaltsstufe){
|
||||
$this->gehaltsstufe++;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
?>
|
||||
50
progp/25-3-26/lehrer-test.php
Normal file
50
progp/25-3-26/lehrer-test.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
ini_set("display_errors", "on");
|
||||
require_once "lehrer-class.php";
|
||||
require_once "schueler-class.php";
|
||||
require_once "personen-class.php";
|
||||
|
||||
// --------------------
|
||||
// L E H R E R T E S T
|
||||
// --------------------
|
||||
|
||||
echo "<h2>Lehrer</h2>";
|
||||
$l = new Lehrer("Michael", "Staudt", 13);
|
||||
$l->ausgabe();
|
||||
if($l->befoerdern()){
|
||||
echo "<p>Beförderung erfolgreich!</p>";
|
||||
echo "Neue Stufe: ".$l->getGehaltsstufe()."</p>";
|
||||
}else {
|
||||
echo "<p>Beförderung nicht erfolgreich, da höchste Stufe erreicht</p>";
|
||||
}
|
||||
|
||||
|
||||
// ------------------------
|
||||
// S C H U E L E R T E S T
|
||||
// ------------------------
|
||||
|
||||
echo "<h2>Schüler</h2>";
|
||||
$s = new Schueler("daniel", "vici123", "2BKI1");
|
||||
$s->ausgabe();
|
||||
|
||||
// --------------------
|
||||
// P E R S O N T E S T
|
||||
// --------------------
|
||||
|
||||
echo "<h2>Personen</h2>";
|
||||
$p = new Person("danielvici", "123");
|
||||
$p->ausgabe();
|
||||
|
||||
?>
|
||||
<br>
|
||||
<p>Über mir sollte php code ausgeführt werden</p>
|
||||
</body>
|
||||
</html>
|
||||
5
progp/25-3-26/person-test.php
Normal file
5
progp/25-3-26/person-test.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
// Hab nicht mit geschrieben...
|
||||
|
||||
?>
|
||||
42
progp/25-3-26/personen-class.php
Normal file
42
progp/25-3-26/personen-class.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
class Person { // dient nur zur vererberung, kein objekt erzeugen
|
||||
// Attribute (Member)
|
||||
private string $vorname; // # protected, + public, - private
|
||||
private string $nachname; // #
|
||||
|
||||
|
||||
// spezieller (parametrisierter) Konstruktor
|
||||
public function __construct(string $vn, string $nn) {
|
||||
$this->setVorname($vn);
|
||||
$this->setNachname($nn);
|
||||
}
|
||||
|
||||
// Öffentliche Zugriffsfunktionen
|
||||
// Setter
|
||||
public function setVorname(string $vn): void {
|
||||
$this->vorname = $vn;
|
||||
}
|
||||
|
||||
public function setNachname(string $nn): void {
|
||||
$this->nachname = $nn;
|
||||
}
|
||||
|
||||
// Getter
|
||||
public function getVorname(): string {
|
||||
return $this->vorname;
|
||||
}
|
||||
|
||||
public function getNachname(): string {
|
||||
return $this->nachname;
|
||||
}
|
||||
|
||||
// Sonstige Funktionen
|
||||
public function ausgabe() {
|
||||
echo "<p>";
|
||||
echo "Vorname: $this->vorname<br>";
|
||||
echo "Nachname: $this->nachname<br>";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
39
progp/25-3-26/schueler-class.php
Normal file
39
progp/25-3-26/schueler-class.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
require_once "personen-class.php";
|
||||
class Schueler extends Person{
|
||||
// Attribute (Member)
|
||||
private string $klasse;
|
||||
|
||||
// spezieller (parametrisierter) Konstruktor
|
||||
public function __construct(string $vn, string $nn, string $kl) {
|
||||
parent::__construct($vn, $nn);
|
||||
$this->setKlasse($kl);
|
||||
}
|
||||
|
||||
// Öffentliche Zugriffsfunktionen
|
||||
// Setter
|
||||
public function setKlasse(string $kl): void {
|
||||
$this->klasse = $kl;
|
||||
}
|
||||
|
||||
// Getter
|
||||
public function getKlasse(): string {
|
||||
return $this->klasse;
|
||||
}
|
||||
|
||||
// Sonstige Funktionen
|
||||
public function ausgabe() {
|
||||
parent::ausgabe();
|
||||
echo "Klasse: $this->klasse";
|
||||
echo "</p>";
|
||||
}
|
||||
|
||||
public function versetzen():bool{
|
||||
if($this->klasse == "2BKI1"){
|
||||
$this->klasse = "2BKI2";
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
?>
|
||||
36
progp/25-4-2 - oop/a2_klassen.php
Normal file
36
progp/25-4-2 - oop/a2_klassen.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
ini_set("display_errors", "on");
|
||||
class mitarbeiter {
|
||||
public string $name;
|
||||
public string $geburtsdatum;
|
||||
public string $gehalt;
|
||||
|
||||
public function __construct(string $n, string $gb, string $g) {
|
||||
$this->name = $n;
|
||||
$this->geburtsdatum = $gb;
|
||||
$this->gehalt = $g;
|
||||
}
|
||||
|
||||
public function getInfo(): string {
|
||||
echo "Name: $this->name";
|
||||
echo "Geburtsdatum: $this->geburtsdatum";
|
||||
echo" Gehalt: $this->gehalt";
|
||||
}
|
||||
|
||||
public function getJahresgehalt(): string {
|
||||
echo $this->gehalt * 12;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class vollzeit extends mitarbeiter {
|
||||
public string $arbeitszeit =40;
|
||||
|
||||
public function __construct(string $n, string $gb, string $g) {
|
||||
parent::__construct($n, $gb, $g);
|
||||
$this->name = $n;
|
||||
$this->geburtsdatum = $gb;
|
||||
$this->gehalt = $g;
|
||||
}
|
||||
}
|
||||
?>
|
||||
14
progp/25-4-2 - oop/teilnehmer.php
Normal file
14
progp/25-4-2 - oop/teilnehmer.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
ini_set("display_errors", "on");
|
||||
class teilnehmer {
|
||||
public string $name;
|
||||
public string $vorname;
|
||||
public string $code;
|
||||
|
||||
public function __construct(string $n, string $vn, string $c) {
|
||||
$this->name = $n;
|
||||
$this->vorname = $vn;
|
||||
$this->code = $c;
|
||||
}
|
||||
}
|
||||
?>
|
||||
26
progp/25-4-2 - oop/testteilnehmer.php
Normal file
26
progp/25-4-2 - oop/testteilnehmer.php
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Teilnehmer</h1>
|
||||
<?php
|
||||
ini_set("display_errors", "on");
|
||||
require_once 'teilnehmer.php';
|
||||
require_once 'tnintern.php';
|
||||
echo "<h2>Daniel</h2>";
|
||||
$tl = new tnintern("vici123", "daniel", "2BKI1", "IT");
|
||||
$tl->getDaten();
|
||||
echo "<br>";
|
||||
echo "<h2>Aurelion Sol</h2>";
|
||||
$tl = new tnintern("sol", "aurelion", "mage", "midde");
|
||||
$tl->getDaten();
|
||||
?>
|
||||
<br>
|
||||
<p>Über mir sollte php code ausgeführt werden</p>
|
||||
</body>
|
||||
</html>
|
||||
26
progp/25-4-2 - oop/tnintern.php
Normal file
26
progp/25-4-2 - oop/tnintern.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
require_once 'teilnehmer.php';
|
||||
ini_set("display_errors", "on");
|
||||
class tnintern extends teilnehmer {
|
||||
private string $abteilung;
|
||||
private int $anzahl=0;
|
||||
|
||||
public function __construct($n, $vn, $c ,$abteilung) {
|
||||
parent::__construct($vn, $n, $c);
|
||||
$this->abteilung = $abteilung;
|
||||
$this->anzahl= $this->anzahl+1;
|
||||
}
|
||||
|
||||
public function getDaten() {
|
||||
echo "Name: $this->name <br>";
|
||||
echo "Vorname: $this->vorname <br>";
|
||||
echo "Code: $this->code <br>";
|
||||
echo "Abteilung: $this->abteilung <br>";
|
||||
echo "Anzahl: $this->anzahl";
|
||||
}
|
||||
|
||||
public function getAnzahl():int {
|
||||
return $this->anzahl;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user