You are here

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

Same name and namespace in other branches
  1. 7 includes/stylizer.inc \ctools_stylizer_image_processor::log()
13 calls to ctools_stylizer_image_processor::log()
ctools_stylizer_image_processor::command_colorize in includes/stylizer.inc
Colorize the current workspace with the given location.
ctools_stylizer_image_processor::command_fill in includes/stylizer.inc
ctools_stylizer_image_processor::command_gradient in includes/stylizer.inc
ctools_stylizer_image_processor::command_hue in includes/stylizer.inc
Colorize the current workspace with the given location.
ctools_stylizer_image_processor::command_load in includes/stylizer.inc
Create a new workspace a file.

... See full list

File

includes/stylizer.inc, line 279
Create customized CSS and images from palettes created by user input.

Class

ctools_stylizer_image_processor

Code

function log($message, $type = 'normal') {
  $this->message_log[] = $message;
  if ($type == 'error') {
    $this->error_log[] = $message;
  }
}