function iss_schema_alter in Image Style Selector 7.2
Implements hook_schema_alter().
1 call to iss_schema_alter()
- iss_install in ./
iss.install - Implements hook_install().
File
- ./
iss.install, line 59 - Install file for the Image Style Selector field.
Code
function iss_schema_alter(&$schema) {
$schema['image_styles']['fields']['iss_enabled'] = array(
'description' => 'Boolean telling if image style is ISS enabled.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
);
}