You are here

adsense_injector.install in Content Injector (formerly AdSense Injector) 6.2

The install and update code for the adsense injector module.

File

adsense_injector.install
View source
<?php

/**
 * @file
 * The install and update code for the adsense injector module.
 *
 * @ingroup adsense_injector
 */
function adsense_injector_install() {
  db_query("UPDATE {system} SET weight = 10 WHERE name = 'adsense_injector'");
}
function adsense_injector_update_5000() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'adsense_injector'");
  return $ret;
}
function adsense_injector_update_6000() {

  // This is just a fork of 5000.
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'adsense_injector'");
  return $ret;
}

Functions

Namesort descending Description
adsense_injector_install @file The install and update code for the adsense injector module.
adsense_injector_update_5000
adsense_injector_update_6000