adsense_injector.install in Content Injector (formerly AdSense Injector) 6.2
Same filename and directory in other branches
The install and update code for the adsense injector module.
File
adsense_injector.installView 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
Name![]() |
Description |
---|---|
adsense_injector_install | @file The install and update code for the adsense injector module. |
adsense_injector_update_5000 | |
adsense_injector_update_6000 |