function iss_install in Image Style Selector 7.2
Implements hook_install().
File
- ./
iss.install, line 71 - Install file for the Image Style Selector field.
Code
function iss_install() {
$schema = array();
iss_schema_alter($schema);
// Altering the {image_styles} table.
db_add_field('image_styles', 'iss_enabled', $schema['image_styles']['fields']['iss_enabled']);
}