| 1 |
<?php |
<?php |
| 2 |
// $Id: seochecklist.install,v 1.11 2009/10/28 15:56:14 davereid Exp $ |
// $Id: seochecklist.install,v 1.12 2009/10/29 01:51:48 davereid Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 176 |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (42, 7, 'Login to Bing - <a href=\"http://www.bing.com/webmaster/\">http://www.bing.com/webmaster/</a>', '', '', '', '', 17)"); |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (42, 7, 'Login to Bing - <a href=\"http://www.bing.com/webmaster/\">http://www.bing.com/webmaster/</a>', '', '', '', '', 17)"); |
| 177 |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (43, 7, 'Authenticate your site with Bing', '', '', '', '', 19)"); |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (43, 7, 'Authenticate your site with Bing', '', '', '', '', 19)"); |
| 178 |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (28, 7, 'Submit your XML Sitemap to Bing - <a href=\"http://www.bing.com/webmaster/WebmasterAddSitesPage.aspx\">http://webmaster.live.com/webmaster/WebmasterAddSitesPage.aspx</a>', '', '', '', '', 21)"); |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (28, 7, 'Submit your XML Sitemap to Bing - <a href=\"http://www.bing.com/webmaster/WebmasterAddSitesPage.aspx\">http://webmaster.live.com/webmaster/WebmasterAddSitesPage.aspx</a>', '', '', '', '', 21)"); |
| 179 |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (29, 7, 'If appropriate, submit your company to Google Local - <a href=\"https://www.google.com/webmasters/sitemaps/\">https://www.google.com/local/add/login</a>', '', '', '', '', 23)"); |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (29, 7, 'If appropriate, submit your company to Google Local Business Center - <a href=\"https://www.google.com/local/add/login\">https://www.google.com/local/add/login</a>', '', '', '', '', 23)"); |
| 180 |
|
|
| 181 |
// Social links tasks |
// Social links tasks |
| 182 |
db_query("INSERT INTO {seo_group} VALUES (8, 'Social Tracking', 'Using Social news sites, blogs, etc? Consider these:')"); |
db_query("INSERT INTO {seo_group} VALUES (8, 'Social Tracking', 'Using Social news sites, blogs, etc? Consider these:')"); |
| 297 |
$ret[] = update_sql("UPDATE {seo_checklist} SET module = LOWER(module)"); |
$ret[] = update_sql("UPDATE {seo_checklist} SET module = LOWER(module)"); |
| 298 |
return $ret; |
return $ret; |
| 299 |
} |
} |
| 300 |
|
|
| 301 |
|
/** |
| 302 |
|
* Fixed the link to Google Local Business Center. |
| 303 |
|
*/ |
| 304 |
|
function seochecklist_update_6206() { |
| 305 |
|
$ret = array(); |
| 306 |
|
$ret[] = update_sql("UPDATE {seo_checklist} SET name = 'If appropriate, submit your company to Google Local Business Center - <a href=\"https://www.google.com/local/add/login\">https://www.google.com/local/add/login</a>' WHERE id = 29"); |
| 307 |
|
return $ret; |
| 308 |
|
} |