PMA\libraries\plugins\schema\dia\Dia::__construct PHP Method

__construct() public method

Upon instantiation This starts writing the Dia XML document
public __construct ( )
    public function __construct()
    {
        $this->openMemory();
        /*
         * Set indenting using three spaces,
         * so output is formatted
         */
        $this->setIndent(true);
        $this->setIndentString('   ');
        /*
         * Create the XML document
         */
        $this->startDocument('1.0', 'UTF-8');
    }