/[drupal]/contributions/modules/seo_checklist/seochecklist.install
ViewVC logotype

Diff of /contributions/modules/seo_checklist/seochecklist.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.12, Thu Oct 29 01:51:48 2009 UTC revision 1.13, Tue Nov 3 22:52:05 2009 UTC
# Line 1  Line 1 
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
# Line 176  function seochecklist_install() { Line 176  function seochecklist_install() {
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:')");
# Line 297  function seochecklist_update_6205() { Line 297  function seochecklist_update_6205() {
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    }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.2