You are here

function ctools_stylizer_image_processor::set_current_workspace in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/stylizer.inc \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 286
Create customized CSS and images from palettes created by user input.

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;
}