Files
web-development/zoesch.de/ImageUpload/classes/Page_Data.class.php
Felix Zösch 07c290a453 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>
2025-12-13 01:17:15 +01:00

18 lines
399 B
PHP

<?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' />";
}
}