You are here

function _block_class_tablename in Block Class Styles 7.2

Return the name of the table to use based on module version

Return value

string The name of the table.

Related topics

File

./block_class_styles.module, line 274
Base module file for block_class_styles

Code

function _block_class_tablename() {
  return db_field_exists('block', 'css_class') ? 'block' : 'block_class';
}