mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
NEW:
Cleaned up routines for better readability of both declaration and results.
PHP versions now really covered.
The old code forced install of PHP and didn't use Travis provided versions.
This resulted in the process not being executed with the declared PHP version.
Dropped MySQL in favor of MariaDB.
This is now the FLOSS community standard.
This should help avoid problems with buggy MySQL releases.
Fast finish enabled to show results faster.
Optimized tools installation with composer.
The right version of the tool is installed for the PHP version under test.
New PHP linter to check for syntax errors.
Parallelized for better speed.
Apache + PHP FPM for testing webservices.
The previous mod_php configuration was not supported on Travis.
New global DEBUG environment variable to show verbose output with configuration files content.
IRC notification on #dolibarr@freenode for community awareness.
FIXES:
Bug in scripts preventing execution with environmentalized PHP.
Wrong detection of MAIN_URL_ROOT under specific circumstances.
$_SERVER["DOCUMENT_ROOT"] empty and $_SERVER["SCRIPT_NAME"] populated.
Relative ignore directive in coding style ruleset to avoid bypassing test.
Unit test errors without an exit status.
This prevented the CI from properly detecting and reporting the error.
TODOS:
PostgreSQL support.
This one is tricky since we only have a MySQL dump and the syntax is not directly compatible.
SQLite support.
Disabled in core at the moment.
Nginx + PHP FPM support.
Test webservices on the second most popular webserver.
Run dev/* checks.
We have a nice collection of scripts we could leverage.
Check Javascript.
Check CSS.
Check SQL.
675 lines
24 KiB
PHP
Executable File
675 lines
24 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/* Copyright (C) 2008-2014 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file dev/skeletons/build_class_from_table.php
|
|
* \ingroup core
|
|
* \brief Create a complete class file from a table in database
|
|
*/
|
|
|
|
$sapi_type = php_sapi_name();
|
|
$script_file = basename(__FILE__);
|
|
$path=dirname(__FILE__).'/';
|
|
|
|
// Test if batch mode
|
|
if (substr($sapi_type, 0, 3) == 'cgi') {
|
|
echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
|
|
exit;
|
|
}
|
|
|
|
// Include Dolibarr environment
|
|
require_once($path."../../htdocs/master.inc.php");
|
|
// After this $db is a defined handler to database.
|
|
|
|
// Main
|
|
$version='3.2';
|
|
@set_time_limit(0);
|
|
$error=0;
|
|
|
|
$langs->load("main");
|
|
|
|
|
|
print "***** $script_file ($version) *****\n";
|
|
|
|
|
|
// -------------------- START OF BUILD_CLASS_FROM_TABLE SCRIPT --------------------
|
|
|
|
// Check parameters
|
|
if (! isset($argv[1]) || ! isset($argv[2]) || (isset($argv[3]) && ! isset($argv[7])))
|
|
{
|
|
print "Usage: $script_file tablename modulename [server port databasename user pass]\n";
|
|
exit;
|
|
}
|
|
|
|
if (isset($argv[3]) && isset($argv[4]) && isset($argv[5]) && isset($argv[6]) && isset($argv[7]))
|
|
{
|
|
print 'Use specific database ids'."\n";
|
|
$db=getDoliDBInstance('mysqli',$argv[3],$argv[6],$argv[7],$argv[5],$argv[4]);
|
|
}
|
|
|
|
if ($db->type != 'mysql' && $db->type != 'mysqli')
|
|
{
|
|
print "Error: This script works with mysql or mysqli driver only\n";
|
|
exit;
|
|
}
|
|
|
|
$table=$argv[1];
|
|
$module=$argv[2];
|
|
|
|
// Show parameters
|
|
print 'Tablename: '.$table."\n";
|
|
print 'Modulename: '.$module."\n";
|
|
print "Current dir: ".getcwd()."\n";
|
|
print "Database name: ".$db->database_name."\n";
|
|
|
|
|
|
// Define array with list of properties
|
|
$property=array();
|
|
$foundprimary=0;
|
|
$resql=$db->DDLDescTable($table);
|
|
if ($resql)
|
|
{
|
|
$i=0;
|
|
while($obj=$db->fetch_object($resql))
|
|
{
|
|
//var_dump($obj);
|
|
$i++;
|
|
$property[$i]['field']=$obj->Field;
|
|
if ($obj->Key == 'PRI')
|
|
{
|
|
$property[$i]['primary']=1;
|
|
$foundprimary=1;
|
|
}
|
|
else
|
|
{
|
|
$property[$i]['primary']=1;
|
|
}
|
|
$property[$i]['type'] =$obj->Type;
|
|
$property[$i]['null'] =$obj->Null;
|
|
$property[$i]['extra']=$obj->Extra;
|
|
if ($property[$i]['type'] == 'date'
|
|
|| $property[$i]['type'] == 'datetime'
|
|
|| $property[$i]['type'] == 'timestamp')
|
|
{
|
|
$property[$i]['istime']=true;
|
|
}
|
|
else
|
|
{
|
|
$property[$i]['istime']=false;
|
|
}
|
|
if (preg_match('/varchar/i',$property[$i]['type'])
|
|
|| preg_match('/text/i',$property[$i]['type']))
|
|
{
|
|
$property[$i]['ischar']=true;
|
|
}
|
|
else
|
|
{
|
|
$property[$i]['ischar']=false;
|
|
}
|
|
if (preg_match('/int/i',$property[$i]['type']))
|
|
{
|
|
$property[$i]['isint']=true;
|
|
}
|
|
else
|
|
{
|
|
$property[$i]['isint']=false;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "Error: Failed to get description for table '".$table."'.\n";
|
|
return false;
|
|
}
|
|
//var_dump($property);
|
|
|
|
// Define substitute fetch/select parameters
|
|
$varpropselect="\n";
|
|
$cleanparam='';
|
|
$i=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
$i++;
|
|
if ($prop['field'] != 'rowid')
|
|
{
|
|
$varpropselect.="\t\t\$sql .= \" ";
|
|
$varpropselect.="t.".$prop['field'];
|
|
if ($i < count($property)) $varpropselect.=",";
|
|
$varpropselect.="\";";
|
|
$varpropselect.="\n";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------
|
|
// Build skeleton_class.class.php
|
|
//--------------------------------
|
|
|
|
// Define working variables
|
|
$table=strtolower($table);
|
|
$tablenoprefix=preg_replace('/'.preg_quote(MAIN_DB_PREFIX,'/').'/i','',$table);
|
|
$classname=preg_replace('/_/','',ucfirst($tablenoprefix));
|
|
$classmin=preg_replace('/_/','',strtolower($classname));
|
|
|
|
|
|
// Read skeleton_class.class.php file
|
|
$skeletonfile=$path.'skeleton_class.class.php';
|
|
$sourcecontent=file_get_contents($skeletonfile);
|
|
if (! $sourcecontent)
|
|
{
|
|
print "\n";
|
|
print "Error: Failed to read skeleton sample '".$skeletonfile."'\n";
|
|
print "Try to run script from skeletons directory.\n";
|
|
exit;
|
|
}
|
|
|
|
// Define output variables
|
|
$outfile='out.'.$classmin.'.class.php';
|
|
$targetcontent=$sourcecontent;
|
|
|
|
// Substitute module name
|
|
$targetcontent=preg_replace('/dev\/skeletons/', $module, $targetcontent);
|
|
$targetcontent=preg_replace('/mymodule othermodule1 othermodule2/', $module, $targetcontent);
|
|
$targetcontent=preg_replace('/mymodule/', $module, $targetcontent);
|
|
|
|
// Substitute class name
|
|
$targetcontent=preg_replace('/skeleton_class\.class\.php/', $classmin.'.class.php', $targetcontent);
|
|
$targetcontent=preg_replace('/\$element = \'skeleton\'/', '\$element = \''.$classmin.'\'', $targetcontent);
|
|
$targetcontent=preg_replace('/\$table_element = \'skeleton\'/', '\$table_element = \''.$tablenoprefix.'\'', $targetcontent);
|
|
$targetcontent=preg_replace('/Skeleton_Class/', $classname, $targetcontent);
|
|
$targetcontent=preg_replace('/skeletons/', $classmin, $targetcontent);
|
|
$targetcontent=preg_replace('/skeleton/', $classmin, $targetcontent);
|
|
|
|
// Substitute comments
|
|
$targetcontent=preg_replace('/This file is an example to create a new class file/', 'Put here description of this class', $targetcontent);
|
|
$targetcontent=preg_replace('/\s*\/\/\.\.\./', '', $targetcontent);
|
|
$targetcontent=preg_replace('/Put here some comments/','Initialy built by build_class_from_table on '.strftime('%Y-%m-%d %H:%M',mktime()), $targetcontent);
|
|
|
|
// Substitute table name
|
|
$targetcontent=preg_replace('/MAIN_DB_PREFIX."mytable/', 'MAIN_DB_PREFIX."'.$tablenoprefix, $targetcontent);
|
|
|
|
// Substitute declaration parameters
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id')
|
|
{
|
|
$varprop.="\tpublic \$".$prop['field'];
|
|
if ($prop['istime']) $varprop.=" = ''";
|
|
$varprop.=";";
|
|
if ($prop['comment']) $varprop.="\t// ".$prop['extra'];
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote('public $prop1;','/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote('public $prop2;','/').'/', '', $targetcontent);
|
|
|
|
$targetcontent=preg_replace('/\*((\s|\n|\r|\t)*)\@var mixed Sample property 1((\s|\n|\r|\t)*)/', '', $targetcontent);
|
|
$targetcontent=preg_replace('/\*((\s|\n|\r|\t)*)\@var mixed Sample property 2((\s|\n|\r|\t)*)/', '', $targetcontent);
|
|
|
|
// Substitute clean parameters
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="\t\tif (isset(\$this->".$prop['field'].")) {\n\t\t\t \$this->".$prop['field']." = trim(\$this->".$prop['field'].");\n\t\t}";
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/if \(isset\(\$this->prop1\)\) {((\n|\r|\t)*)\$this->prop1 = trim\(\$this->prop1\);((\n|\r|\t)*)}/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/if \(isset\(\$this->prop2\)\) {((\n|\r|\t)*)\$this->prop2 = trim\(\$this->prop2\);((\n|\r|\t)*)}/', '', $targetcontent);
|
|
|
|
|
|
$no_output_field=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] == 'tms') $no_output_field++; // This is a field of type timestamp edited automatically
|
|
if ($prop['extra'] == 'auto_increment') $no_output_field++;
|
|
}
|
|
// Substitute insert into parameters
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
$i=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
$i++;
|
|
$addfield=1;
|
|
if ($prop['field'] == 'tms') $addfield=0; // This is a field of type timestamp edited automatically
|
|
if ($prop['extra'] == 'auto_increment') $addfield=0;
|
|
|
|
if ($addfield)
|
|
{
|
|
$varprop.="\t\t\$sql.= '".$prop['field'];
|
|
if ($i <= count($property)-$no_output_field) $varprop.=",";
|
|
$varprop.="';";
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/\$sql \.= \' field1,\';/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/\$sql \.= \' field2\';/', '', $targetcontent);
|
|
|
|
// Substitute insert values parameters
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
$i=0;
|
|
|
|
//Count nb field to output to manage commat at end SQL instruction
|
|
|
|
|
|
foreach($property as $key => $prop)
|
|
{
|
|
|
|
$addfield=1;
|
|
if ($prop['field'] == 'tms') $addfield=0; // This is a field of type timestamp edited automatically
|
|
if ($prop['extra'] == 'auto_increment') $addfield=0;
|
|
|
|
if ($addfield)
|
|
{
|
|
$i++;
|
|
|
|
$varprop.="\t\t\$sql .= ' ";
|
|
if ($prop['field']=='datec')
|
|
{
|
|
$varprop.='\'."\'".$this->db->idate(dol_now())."\'"';
|
|
}
|
|
elseif ($prop['istime'])
|
|
{
|
|
$varprop.='\'.(! isset($this->'.$prop['field'].') || dol_strlen($this->'.$prop['field'].')==0?\'NULL\':"\'".$this->db->idate(';
|
|
$varprop.="\$this->".$prop['field'];
|
|
$varprop.=").\"'\")";
|
|
}
|
|
elseif ($prop['ischar'])
|
|
{
|
|
$varprop.="'.(! isset(\$this->".$prop['field'].")?'NULL':\"'\".";
|
|
$varprop.="\$this->db->escape(\$this->".$prop['field'].")";
|
|
$varprop.=".\"'\")";
|
|
}
|
|
elseif ($prop['field']=='fk_user_mod' || $prop['field']=='fk_user_author')
|
|
{
|
|
$varprop.="'.\$user->id";
|
|
}
|
|
elseif ($prop['isint'])
|
|
{
|
|
$varprop.='\'.(! isset($this->'.$prop['field'].')?\'NULL\':';
|
|
$varprop.="\$this->".$prop['field'];
|
|
$varprop.=')';
|
|
}
|
|
else
|
|
{
|
|
$varprop.='\'.(! isset($this->'.$prop['field'].')?\'NULL\':"\'".';
|
|
$varprop.="\$this->".$prop['field'];
|
|
$varprop.='."\'")';
|
|
}
|
|
|
|
if ($i < (count($property)-$no_output_field)) $varprop.=".','";
|
|
$varprop.=';';
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
|
|
$patern1='/\$sql \.= \' (.*)\' \. \$this->prop1 \. \'(.*),\';/';
|
|
$patern2='/\$sql \.= \' (.*)\' \. \$this->prop2 \. \'(.*)\';/';
|
|
$targetcontent=preg_replace($patern1, $varprop, $targetcontent);
|
|
$targetcontent=preg_replace($patern2, '', $targetcontent);
|
|
|
|
// Substitute update values parameters
|
|
|
|
//Count nb field to output to manage commat at end SQL instruction
|
|
$no_output_field=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['extra'] == 'auto_increment') $no_output_field++;
|
|
}
|
|
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
$i=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
|
|
$addfield=1;
|
|
if ($prop['extra'] == 'auto_increment') $addfield=0;
|
|
|
|
if ($addfield)
|
|
{
|
|
$i++;
|
|
|
|
$varprop.="\t\t\$sql .= ' ";
|
|
$varprop.=$prop['field'].' = ';
|
|
if ($prop['field']=='tms') {
|
|
$varprop.='\'.(dol_strlen($this->'.$prop['field'].') != 0 ? "\'".$this->db->idate(';
|
|
$varprop.='$this->'.$prop['field'];
|
|
$varprop.=')."\'" : "\'".$this->db->idate(dol_now())."\'")';
|
|
}
|
|
elseif ($prop['istime'])
|
|
{
|
|
$varprop.='\'.(! isset($this->'.$prop['field'].') || dol_strlen($this->'.$prop['field'].') != 0 ? "\'".$this->db->idate(';
|
|
$varprop.='$this->'.$prop['field'];
|
|
$varprop.=')."\'" : \'null\')';
|
|
}
|
|
|
|
elseif ($prop['field']=='fk_user_mod') {
|
|
$varprop.="'.\$user->id";
|
|
}
|
|
else
|
|
{
|
|
$varprop.="'.";
|
|
if ($prop['ischar']) $varprop.='(isset($this->'.$prop['field'].')?"\'".$this->db->escape($this->'.$prop['field'].')."\'":"null")';
|
|
elseif ($prop['isint']) $varprop.='(isset($this->'.$prop['field'].')?$this->'.$prop['field'].':"null")';
|
|
else $varprop.='(isset($this->'.$prop['field'].')?$this->'.$prop['field'].':"null")';
|
|
}
|
|
|
|
if ($i < (count($property)-$no_output_field)) $varprop.=".','";
|
|
$varprop.=';';
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/\$sql \.= " field1=".\(isset\(\$this->field1\)\?"\'".\$this->db->escape\(\$this->field1\)."\'":"null"\).",";/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/\$sql \.= " field2=".\(isset\(\$this->field2\)\?"\'".\$this->db->escape\(\$this->field2\)."\'":"null"\)."";/', '', $targetcontent);
|
|
|
|
// Substitute fetch/select parameters
|
|
$targetcontent=preg_replace('/\$sql \.= \' t\.field1,\';/', $varpropselect, $targetcontent);
|
|
$targetcontent=preg_replace('/\$sql \.= \' t\.field2\';/', '', $targetcontent);
|
|
|
|
// Substitute select set parameters
|
|
$varprop="\n";
|
|
$varpropline="\n";
|
|
$cleanparam='';
|
|
$i=0;
|
|
foreach($property as $key => $prop)
|
|
{
|
|
$i++;
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id')
|
|
{
|
|
$varprop.="\t\t\t\t\$this->".$prop['field']." = ";
|
|
if ($prop['istime']) $varprop.='$this->db->jdate(';
|
|
$varprop.='$obj->'.$prop['field'];
|
|
if ($prop['istime']) $varprop.=')';
|
|
$varprop.=";";
|
|
$varprop.="\n";
|
|
|
|
$varpropline.="\t\t\t\t\$line->".$prop['field']." = ";
|
|
if ($prop['istime']) $varpropline.='$this->db->jdate(';
|
|
$varpropline.='$obj->'.$prop['field'];
|
|
if ($prop['istime']) $varpropline.=')';
|
|
$varpropline.=";";
|
|
$varpropline.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/\$this->prop1 = \$obj->field1;/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/\$this->prop2 = \$obj->field2;/', '', $targetcontent);
|
|
|
|
//Substirute fetchAll
|
|
$targetcontent=preg_replace('/\$line->prop1 = \$obj->field1;/', $varpropline, $targetcontent);
|
|
$targetcontent=preg_replace('/\$line->prop2 = \$obj->field2;/', '', $targetcontent);
|
|
|
|
|
|
// Substitute initasspecimen parameters
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id')
|
|
{
|
|
$varprop.="\t\t\$this->".$prop['field']." = '';";
|
|
$varprop.="\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/\$this->prop1 = \'prop1\';/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/\$this->prop2 = \'prop2\';/', '', $targetcontent);
|
|
|
|
// Build file
|
|
$fp=fopen($outfile,"w");
|
|
if ($fp)
|
|
{
|
|
fputs($fp, $targetcontent);
|
|
fclose($fp);
|
|
print "\n";
|
|
print "File '".$outfile."' has been built in current directory.\n";
|
|
}
|
|
else $error++;
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
// Build skeleton_script.php, skeleton_list.php and skeleton_card.php
|
|
//--------------------------------------------------------------------
|
|
|
|
$skeletonfiles=array(
|
|
$path.'skeleton_script.php' => 'out.'.$classmin.'_script.php',
|
|
$path.'skeleton_list.php' => 'out.'.$classmin.'_list.php',
|
|
$path.'skeleton_card.php' => 'out.'.$classmin.'_card.php'
|
|
);
|
|
|
|
foreach ($skeletonfiles as $skeletonfile => $outfile)
|
|
{
|
|
$sourcecontent=file_get_contents($skeletonfile);
|
|
if (! $sourcecontent)
|
|
{
|
|
print "\n";
|
|
print "Error: Failed to read skeleton sample '".$skeletonfile."'\n";
|
|
print "Try to run script from skeletons directory.\n";
|
|
exit;
|
|
}
|
|
|
|
// Define output variables
|
|
$targetcontent=$sourcecontent;
|
|
|
|
// Substitute module name
|
|
$targetcontent=preg_replace('/dev\/skeletons/', $module, $targetcontent);
|
|
$targetcontent=preg_replace('/mymodule othermodule1 othermodule2/', $module, $targetcontent);
|
|
$targetcontent=preg_replace('/mymodule/', $module, $targetcontent);
|
|
|
|
// Substitute class name
|
|
$targetcontent=preg_replace('/skeleton_class\.class\.php/', $classmin.'.class.php', $targetcontent);
|
|
$targetcontent=preg_replace('/skeleton_script\.php/', $classmin.'_script.php', $targetcontent);
|
|
$targetcontent=preg_replace('/\$element = \'skeleton\'/', '\$element=\''.$classmin.'\'', $targetcontent);
|
|
$targetcontent=preg_replace('/\$table_element = \'skeleton\'/', '\$table_element=\''.$classmin.'\'', $targetcontent);
|
|
$targetcontent=preg_replace('/Skeleton_Class/', $classname, $targetcontent);
|
|
$targetcontent=preg_replace('/skeletons/', $classmin, $targetcontent);
|
|
$targetcontent=preg_replace('/skeleton/', $classmin, $targetcontent);
|
|
|
|
// Substitute comments
|
|
$targetcontent=preg_replace('/This file is an example to create a new class file/', 'Put here description of this class', $targetcontent);
|
|
$targetcontent=preg_replace('/\s*\/\/\.\.\./', '', $targetcontent);
|
|
$targetcontent=preg_replace('/Put here some comments/','Initialy built by build_class_from_table on '.strftime('%Y-%m-%d %H:%M',mktime()), $targetcontent);
|
|
|
|
// Substitute table name
|
|
$targetcontent=preg_replace('/MAIN_DB_PREFIX."mytable/', 'MAIN_DB_PREFIX."'.$tablenoprefix, $targetcontent);
|
|
|
|
// Substitute GETPOST search_fieldx
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
if ($prop['isint']) $varprop.='$search_'.$prop['field']."=GETPOST('search_".$prop['field']."','int');\n";
|
|
else $varprop.='$search_'.$prop['field']."=GETPOST('search_".$prop['field']."','alpha');\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote('$search_field1=GETPOST("search_field1");','/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote('$search_field2=GETPOST("search_field2");','/').'/', '', $targetcontent);
|
|
|
|
// Substitute GETPOST fieldx
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
if ($prop['isint']) $varprop.="\t\$object->".$prop['field']."=GETPOST('".$prop['field']."','int');\n";
|
|
else $varprop.="\t\$object->".$prop['field']."=GETPOST('".$prop['field']."','alpha');\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote('$object->prop1=GETPOST("field1");','/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote('$object->prop2=GETPOST("field2");','/').'/', '', $targetcontent);
|
|
|
|
// Substitute reset search_field = '';
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.='$search_'.$prop['field']."='';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote('$search_field1=\'\';','/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote('$search_field2=\'\';','/').'/', '', $targetcontent);
|
|
|
|
// Substitute fetch/select parameters
|
|
$targetcontent=preg_replace('/\$sql\s*\.= " t\.field1,";/', $varpropselect, $targetcontent);
|
|
$targetcontent=preg_replace('/\$sql\s*\.= " t\.field2";/', '', $targetcontent);
|
|
|
|
// Substitute where for search
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.='if ($search_'.$prop['field'].') $sql.= natural_search("'.$prop['field'].'",$search_'.$prop['field'].');'."\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote('if ($search_field1) $sql.= natural_search("field1",$search_field1);','/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote('if ($search_field2) $sql.= natural_search("field2",$search_field2);','/').'/', '', $targetcontent);
|
|
|
|
// substitute $params.=
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="if (\$search_".$prop['field']." != '') \$params.= '&search_".$prop['field']."='.urlencode(\$search_".$prop['field'].");\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote("if (\$search_field1 != '') \$params.= '&search_field1='.urlencode(\$search_field1);",'/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote("if (\$search_field2 != '') \$params.= '&search_field2='.urlencode(\$search_field2);",'/').'/', '', $targetcontent);
|
|
|
|
// Substitute arrayfields
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="'t.".$prop['field']."'=>array('label'=>\$langs->trans(\"Field".$prop['field']."\"), 'checked'=>1),\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote("'t.field1'=>array('label'=>\$langs->trans(\"Field1\"), 'checked'=>1),",'/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote("'t.field2'=>array('label'=>\$langs->trans(\"Field2\"), 'checked'=>1),",'/').'/', '', $targetcontent);
|
|
|
|
// Substitute print_liste_field_titre
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="if (! empty(\$arrayfields['t.".$prop['field']."']['checked'])) print_liste_field_titre(\$arrayfields['t.".$prop['field']."']['label'],\$_SERVER['PHP_SELF'],'t.".$prop['field']."','',\$param,'',\$sortfield,\$sortorder);\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field1']['checked'])) print_liste_field_titre(\$langs->trans('field1'),\$_SERVER['PHP_SELF'],'t.field1','',\$param,'',\$sortfield,\$sortorder);",'/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field2']['checked'])) print_liste_field_titre(\$langs->trans('field2'),\$_SERVER['PHP_SELF'],'t.field2','',\$param,'',\$sortfield,\$sortorder);",'/').'/', '', $targetcontent);
|
|
|
|
// Substitute fields title search
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="if (! empty(\$arrayfields['t.".$prop['field']."']['checked'])) print '<td class=\"liste_titre\"><input type=\"text\" class=\"flat\" name=\"search_".$prop['field']."\" value=\"'.\$search_".$prop['field'].".'\" size=\"10\"></td>';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field1']['checked'])) print '<td class=\"liste_titre\"><input type=\"text\" class=\"flat\" name=\"search_field1\" value=\"'.\$search_field1.'\" size=\"10\"></td>';",'/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field2']['checked'])) print '<td class=\"liste_titre\"><input type=\"text\" class=\"flat\" name=\"search_field2\" value=\"'.\$search_field2.'\" size=\"10\"></td>';",'/').'/', '', $targetcontent);
|
|
|
|
// Substitute where for <td>.fieldx.</td>
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="if (! empty(\$arrayfields['t.".$prop['field']."']['checked'])) print '<td>'.\$obj->".$prop['field'].".'</td>';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field1']['checked'])) print '<td>'.\$obj->field1.'</td>';",'/').'/', $varprop, $targetcontent);
|
|
$targetcontent=preg_replace('/'.preg_quote("if (! empty(\$arrayfields['t.field2']['checked'])) print '<td>'.\$obj->field2.'</td>';",'/').'/', '', $targetcontent);
|
|
|
|
// LIST_OF_TD_LABEL_FIELDS_CREATE - List of td for card view
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="print '<tr><td class=\"fieldrequired\">'.\$langs->trans(\"Field".$prop['field']."\").'</td><td><input class=\"flat\" type=\"text\" name=\"".$prop['field']."\" value=\"'.GETPOST('".$prop['field']."').'\"></td></tr>';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/LIST_OF_TD_LABEL_FIELDS_CREATE/', $varprop, $targetcontent);
|
|
|
|
// LIST_OF_TD_LABEL_FIELDS_EDIT - List of td for card view
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="print '<tr><td class=\"fieldrequired\">'.\$langs->trans(\"Field".$prop['field']."\").'</td><td><input class=\"flat\" type=\"text\" name=\"".$prop['field']."\" value=\"'.\$object->".$prop['field'].".'\"></td></tr>';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/LIST_OF_TD_LABEL_FIELDS_EDIT/', $varprop, $targetcontent);
|
|
|
|
// LIST_OF_TD_LABEL_FIELDS_VIEW - List of td for card view
|
|
$varprop="\n";
|
|
$cleanparam='';
|
|
foreach($property as $key => $prop)
|
|
{
|
|
if ($prop['field'] != 'rowid' && $prop['field'] != 'id' && ! $prop['istime'])
|
|
{
|
|
$varprop.="print '<tr><td class=\"fieldrequired\">'.\$langs->trans(\"Field".$prop['field']."\").'</td><td>\$object->".$prop['field']."</td></tr>';\n";
|
|
}
|
|
}
|
|
$targetcontent=preg_replace('/LIST_OF_TD_LABEL_FIELDS_VIEW/', $varprop, $targetcontent);
|
|
|
|
|
|
// Build file
|
|
$fp=fopen($outfile,"w");
|
|
if ($fp)
|
|
{
|
|
fputs($fp, $targetcontent);
|
|
fclose($fp);
|
|
print "File '".$outfile."' has been built in current directory.\n";
|
|
}
|
|
else $error++;
|
|
}
|
|
|
|
|
|
// -------------------- END OF BUILD_CLASS_FROM_TABLE SCRIPT --------------------
|
|
|
|
print "You can now rename generated files by removing the 'out.' prefix in their name and store them into directory /yourmodule/class (for .class.php file) or /yourmodule.\n";
|
|
return $error;
|