DataObjects/core.sql
[Pman.Core] / SimpleExcel.php
index 3a2626e..65e42c4 100644 (file)
@@ -25,7 +25,9 @@
                 'header'=> "Thumbnail",
                 'dataIndex'=> 'id',
                 'width'=>  75,
-                'renderer' => array($this, 'getThumb')
+                'renderer' => array($this, 'getThumb'),
+ *              'color' => 'yellow', // set color for the cell which is a header element
+ *              'fillBlank' => 'gray', // set the color for the cell which is a blank area
             ),
         
         // if this is set then it will add a tab foreach one.
@@ -77,10 +79,6 @@ class Pman_Core_SimpleExcel extends Pman
             }
             
         }
-         
-         
-         
-        
         
         $workbook->close();
         $this->outfile2 = $outfile2;
@@ -146,14 +144,14 @@ class Pman_Core_SimpleExcel extends Pman
          
          
         foreach($cfg['cols'] as $c=>$col_cfg) {
-            $worksheet->write($start_row, $c, $col_cfg['header']);
+            $format = isset($col_cfg['color']) ? $formats[$col_cfg['color']] : false;
+            $worksheet->write($start_row, $c, $col_cfg['header'],$format);
             $worksheet->setColumn ( $c, $c, $col_cfg['width'] / 5);
              
         }
         $start_row++;
         $hasRender  = false;
            //     DB_DataObject::debugLevel(1);
-           print_r($data);exit;
         foreach($data as $r=>$clo) {
             $cl = $clo;
             if (is_object($clo)) {
@@ -165,7 +163,16 @@ class Pman_Core_SimpleExcel extends Pman
             }
             
             foreach($cfg['cols']  as $c=>$col_cfg) {
-                $v = isset($cl[$col_cfg['dataIndex']]) ? $cl[$col_cfg['dataIndex']] : '';
+                
+                if(isset($cl[$col_cfg['dataIndex']])){
+                    $v = $cl[$col_cfg['dataIndex']];
+                }else{
+                    if(isset($col_cfg['fillBlank'])){
+                        $worksheet->write($start_row+$r, $c, '', $formats[$col_cfg['fillBlank']]);
+                    }
+                    continue;
+                }
+                
                 if (empty($cl[$col_cfg['dataIndex']])) {
                     continue;
                 }
@@ -183,9 +190,9 @@ class Pman_Core_SimpleExcel extends Pman
                 }
                 
                 $v = @iconv('UTF-8', 'UTF-8//IGNORE', $v);
+                
                 $format = isset($col_cfg['format']) ? $formats[$col_cfg['format']] : false;
                 
-          //    echo "<PRE>WRITE: ". htmlspecialchars(print_r(array($r+1, $c,$v), true));
                 $worksheet->write($start_row+$r, $c, $v, $format);
             }
         }