You are here

function _content_theme_debugger_block_save in Content Theme 6

1 call to _content_theme_debugger_block_save()
content_theme_debugger_block in content_theme_debugger/content_theme_debugger.module
Implementation of hook_block().

File

content_theme_debugger/content_theme_debugger.module, line 75
This module displays a list of modules which override the system default theme sorted by module's call-up.

Code

function _content_theme_debugger_block_save($delta = '', $edit = array()) {
  if ($delta == 'content_theme_debugger') {
    variable_set('content_theme_debugger_blacklist', $edit['content_theme_debugger_blacklist']);
  }
}