jscrollpane.install in JScrollPane 6.2
Install, update, and uninstall functions for the jScrollPane module.
File
jscrollpane.installView source
<?php
/**
* @file
* Install, update, and uninstall functions for the jScrollPane module.
*/
/**
* Implementation of hook_install().
*/
function jscrollpane_install() {
variable_set('jscrollpane_class', '.scroll-pane');
}
/**
* Implementation of hook_uninstall().
*/
function jscrollpane_uninstall() {
variable_del('jscrollpane_class');
}
Functions
Name![]() |
Description |
---|---|
jscrollpane_install | Implementation of hook_install(). |
jscrollpane_uninstall | Implementation of hook_uninstall(). |