fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [16430]


From: nelson . guerra
Subject: [Fmsystem-commits] [16430]
Date: Mon, 13 Mar 2017 21:47:08 -0400 (EDT)

Revision: 16430
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16430
Author:   nelson224
Date:     2017-03-13 21:47:08 -0400 (Mon, 13 Mar 2017)
Log Message:
-----------


Added Paths:
-----------
    branches/dev-syncromind-2/property/inc/class.soreport.inc.php

Copied: branches/dev-syncromind-2/property/inc/class.soreport.inc.php (from rev 
16429, branches/dev-syncromind-2/property/inc/class.sogeneric_document.inc.php)
===================================================================
--- branches/dev-syncromind-2/property/inc/class.soreport.inc.php               
                (rev 0)
+++ branches/dev-syncromind-2/property/inc/class.soreport.inc.php       
2017-03-14 01:47:08 UTC (rev 16430)
@@ -0,0 +1,72 @@
+<?php
+       /**
+        * phpGroupWare - property: a part of a Facilities Management System.
+        *
+        * @author Sigurd Nes <address@hidden>
+        * @copyright Copyright (C) 2012 Free Software Foundation, Inc. 
http://www.fsf.org/
+        * This file is part of phpGroupWare.
+        *
+        * phpGroupWare is free software; you can redistribute it and/or modify
+        * it under the terms of the GNU General Public License as published by
+        * the Free Software Foundation; either version 2 of the License, or
+        * (at your option) any later version.
+        *
+        * phpGroupWare is distributed in the hope that it will be useful,
+        * but WITHOUT ANY WARRANTY; without even the implied warranty of
+        * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+        * GNU General Public License for more details.
+        *
+        * You should have received a copy of the GNU General Public License
+        * along with phpGroupWare; if not, write to the Free Software
+        * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  
02110-1301  USA
+        *
+        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+        * @internal Development of this application was funded by 
http://www.bergen.kommune.no/
+        * @package property
+        * @subpackage logistic
+        * @version $Id: class.soreport.inc.php 14913 2016-04-27 12:27:37Z 
sigurdne $
+        */
+
+       class property_soreport 
+       {
+
+               function __construct()
+               {
+                       $this->db = & $GLOBALS['phpgw']->db;
+                       $this->join = & $this->db->join;
+                       $this->left_join = & $this->db->left_join;
+                       $this->like = & $this->db->like;                
+                       $this->total_records = 0;
+               }
+
+               public function read($data)
+               {
+                       return array();
+               }
+               
+               public function get_views()
+               {
+                       $sql = "SELECT table_name as name
+                                       FROM information_schema.tables
+                                       WHERE table_schema = current_schema()
+                                       AND table_type = 'VIEW'";
+       
+                       $this->db->query($sql, __LINE__, __FILE__);
+                       $this->total_records = $this->db->num_rows();
+
+                       $values = array();
+
+                       $this->db->query($sql, __LINE__, __FILE__);
+
+                       while ($this->db->next_record())
+                       {
+                               $values[] = array
+                                       (
+                                       'name' => $this->db->f('name')
+                               );
+                       }
+                       
+                       return $values;
+               }
+               
+       }
\ No newline at end of file




reply via email to

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