Skip to content

Instantly share code, notes, and snippets.

@MKorostoff
Created January 30, 2014 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MKorostoff/8717032 to your computer and use it in GitHub Desktop.
Save MKorostoff/8717032 to your computer and use it in GitHub Desktop.
diff --git a/docroot/profiles/nbcsports/modules/custom/gfc_dart/gfc_dart.module b/docroot/profiles/nbcsports/modules/custom/gfc_dart/gfc_dart.module
index 370609a..5560d48 100755
--- a/docroot/profiles/nbcsports/modules/custom/gfc_dart/gfc_dart.module
+++ b/docroot/profiles/nbcsports/modules/custom/gfc_dart/gfc_dart.module
@@ -137,6 +137,10 @@ function gfc_dart_get_zone() {
return 'liveextrasplashpage';
break;
+ case 'home_dart_2':
+ return 'home_dart_2';
+ break;
+
case 'home_dart':
return 'home_dart';
break;
@@ -596,6 +600,18 @@ function gfc_dart_dart_key_vals($tag) {
'eval' => FALSE,
);
break;
+ case 'home_dart_2':
+ $key_vals[] = array(
+ 'key' => 'sect',
+ 'val' => 'home_dart_2',
+ 'eval' => FALSE,
+ );
+ $key_vals[] = array(
+ 'key' => '!c',
+ 'val' => 'home_dart_2',
+ 'eval' => FALSE,
+ );
+ break;
case 'news':
if (count($section_page) > 1) {
$sanitize_arg = strtolower(str_replace(' ', '-', $page['page_arguments'][0]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment