Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
dir = trailingslashit($path);
}
public function get( string $template, array $args = [] ) {
extract( $args );
include $this->get_path( $template );
}
public function get_path( $template ): string {
return $this->dir . $template . '.php';
}
public function get_header() {
$this->get( 'templates/header' );
}
public function get_footer() {
$this->get( 'templates/footer' );
}
}