Seditio Source
Root |
./othercms/ips_4.3.4/applications/core/setup/upg_100017/upgrade.php
<?php
/**
 * @brief        4.0.0 Upgrade Code
 * @author        <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright    (c) Invision Power Services, Inc.
 * @license        https://www.invisioncommunity.com/legal/standards/
 * @package        Invision Community
 * @since        25 Feb 2015
 */

namespace IPS\core\setup\upg_100017;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
   
header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
    exit;
}

/**
 * 4.0.0 RC 4 Upgrade Code
 */
class _Upgrade
{
   
/**
     * Step 1
     * Fix furl definitions while retaining custom ones
     *
     * @return    array    If returns TRUE, upgrader will proceed to next step. If it returns any other value, it will set this as the value of the 'extra' GET parameter and rerun this step (useful for loops)
     */
   
public function step1()
    {
       
/* We want to retain customizations, but ONLY customizations in the "Settings" furl configuration */
       
$furlDefinitions    = json_decode( \IPS\Settings::i()->furl_configuration, TRUE );
       
$defaultConfig        = \IPS\Http\Url\Friendly::furlDefinition( TRUE );
       
$customDefinitions    = array();

        if(
is_array( $furlDefinitions ) AND count( $furlDefinitions ) )
        {
            foreach(
$furlDefinitions as $k => $v )
            {
                if(
$v['friendly'] != $defaultConfig[ $k ]['friendly'] )
                {
                   
$customDefinitions[ $k ] = array(
                       
'friendly'    => $v['friendly'],
                       
'real'        => $v['real'],
                       
'custom'    => true
                   
);
                }
            }
        }

       
$customDefinitions    = count( $customDefinitions ) ? json_encode( $customDefinitions ) : NULL;
        \
IPS\Settings::i()->changeValues( array( 'furl_configuration' => $customDefinitions ) );

        return
TRUE;
    }

   
/**
     * Custom title for this step
     *
     * @return string
     */
   
public function step1CustomTitle()
    {
        return
"Updating FURL definitions";
    }
}