Initial commit: Backup der Webseiten
- zoesch.de - blitzkiste.net - gruene-hassberge (norbert.zoesch.de) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
17
zoesch.de/ImageUpload/classes/Page_Data.class.php
Normal file
17
zoesch.de/ImageUpload/classes/Page_Data.class.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
class Page_Data
|
||||
{
|
||||
public $title = "";
|
||||
public $content = "";
|
||||
public $css = "";
|
||||
public $embeddedStyle = "";
|
||||
public $scriptElements = "";
|
||||
|
||||
//declare methods
|
||||
public function addScript( $src ){
|
||||
$this->scriptElements .= "<script src='$src'></script>";
|
||||
}
|
||||
public function addCSS( $href ){
|
||||
$this->css .= "<link href='$href' rel='stylesheet' />";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user