fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [12301] class.botemplate.inc.php


From: Saul
Subject: [Fmsystem-commits] [12301] class.botemplate.inc.php
Date: Wed, 12 Nov 2014 23:16:16 +0000

Revision: 12301
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=12301
Author:   psaul
Date:     2014-11-12 23:16:16 +0000 (Wed, 12 Nov 2014)
Log Message:
-----------
class.botemplate.inc.php

Modified Paths:
--------------
    branches/dev-syncromind/property/inc/class.botemplate.inc.php

Modified: branches/dev-syncromind/property/inc/class.botemplate.inc.php
===================================================================
--- branches/dev-syncromind/property/inc/class.botemplate.inc.php       
2014-11-12 23:15:54 UTC (rev 12300)
+++ branches/dev-syncromind/property/inc/class.botemplate.inc.php       
2014-11-12 23:16:16 UTC (rev 12301)
@@ -125,7 +125,7 @@
                        $this->start            = $data['start'];
                        $this->query            = $data['query'];
                        $this->filter           = $data['filter'];
-                       $this->sort                     = $data['sort'];
+                       $this->sort             = $data['sort'];
                        $this->order            = $data['order'];
                        $this->cat_id           = $data['cat_id'];
                        $this->allrows          = $data['allrows'];
@@ -133,21 +133,35 @@
                }
 
 
-               function read()
-               {
+               function read($data = array())
+               {       
+                        /*  
                        $template = $this->so->read(array('filter' => 
$this->filter,'start' => $this->start,'query' => $this->query,'sort' => 
$this->sort,'order' => $this->order,
                                'chapter_id' => 
$this->chapter_id,'allrows'=>$this->allrows));
+                        
                        $this->total_records = $this->so->total_records;
+                        
+                       $dateformat = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
 
-                       $dateformat                                     = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
-
                        for ($i=0; $i<count($template); $i++)
                        {
                                $template[$i]['owner'] = 
$GLOBALS['phpgw']->accounts->id2name($template[$i]['owner']);
-                               $template[$i]['entry_date']             = 
$GLOBALS['phpgw']->common->show_date($template[$i]['entry_date'],$dateformat);
+                               $template[$i]['entry_date'] = 
$GLOBALS['phpgw']->common->show_date($template[$i]['entry_date'],$dateformat);
                        }
 
                        return $template;
+                        */
+                        $values = $this->so->read($data);
+                       $this->total_records = $this->so->total_records;
+                        $dateformat = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
+
+                       for ($i=0; $i<count($values); $i++)
+                       {
+                               $values[$i]['owner'] = 
$GLOBALS['phpgw']->accounts->id2name($values[$i]['owner']);
+                               $values[$i]['entry_date'] = 
$GLOBALS['phpgw']->common->show_date($values[$i]['entry_date'],$dateformat);
+                       }
+                       return $values;
+                        
                }
 
                function read_template_hour($template_id)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]