Skip to content
Snippets Groups Projects
Select Git revision
  • 4100b04d44a1b5e47546243fdbc3f8729bf204e2
  • 3.9 default
  • develop
  • 6.0
  • 5.0
  • 4.0
  • scrutinizer-patch-4
  • scrutinizer-patch-3
  • scrutinizer-patch-2
  • scrutinizer-patch-1
  • 3.7
  • 3.8
  • 3.6
  • 3.9_backported
  • 3.8_backported
  • 3.7_backported
  • 3.5
  • 3.6_backported
  • 3.5_backported
  • 3.4
  • 3.3_backported
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 5.0.6
  • 6.0.0
  • 5.0.5
  • 6.0.0-rc
  • 5.0.4
  • 6.0.0-beta
  • 5.0.3
  • 4.0.6
  • 5.0.2
  • 5.0.1
  • 4.0.5
  • 5.0.0
  • 4.0.4
  • 5.0.0-rc2
  • 5.0.0-rc1
41 results

skeleton_script.php

Blame
  • skeleton_script.php 3.95 KiB
    <?PHP
    /* Copyright (C) 2007 Laurent Destailleur  <eldy@users.sourceforge.net>
     * Copyright (C) ---Put here your own copyright and developer email---
     *
     * This program 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.
     *
     * This program 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 this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     */
    
    /**
            \file       dev/skeletons/skeleton_script.php
    		\ingroup    mymodule othermodule1 othermodule2
            \brief      This file is an example for a command line script
            \version    $Id$
    		\author		Put author name here
    		\remarks	Put here some comments
    */
    
    // Test if batch mode
    $sapi_type = php_sapi_name();
    $script_file=__FILE__; 
    if (eregi('([^\\\/]+)$',$script_file,$reg)) $script_file=$reg[1];
    $path=eregi_replace($script_file,'',$_SERVER["PHP_SELF"]);
    
    if (substr($sapi_type, 0, 3) == 'cgi') {
        echo "Erreur: Vous utilisez l'interpreteur PHP pour le mode CGI. Pour executer $script_file en ligne de commande, vous devez utiliser l'interpreteur PHP pour le mode CLI.\n";
        exit;
    }
    
    // Include Dolibarr environment
    require_once($path."../../htdocs/master.inc.php");
    // After this $db is a defined handler to database.
    
    // Main
    $version='$Revision$';
    @set_time_limit(0);
    $error=0;
    
    $langs->load("main");
    
    
    print "***** $script_file ($version) *****\n";
    
    
    // -------------------- START OF YOUR CODE HERE --------------------
    
    // Check parameters
    if (! isset($argv[1])) {
        print "Usage: $script_file param1 param2 ...\n";
        exit;
    }
    
    // Show parameters
    // print 'Arg1='.$argv[1]."\n";
    // print 'Arg2='.$argv[2]."\n";
    
    
    // An example of loading an object
    /*
    require_once(DOL_DOCUMENT_ROOT."/../dev/skeletons/skeleton_class.class.php");
    dolibarr_syslog("***** $script_file FETCH");
    $myobject=new Skeleton_class($db);
    $result=$myobject->fetch(1,$user);
    if ($result < 0) dolibarr_print_error($db,$myobject->error);
    */
    
    
    // An example of inserting an object in database
    /*
    require_once(DOL_DOCUMENT_ROOT."/../dev/skeletons/skeleton_class.class.php");
    dolibarr_syslog("***** $script_file DELETE");
    $myobject=new Skeleton_class($db);
    $result=$myobject->delete($user);
    if ($result < 0) dolibarr_print_error($db,$myobject->error);
    */
    
    
    // An example of updating an object in database
    /*
    require_once(DOL_DOCUMENT_ROOT."/../dev/skeletons/skeleton_class.class.php");
    dolibarr_syslog("***** $script_file UPDATE");
    $myobject=new Skeleton_class($db);
    $myobject->prop1='newvalue_prop1';
    $myobject->prop2='newvalue_prop2';
    $result=$myobject->update($user);
    if ($result < 0) dolibarr_print_error($db,$myobject->error);
    */
    
    
    // An example of deleting an object in database
    /*
    require_once(DOL_DOCUMENT_ROOT."/../dev/skeletons/skeleton_class.class.php");
    dolibarr_syslog("***** $script_file DELETE");
    $myobject=new Skeleton_class($db);
    $result=$myobject->delete($user);
    if ($result < 0) dolibarr_print_error($db,$myobject->error);
    */
    
    
    // An example of a direct SQL read
    /*
    $sql = "SELECT field1, field2";
    $sql.= " FROM ".MAIN_DB_PREFIX."c_pays";
    $sql.= " WHERE field3 = 'xxx'";
    $sql.= " ORDER BY field1 ASC";
    
    dolibarr_syslog("***** $script_file sql=".$sql);
    $resql=$db->query($sql);
    if ($resql)
    {
    	$num = $db->num_rows($resql);
    	$i = 0;
    	if ($num)
    	{
    		while ($i < $num)
    		{
    			$obj = $db->fetch_object($resql);
    			if ($obj)
    			{
    				// You can use here results
    				print $obj->field1;
    				print $obj->field2;
    			}
    			$i++;
    		}
    	}
    }
    else
    {
    	dolibarr_print_error($db);
    	exit;
    }
    */
    
    
    // -------------------- END OF YOUR CODE --------------------
    
    
    return $error;
    ?>