Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
<?php
/*
* Base class which is used by all modules to perform their (un)install function
*/
class Camp_Install {
function addMenu ( $menu_definition, $parent_menu = null ) {
}
function deleteMenu ( $menu_definition ) {
}
function addPermission ( $permissions ) {
}
function deletePermission ( $permissions ) {
}
function makeStorage ( $path ) {
}
function doSQL ( $sql ) {
}
} // class Camp_Install
?>