DataObjects/Core_watch.php
[Pman.Core] / SimpleExcel.php
index 9285234..2805699 100644 (file)
             [ "A", "B" ]
             [ "a",  ["test", "left"]  ] << sub array [text, formatname]
         ],
+ *     merged_ranges : array(
+ *                          array($first_row, $first_col, $last_row, $last_col),
+ * *                        array($first_row, $first_col, $last_row, $last_col),
+ *                      ),
  *     cols :  array(
             array(
                 'header'=> "Thumbnail",
                 'dataIndex'=> 'id',
+ *              'dataFormat' => 'string' // to force a string..
                 'width'=>  75,
                 'renderer' => array($this, 'getThumb'),
  *              'color' => 'yellow', // set color for the cell which is a header element
@@ -40,6 +45,7 @@
  
  
  
+require_once 'Pman.php';
 
 
 class Pman_Core_SimpleExcel extends Pman
@@ -62,31 +68,34 @@ class Pman_Core_SimpleExcel extends Pman
         //$workbook = new Spreadsheet_Excel_Writer();
         $workbook->setVersion(8);
         // sending HTTP headers
-        
+        $this->workbook = $workbook;
+            
         $formats = array();
        
         $cfg['formats'] = isset($cfg['formats']) ? $cfg['formats'] : array();
         
         foreach($cfg['formats'] as $f=>$fcfg) {
-            $formats[$f] = & $workbook->addFormat();
-            foreach($fcfg as $k=>$v) {
-                $formats[$f]->{'set' . $k}($v);
+            
+            $this->formats[$f] = & $workbook->addFormat();
+            foreach((array)$fcfg as $k=>$v) {
+                 $this->formats[$f]->{'set' . $k}($v);
             }
-             
+            
         }
          
-
-        if (empty($cfg['workbooks'])) {
-            $this->buildpage( $workbook,  $formats , $data,$cfg);
-        } else {
+         
+        if (!empty($cfg['workbook'])) {
+            $this->buildPage(  array(), $data,$cfg);
+        } elseif (!empty($cfg['workbooks'])) {
             foreach($cfg['workbooks'] as $i =>$wcfg) {
-                $this->buildpage( $workbook,  $formats , $data[$i],$wcfg);
+                $this->buildPage(   array() , $data[$i],$wcfg);
             }
             
         }
+        // if workbooks == false - > the user can call buildpage..
+        
         
         if (!empty($cfg['leave_open'])) {
-            $this->workbook = $workbook;
             $this->outfile2 = $outfile2;
             return;
         }
@@ -97,6 +106,8 @@ class Pman_Core_SimpleExcel extends Pman
     }
     
     
+    
+    
     static function date($str)
     {
         
@@ -105,8 +116,9 @@ class Pman_Core_SimpleExcel extends Pman
     }
     
     
-    function buildpage($workbook,  $formats , $data,$cfg)
+    function buildPage( $formats , $data, $cfg)
     {
+        $workbook = $this->workbook;
         //echo '<PRE>';        print_R($cfg);
       //  print_r($cfg);exit;
         // Creating a worksheet
@@ -114,8 +126,41 @@ class Pman_Core_SimpleExcel extends Pman
         // copy the config and alias so that book can be written to..
         $this->worksheet_cfg[$cfg['workbook']] = &$cfg;
         
-        $this->formats = $formats;
         
+        //$this->formats = (array)$formats;
+        
+        foreach($formats as $k=>$fcfg) {
+            if (!isset($this->formats[$f])) {
+                $this->formats[$f] = & $workbook->addFormat();
+            }
+            if (is_a($fcfg,'Spreadsheet_Excel_Writer_Format')) {
+                continue; // skip!?!?
+            }
+            // not an object..
+            foreach((array)$fcfg as $k=>$v) {
+                $this->formats[$f]->{'set' . $k}($v);
+            }
+        }
+        
+        if (isset($cfg['formats'])) {
+            
+            foreach($cfg['formats'] as $f=>$fcfg) {
+                if (!isset($this->formats[$f])) {
+                    $this->formats[$f] = & $workbook->addFormat();
+                }
+                foreach((array)$fcfg as $k=>$v) {
+                    $this->formats[$f]->{'set' . $k}($v);
+                }
+                 
+            }
+            
+             
+        }
+        
+        
+        
+        //var_dump($cfg['workbook']);
+
         $worksheet =  $workbook->addWorksheet($cfg['workbook']);
         if (is_a($worksheet, 'PEAR_Error')) {
             die($worksheet->toString());
@@ -123,6 +168,10 @@ class Pman_Core_SimpleExcel extends Pman
         //print_R($worksheet);
         $worksheet->setInputEncoding('UTF-8'); 
          
+        if(!empty($cfg['merged_ranges'])){ // merge cell
+            $worksheet->_merged_ranges = $cfg['merged_ranges'];
+        }
+        
         $this->worksheet = $worksheet;
          
         $start_row = 0;
@@ -131,7 +180,7 @@ class Pman_Core_SimpleExcel extends Pman
             foreach($cfg['head'] as $row) { 
                 foreach($row as $c => $col) {
                     if (is_array($col)) {
-                        $format = isset($formats[$col[1]] ) ? $formats[$col[1]] : false;
+                        $format = isset($this->formats[$col[1]] ) ?$this->formats[$col[1]] : false;
                         $worksheet->write($start_row, $c, $col[0], $format);
                         continue;
                     }
@@ -142,7 +191,7 @@ class Pman_Core_SimpleExcel extends Pman
                 $start_row++;
             }
             // add a spacer..
-            $start_row++;
+            if(!isset($cfg['nonspacer'])){ $start_row++; }
         }
             
                
@@ -152,24 +201,28 @@ class Pman_Core_SimpleExcel extends Pman
                     'header' => $col_cfg,
                     'dataIndex' => $col_cfg,
                     'width' => 50,
-                    
                 );
             }
         }
          
          
         foreach($cfg['cols'] as $c=>$col_cfg) {
-            $format = isset($col_cfg['color']) ? $formats[$col_cfg['color']] : false;
-            $worksheet->write($start_row, $c, $col_cfg['header'],$format);
+            
+            $format = isset($col_cfg['color']) && isset($this->formats[$col_cfg['color']]) ? $this->formats[$col_cfg['color']] : false;
+            $worksheet->write($start_row, $c, @$col_cfg['header'],$format);
             $worksheet->setColumn ( $c, $c, $col_cfg['width'] / 5);
-             
         }
         $start_row++;
         $this->start_row = &$start_row;
         
         
         $hasRender  = false;
-           //     DB_DataObject::debugLevel(1);
+         
+        if (empty($data)) {
+            return;
+        }
+        
+        
         foreach($data as $r=>$clo) {
             $hasRenderRow = $this->addLine($cfg['workbook'], $clo);
             $hasRender = ($hasRender  || $hasRenderRow) ? true : false;
@@ -201,7 +254,7 @@ class Pman_Core_SimpleExcel extends Pman
                 foreach($row as $c => $col) {
                     // if it's an array? - formated ???
                     if (is_array($col)) {
-                        $format = isset($formats[$col[1]] ) ? $formats[$col[1]] : false;
+                        $format = isset($this->formats[$col[1]] ) ? $this->formats[$col[1]] : false;
                         $worksheet->write($start_row, $c, $col[0], $format);
                         continue;
                     }
@@ -213,16 +266,14 @@ class Pman_Core_SimpleExcel extends Pman
             // add a spacer..
             $start_row++;
         }
-            
-        
-        
+         
     }
     
     function addLine($worksheet_name, $clo)
     {
         $cfg        = $this->worksheet_cfg[$worksheet_name];
         $start_row  = $this->start_row;
-        $formats    = $this->formats;
+        $formats    = (array)$this->formats;
         $worksheet  = $this->worksheet;
         
         $hasRender   = false;
@@ -239,7 +290,7 @@ class Pman_Core_SimpleExcel extends Pman
         
         foreach($cfg['cols']  as $c=>$col_cfg) {
             
-            if(isset($cl[$col_cfg['dataIndex']])){
+            if(isset($col_cfg['dataIndex']) && isset($cl[$col_cfg['dataIndex']])){
                 $v = $cl[$col_cfg['dataIndex']];
             }else{
                 if(isset($col_cfg['fillBlank'])){
@@ -266,11 +317,16 @@ class Pman_Core_SimpleExcel extends Pman
             
             $v = @iconv('UTF-8', 'UTF-8//IGNORE', $v);
             
+            $dataFormat = empty($col_cfg['dataFormat']) ? '' : $col_cfg['dataFormat'];
+             ;
+            
             
             $format = isset($col_cfg['format'])  && isset($formats[$col_cfg['format']] )   ? $formats[$col_cfg['format']] : false;
           //  print_R(array($start_row+$r, $c, $v, $format));exit;
           // handle 0 prefixes..
-            if (is_numeric($v) && substr($v,0,1) == '0' && stlren($v) > 1) {
+            if ( (is_numeric($v) &&  strlen($v) > 1 && substr($v,0,1) == '0' && substr($v,1,1) != '.') 
+                    || 
+                    $dataFormat == 'string' ) {
                 $worksheet->writeString($start_row+$r, $c, $v, $format);
             } else {
           
@@ -283,7 +339,7 @@ class Pman_Core_SimpleExcel extends Pman
     }
      
     
-    function send($fn)
+    function send($fname)
     {
         if (!empty($this->workbook)) {
             $this->workbook->close();
@@ -293,7 +349,7 @@ class Pman_Core_SimpleExcel extends Pman
         require_once 'File/Convert.php';
         $fc=  new File_Convert($this->outfile2, "application/vnd.ms-excel");
         $fn = $fc->convert("application/vnd.ms-excel"); 
-        $fc->serve('attachment',$fn); // can fix IE Mess
+        $fc->serve('attachment',$fname); // can fix IE Mess
     }