|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/afglcweb/ny/sites/all/modules/token/ |
Upload File : |
<?php
// $Id: token.install,v 1.2.2.1 2008/06/28 15:10:22 greggles Exp $
/**
* @file
* The install and update code for the token module.
*
* @ingroup token
*/
function token_install() {
db_query("UPDATE {system} SET weight = 10 WHERE name = 'token'");
}
function token_update_1() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'token'");
return $ret;
}