From 2a5a6e39b1eb888bd01d3c00af69b2b4a77dccbf Mon Sep 17 00:00:00 2001 From: Adnan Date: Mon, 16 Aug 2010 17:53:30 +0500 Subject: [PATCH] EPS Relation Schema Class: adding boundingbox and pages commands --- libraries/schema/Eps_Relation_Schema.class.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libraries/schema/Eps_Relation_Schema.class.php b/libraries/schema/Eps_Relation_Schema.class.php index e0df230fe..674b89e25 100644 --- a/libraries/schema/Eps_Relation_Schema.class.php +++ b/libraries/schema/Eps_Relation_Schema.class.php @@ -98,6 +98,8 @@ class PMA_EPS $this->stringCommands .= '%%Orientation: ' . $value . "\n"; } $this->stringCommands .= "%%EndComments \n"; + $this->stringCommands .= "%%Pages 1 \n"; + $this->stringCommands .= "%%BoundingBox: 72 150 144 170 \n"; } /** @@ -793,13 +795,14 @@ class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema $this->_drawTables($this->showColor); $eps->endEpsDoc(); + $eps->showOutput($db.'-'.$this->pageNumber); + exit(); print '
';
         print_r(get_object_vars($eps));
         print_r($alltables);
         print_r(get_object_vars($this));
         print '
'; - exit(); - $eps->showOutput($db.'-'.$this->pageNumber); + } /**