| 1 |
<?php |
<?php |
| 2 |
// $Id: seochecklist.install,v 1.1.2.8 2009/10/28 16:06:55 davereid Exp $ |
// $Id: seochecklist.install,v 1.1.2.9 2009/10/28 23:42:13 davereid Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 110 |
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>', '', '', '', '', 8)"); |
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>', '', '', '', '', 8)"); |
| 111 |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (43, 7, 'Authenticate your site with Bing', '', '', '', '', 9)"); |
db_query("INSERT INTO {seo_checklist} $task_fields VALUES (43, 7, 'Authenticate your site with Bing', '', '', '', '', 9)"); |
| 112 |
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>', '', '', '', '', 10)"); |
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>', '', '', '', '', 10)"); |
| 113 |
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>', '', '', '', '', 11)"); |
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>', '', '', '', '', 11)"); |
| 114 |
|
|
| 115 |
// Social links tasks |
// Social links tasks |
| 116 |
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:')"); |
| 258 |
|
|
| 259 |
return $ret; |
return $ret; |
| 260 |
} |
} |
| 261 |
|
|
| 262 |
|
/** |
| 263 |
|
* Fixed the link to Google Local Business Center. |
| 264 |
|
*/ |
| 265 |
|
function seochecklist_update_5203() { |
| 266 |
|
$ret = array(); |
| 267 |
|
$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"); |
| 268 |
|
return $ret; |
| 269 |
|
} |