Mercurial > defr > drupal > ad
view report/ad_report.install @ 2:e5584a19768b ad
maj module ad
author | sly |
---|---|
date | Wed, 15 Apr 2009 07:58:32 +0000 |
parents | 948362c2a207 |
children |
line wrap: on
line source
<?php // $Id: ad_report.install,v 1.1.4.2 2009/02/23 22:39:05 jeremy Exp $ /** * @file * Ad Report database functions. * * Copyright (c) 2008-2009 * Jeremy Andrews <jeremy@tag1consulting.com>. */ /** * Flush the menu cache to register the new ad_report admin menu. */ function ad_report_update_5001() { $ret = array(); switch ($GLOBALS['db_type']) { case 'mysql': case 'mysqli': default: $ret[] = update_sql('DELETE FROM {cache_menu}'); } return $ret; }