You are here

views_fluidgrid.install in Views Fluid Grid - jQuery Masonry 6

File

views_fluidgrid.install
View source
<?php

// $Id$

/**
 * Implementaton of hook_install
 */
function views_fluidgrid_install() {
  db_query("UPDATE {system} SET weight = 400 WHERE name = 'views_fluidgrid'");
}

/**
 * Implementaton of hook_uninstall
 */
function views_fluidgrid_uninstall() {
  db_query("DELETE FROM {system} WHERE name = 'views_fluidgrid'");
}

Functions

Namesort descending Description
views_fluidgrid_install Implementaton of hook_install
views_fluidgrid_uninstall Implementaton of hook_uninstall