dolibarr 20.0.0
regenerate-pages.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
3/* Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25if (!defined('NOSESSION')) {
26 define('NOSESSION', '1');
27}
28
29$sapi_type = php_sapi_name();
30$script_file = basename(__FILE__);
31$path = __DIR__.'/';
32
33// Test if batch mode
34if (substr($sapi_type, 0, 3) == 'cgi') {
35 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
36 exit(1);
37}
38
39@set_time_limit(0); // No timeout for this script
40define('EVEN_IF_ONLY_LOGIN_ALLOWED', 1); // Set this define to 0 if you want to lock your script when dolibarr setup is "locked to admin user only".
41
42$error = 0;
43
44$mode = empty($argv[1]) ? '' : $argv[1];
45$websiteref = empty($argv[2]) ? '' : $argv[2];
46$max = (!isset($argv[3]) || (empty($argv[3]) && $argv[3] !== '0')) ? '10' : $argv[3];
47
48if (empty($argv[2]) || !in_array($argv[1], array('test', 'confirm')) || empty($websiteref)) {
49 print '***** '.$script_file.' *****'."\n";
50 print "Usage: $script_file (test|confirm) website [nbmaxrecord]\n";
51 print "\n";
52 print "Regenerate all pages of a web site.\n";
53 exit(1);
54}
55
56require $path."../../htdocs/master.inc.php";
57include_once DOL_DOCUMENT_ROOT.'/website/class/website.class.php';
58include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
59include_once DOL_DOCUMENT_ROOT.'/core/lib/website2.lib.php';
60
61$hookmanager->initHooks(array('cli'));
62
63
64/*
65 * Main
66 */
67
68$langs->load('main');
69
70if (!empty($dolibarr_main_db_readonly)) {
71 print "Error: instance in read-onyl mode\n";
72 exit(1);
73}
74
75$website = new Website($db);
76$result = $website->fetch(0, $websiteref);
77if ($result <= 0) {
78 print 'Error, web site '.$websiteref.' not found'."\n";
79 exit(1);
80}
81
82$websitepagestatic = new WebsitePage($db);
83
84$db->begin();
85
86$listofpages = $websitepagestatic->fetchAll($website->id, '', '', $max);
87
88global $dolibarr_main_data_root;
89$pathofwebsite = $dolibarr_main_data_root.'/website/'.$websiteref;
90
91$nbgenerated = 0;
92foreach ($listofpages as $websitepage) {
93 $filealias = $pathofwebsite.'/'.$websitepage->pageurl.'.php';
94 $filetpl = $pathofwebsite.'/page'.$websitepage->id.'.tpl.php';
95 if ($mode == 'confirm') {
96 dolSavePageAlias($filealias, $website, $websitepage);
97 dolSavePageContent($filetpl, $website, $websitepage);
98 }
99 print "Generation of page done - pageid = ".$websitepage->id." - ".$websitepage->pageurl."\n";
100 $nbgenerated++;
101
102 if ($max && $nbgenerated >= $max) {
103 print 'Nb max of record ('.$max.') reached. We stop now.'."\n";
104 break;
105 }
106}
107
108if ($mode == 'confirm') {
109 print $nbgenerated." page(s) generated into ".$pathofwebsite."\n";
110} else {
111 print $nbgenerated." page(s) found but not generated (test mode)\n";
112}
113
114exit($error);
Class Website.
Class Websitepage.
dolSavePageAlias($filealias, $object, $objectpage)
Save an alias page on disk (A page that include the reference page).
dolSavePageContent($filetpl, Website $object, WebsitePage $objectpage, $backupold=0)
Save content of a page on disk (page name is generally ID_of_page.php).