function ctools_stylizer_image_processor::set_current_workspace

5 calls to ctools_stylizer_image_processor::set_current_workspace()
ctools_stylizer_image_processor::command_load in includes/stylizer.inc
Create a new workspace a file.
ctools_stylizer_image_processor::command_merge_to in includes/stylizer.inc
ctools_stylizer_image_processor::command_new in includes/stylizer.inc
Create a new workspace.
ctools_stylizer_image_processor::command_new_from in includes/stylizer.inc
Create a new workspace using the properties of an existing workspace.
ctools_stylizer_image_processor::command_workspace in includes/stylizer.inc
Set the current workspace.

File

includes/stylizer.inc, line 278

Class

ctools_stylizer_image_processor

Code

function set_current_workspace($workspace) {
    $this->log("Set current workspace: {$workspace}");
    $this->workspace =& $this->workspaces[$workspace];
    $this->name = $workspace;
}