Class UpgradeShell

A shell class to help developers upgrade applications to CakePHP 2.0

AppShell
Extended by UpgradeShell
Package: Cake\Console\Command
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Location: Cake/Console/Command/UpgradeShell.php

Properties summary

Method Summary

  • Updates files based on regular expressions.
  • _findFiles() protected
    Searches the paths and finds files based on extension.
  • _moveAppClasses() protected
    Move the AppController, and AppModel classes.
  • _movePhpFiles() protected
    Move application php files to where they now should be
  • _moveViewFiles() protected
    Move application views files to where they now should be
  • _updateFile() protected
    Update a single file.
  • all() public
    Run all upgrade steps one at a time
  • basics() public
    Upgrade the removed basics functions.
  • components() public
    Update components.
  • configure() public
    Update Configure::read() calls with no params.
  • constants() public
    constants
  • Update controller redirects.
  • exceptions() public

    Replace cakeError with built-in exceptions. NOTE: this ignores calls where you've passed your own secondary parameters to cakeError().

  • Gets the option parser instance and configures it.
  • helpers() public
    Update helpers.
  • i18n() public
    Update i18n.
  • locations() public
    Move files and folders to their new homes
  • request() public
    Update the properties moved to CakeRequest.
  • startup() public
    Shell startup, prints info message about dry run.
  • tests() public
    Update tests.

Method Detail

_filesRegexpUpdate()source protected

_filesRegexpUpdate( array $patterns )

Updates files based on regular expressions.

Parameters

array $patterns
Array of search and replacement patterns.

_findFiles()source protected

_findFiles( string $extensions '' )

Searches the paths and finds files based on extension.

Parameters

string $extensions optional ''
The extensions to include. Defaults to none.

_moveAppClasses()source protected

_moveAppClasses( )

Move the AppController, and AppModel classes.

_movePhpFiles()source protected

_movePhpFiles( string $path , array $options )

Move application php files to where they now should be

Find all php files in the folder (honoring recursive) and determine where CakePHP expects the file to be If the file is not exactly where CakePHP expects it - move it.

Parameters

string $path
The path to move files in.
array $options
array(recursive, checkFolder)

_moveViewFiles()source protected

_moveViewFiles( )

Move application views files to where they now should be

Find all view files in the folder and determine where cake expects the file to be

_updateFile()source protected

_updateFile( string $file , array $patterns )

Update a single file.

Parameters

string $file
The file to update
array $patterns
The replacement patterns to run.

all()source public

all( )

Run all upgrade steps one at a time

basics()source public

basics( )

Upgrade the removed basics functions.

  • a() -> array()
  • e(*) -> echo *
  • ife(*, *, ) -> !empty() ? * : *
  • a() -> array()
  • r(*, *, ) -> str_replace(, *, *)
  • up() -> strtoupper()
  • low(*, *, ) -> strtolower()
  • getMicrotime() -> microtime(true)

components()source public

components( )

Update components.

  • Make components that extend CakeObject to extend Component.

configure()source public

configure( )

Update Configure::read() calls with no params.

constants()source public

constants( )

constants

controller_redirects()source public

controller_redirects( )

Update controller redirects.

  • Make redirect statements return early.

exceptions()source public

exceptions( )

Replace cakeError with built-in exceptions. NOTE: this ignores calls where you've passed your own secondary parameters to cakeError().

getOptionParser()source public

getOptionParser( )

Gets the option parser instance and configures it.

Returns

ConsoleOptionParser

helpers()source public

helpers( )

Update helpers.

  • Converts helpers usage to new format.

i18n()source public

i18n( )

Update i18n.

  • Removes extra true param.
  • Add the echo to __*() calls that didn't need them before.

locations()source public

locations( )

Move files and folders to their new homes

Moves folders containing files which cannot necessarily be auto-detected (libs and templates) and then looks for all php files except vendors, and moves them to where Cake 2.0 expects to find them.

request()source public

request( )

Update the properties moved to CakeRequest.

startup()source public

startup( )

Shell startup, prints info message about dry run.

tests()source public

tests( )

Update tests.

  • Update tests class names to FooTest rather than FooTestCase.

Properties detail

$_filessource

protected array

Files

array()

$_mapsource

protected array

Map

array(
    'Controller' => 'Controller',
    'Component' => 'Controller/Component',
    'Model' => 'Model',
    'Behavior' => 'Model/Behavior',
    'Datasource' => 'Model/Datasource',
    'Dbo' => 'Model/Datasource/Database',
    'View' => 'View',
    'Helper' => 'View/Helper',
    'Shell' => 'Console/Command',
    'Task' => 'Console/Command/Task',
    'Case' => 'Test/Case',
    'Fixture' => 'Test/Fixture',
    'Error' => 'Lib/Error',
)

$_pathssource

protected array

Paths

array()

© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/2.9/class-UpgradeShell.html