* @author Aurelien Bompard * @author LarsDW223 */ class ODTSettings { var $settings = null; /** * Constructor. Set initial meta data. */ public function __construct() { $this->settings = '<' . '?xml version="1.0" encoding="UTF-8"?' . ">\n"; $this->settings .= 'true'; } /** * Returns the complete manifest content. */ function getContent(){ return $this->settings; } }