Overview

Packages

  • CONTENIDO
  • Core
    • Authentication
    • Backend
    • Cache
    • CEC
    • Chain
    • ContentType
    • Database
    • Debug
    • Exception
    • Frontend
      • Search
      • URI
      • Util
    • GenericDB
      • Model
    • GUI
      • HTML
    • I18N
    • LayoutHandler
    • Log
    • Security
    • Session
    • Util
    • Validation
    • Versioning
    • XML
  • Module
    • ContentRssCreator
    • ContentSitemapHtml
    • ContentSitemapXml
    • ContentUserForum
    • NavigationTop
    • ScriptCookieDirective
  • mpAutoloaderClassMap
  • None
  • Plugin
    • ContentAllocation
    • CronjobOverview
    • FormAssistant
    • FrontendLogic
    • FrontendUsers
    • Linkchecker
    • ModRewrite
    • Newsletter
    • Repository
      • FrontendNavigation
      • KeywordDensity
    • SearchSolr
    • SmartyWrapper
    • UrlShortener
    • UserForum
    • Workflow
  • PluginManager
  • Setup
    • Form
    • GUI
    • Helper
      • Environment
      • Filesystem
      • MySQL
      • PHP
    • UpgradeJob

Classes

  • cUpgradeJob_0001
  • cUpgradeJob_0002
  • cUpgradeJob_0003
  • cUpgradeJob_0004
  • cUpgradeJob_0005
  • cUpgradeJob_0006
  • cUpgradeJob_0007
  • cUpgradeJob_0008
  • cUpgradeJob_0009
  • cUpgradeJob_0010
  • cUpgradeJob_0011
  • cUpgradeJob_0012
  • cUpgradeJob_0013
  • cUpgradeJob_0014
  • cUpgradeJob_0015
  • cUpgradeJob_0016
  • cUpgradeJob_0017
  • cUpgradeJobAbstract
  • cUpgradeJobMain
  • Overview
  • Package
  • Class
  • Tree
  • Deprecated
  • Todo
 1: <?php
 2: /**
 3:  * This file contains the upgrade job 6.
 4:  *
 5:  * @package    Setup
 6:  * @subpackage UpgradeJob
 7:  * @author     Murat Purc <murat@purc>
 8:  * @copyright  four for business AG <www.4fb.de>
 9:  * @license    http://www.contenido.org/license/LIZENZ.txt
10:  * @link       http://www.4fb.de
11:  * @link       http://www.contenido.org
12:  */
13: 
14: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
15: 
16: /**
17:  * Upgrade job 6.
18:  * Runs the upgrade job to move files/from old client folders to new client's data folders
19:  *
20:  * @package Setup
21:  * @subpackage UpgradeJob
22:  */
23: class cUpgradeJob_0006 extends cUpgradeJobAbstract {
24: 
25:     public $maxVersion = "4.9.0-beta1";
26: 
27:     const MODE = 0777;
28: 
29:     public function _execute() {
30: 
31:         global $cfg, $cfgClient;
32: 
33:         include_once($cfg['path']['contenido'] . 'includes/functions.file.php');
34: 
35:         if ($this->_setupType == 'upgrade') {
36: 
37:             // List of source and destination folder or files based on clients frontend dir.
38:             $clientCopyList = array(
39:                 'layouts/' => 'data/layouts/',
40:                 'logs/' => 'data/logs/',
41:                 'version/' => 'data/version/',
42:                 'data/config/config.php' => 'data/config/' . CON_ENVIRONMENT . '/config.php',
43:                 'data/config/config.local.php' => 'data/config/' . CON_ENVIRONMENT . '/config.local.php',
44:                 'data/config/config.after.php' => 'data/config/' . CON_ENVIRONMENT . '/config.after.php',
45:                 'config.php' => 'data/config/' . CON_ENVIRONMENT . '/config.php',
46:                 'config.local.php' => 'data/config/' . CON_ENVIRONMENT . '/config.local.php',
47:                 'config.after.php' => 'data/config/' . CON_ENVIRONMENT . '/config.after.php'
48:             );
49: 
50:             // Load client configuration
51:             setupInitializeCfgClient();
52: 
53:             $allClients = $this->_getAllClients();
54: 
55:             // Loop thru al clients and copy old data folder to new data folder
56:             foreach ($allClients as $idclient => $oClient) {
57:                 // check if config directory exists
58:                 $configDir = $cfgClient[$idclient]['path']['frontend'] . 'data/config/' . CON_ENVIRONMENT;
59:                 if (!is_dir($configDir)) {
60:                     @mkdir($configDir, self::MODE, true);
61:                 }
62: 
63:                 foreach ($clientCopyList as $src => $dst) {
64:                     $source = $cfgClient[$idclient]['path']['frontend'] . $src;
65:                     $destination = $cfgClient[$idclient]['path']['frontend'] . $dst;
66:                     if (is_dir($source)) {
67:                         if (!is_dir($destination)) {
68:                             @mkdir($destination, self::MODE, true);
69:                         }
70:                         if (!is_dir($destination)) {
71:                             logSetupFailure("Couldn't create client data directory $destination");
72:                             continue;
73:                         }
74: 
75:                         cDirHandler::recursiveCopy($source, $destination, self::MODE);
76:                     } elseif (cFileHandler::exists($source) && cFileHandler::exists($destination)) {
77:                         if (cFileHandler::move($source, $destination)) {
78:                             cFileHandler::chmod($destination, self::MODE);
79:                         } else {
80:                             logSetupFailure("Couldn't copy client file $source");
81:                         }
82:                     }
83:                 }
84:             }
85:         }
86:     }
87: 
88: }
89: 
CMS CONTENIDO 4.9.11 API documentation generated by ApiGen 2.8.0