fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [14796] rental billing


From: Sigurd Nes
Subject: [Fmsystem-commits] [14796] rental billing
Date: Wed, 02 Mar 2016 09:05:42 +0000

Revision: 14796
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=14796
Author:   sigurdne
Date:     2016-03-02 09:05:42 +0000 (Wed, 02 Mar 2016)
Log Message:
-----------
rental billing

Modified Paths:
--------------
    trunk/rental/inc/class.sobilling.inc.php
    trunk/rental/inc/class.sodocument.inc.php
    trunk/rental/inc/class.uibilling.inc.php
    trunk/rental/setup/tables_update.inc.php

Modified: trunk/rental/inc/class.sobilling.inc.php
===================================================================
--- trunk/rental/inc/class.sobilling.inc.php    2016-03-02 09:05:27 UTC (rev 
14795)
+++ trunk/rental/inc/class.sobilling.inc.php    2016-03-02 09:05:42 UTC (rev 
14796)
@@ -92,7 +92,7 @@
                                        array
                                                (
                                                'string' => 
"/rental/billings/{$id}",
-                                               RELATIVE_NONE
+                                               'relatives' => array( 
RELATIVE_NONE)
                                        )
                                );
 

Modified: trunk/rental/inc/class.sodocument.inc.php
===================================================================
--- trunk/rental/inc/class.sodocument.inc.php   2016-03-02 09:05:27 UTC (rev 
14795)
+++ trunk/rental/inc/class.sodocument.inc.php   2016-03-02 09:05:42 UTC (rev 
14796)
@@ -236,7 +236,7 @@
                        $vfs->override_acl = 1;
 
                        $path = "/{$root_directory}";
-                       $dir = array('string' => $path, RELATIVE_NONE);
+                       $dir = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
                        if (!$vfs->file_exists($dir))
                        {
                                if (!$vfs->mkdir($dir))
@@ -246,7 +246,7 @@
                        }
 
                        $path .= "/{$type_directory}";
-                       $dir = array('string' => $path, RELATIVE_NONE);
+                       $dir = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
                        if (!$vfs->file_exists($dir))
                        {
                                if (!$vfs->mkdir($dir))
@@ -256,7 +256,7 @@
                        }
 
                        $path .= "/{$id}";
-                       $dir = array('string' => $path, RELATIVE_NONE);
+                       $dir = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
                        if (!$vfs->file_exists($dir))
                        {
                                if (!$vfs->mkdir($dir))
@@ -281,14 +281,14 @@
                        $vfs = CreateObject('phpgwapi.vfs');
                        $vfs->override_acl = 1;
                        $path .= "/{$name}";
-                       $file = array('string' => $path, RELATIVE_NONE);
+                       $file = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
 
                        return $vfs->write
                                        (
                                        array
                                                (
                                                'string' => $path,
-                                               RELATIVE_NONE,
+                                               'relatives' => array( 
RELATIVE_NONE),
                                                'content' => 
file_get_contents($temporary_name)
                                        )
                        );
@@ -308,7 +308,7 @@
                                        array
                                                (
                                                'string' => $path,
-                                               RELATIVE_NONE
+                                               'relatives' => array( 
RELATIVE_NONE)
                                        )
                        );
                }
@@ -327,7 +327,7 @@
                                        array
                                                (
                                                'string' => $path,
-                                               RELATIVE_NONE
+                                               'relatives' => array( 
RELATIVE_NONE)
                                        )
                        );
                }

Modified: trunk/rental/inc/class.uibilling.inc.php
===================================================================
--- trunk/rental/inc/class.uibilling.inc.php    2016-03-02 09:05:27 UTC (rev 
14795)
+++ trunk/rental/inc/class.uibilling.inc.php    2016-03-02 09:05:42 UTC (rev 
14796)
@@ -1299,7 +1299,7 @@
                                                        array
                                                                (
                                                                'string' => 
$path,
-                                                               RELATIVE_NONE
+                                                               'relatives' => 
array( RELATIVE_NONE)
                                                        )
                                        );
 

Modified: trunk/rental/setup/tables_update.inc.php
===================================================================
--- trunk/rental/setup/tables_update.inc.php    2016-03-02 09:05:27 UTC (rev 
14795)
+++ trunk/rental/setup/tables_update.inc.php    2016-03-02 09:05:42 UTC (rev 
14796)
@@ -153,7 +153,7 @@
                $vfs->override_acl = 1;
 
                $path = "/rental";
-               $dir = array('string' => $path, RELATIVE_NONE);
+               $dir = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
                if (!$vfs->file_exists($dir))
                {
                        if (!$vfs->mkdir($dir))
@@ -163,7 +163,7 @@
                }
 
                $path .= "/billings";
-               $dir = array('string' => $path, RELATIVE_NONE);
+               $dir = array('string' => $path, 'relatives' => array( 
RELATIVE_NONE));
                if (!$vfs->file_exists($dir))
                {
                        if (!$vfs->mkdir($dir))
@@ -188,7 +188,7 @@
                                        array
                                                (
                                                'string' => $file_path,
-                                               RELATIVE_NONE,
+                                               'relatives' => array( 
RELATIVE_NONE),
                                                'content' => $export_data
                                        )
                                );




reply via email to

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