Skip to content

Instantly share code, notes, and snippets.

@sanderpotjer
Created June 11, 2012 09:47
Show Gist options
  • Save sanderpotjer/2909344 to your computer and use it in GitHub Desktop.
Save sanderpotjer/2909344 to your computer and use it in GitHub Desktop.
Adding French faculty videos
if($country=='de') {
$speakers = array(
'JIM_CATHCART' => array('topics' => array('06B','12A'), 'video' => 'cathcart_de'),
'LISA_FORD' => array('topics' => array('01A','05A','09A'), 'video' => 'ford_de'),
'AMANDA_GORE' => array('topics' => array('02B','08B'), 'video' => 'gore_de'),
'JIM_HENNIG' => array('topics' => array('03A','04A','08A','11A'), 'video' => 'hennig_de'),
'JOHN_HERSEY' => array('topics' => array('01B','05B','10B'), 'video' => 'hersey_de'),
'TERRY_PAULSON' => array('topics' => array('03B','06A','09B','12B'), 'video' => 'paulson_de'),
'NIDO_QUBEIN' => array('topics' => array('02A','10A'), 'video' => 'qubein_de'),
'MARCIA_STEELE' => array('topics' => array('07A'), 'video' => 'steele_de'),
'GEORGE_WALTHER' => array('topics' => array('04B','07B','11B'), 'video' => 'walther_de')
);
} elseif($language=='es-MX') {
$speakers = array(
'JIM_CATHCART' => array('topics' => array('06B'), 'video' => 'cathcart_es'),
'LISA_FORD' => array('topics' => array('01A','05A','09A'), 'video' => 'ford'),
'AMANDA_GORE' => array('topics' => array('02B','08B'), 'video' => 'gore_es'),
'JIM_HENNIG' => array('topics' => array('03A','11A'), 'video' => 'hennig'),
'JOHN_HERSEY' => array('topics' => array('01B','05B','10B'), 'video' => 'hersey_es'),
'BOB_JOHNSON' => array('topics' => array('04A','08A','12A'), 'video' => 'johnson_es'),
'TERRY_PAULSON' => array('topics' => array('03B','06A','09B','12B'), 'video' => 'paulson_es'),
'NIDO_QUBEIN' => array('topics' => array('02A','10A'), 'video' => 'qubein_es'),
'MARCIA_STEELE' => array('topics' => array('07A'), 'video' => 'steele_es'),
'GEORGE_WALTHER' => array('topics' => array('04B','07B','11B'), 'video' => 'walther_es')
);
} elseif($language=='es-ES') {
$speakers = array(
'JIM_CATHCART' => array('topics' => array('06B'), 'video' => 'cathcart_es'),
'LISA_FORD' => array('topics' => array('01A','05A','09A'), 'video' => 'ford'),
'AMANDA_GORE' => array('topics' => array('02B','08B'), 'video' => 'gore_es'),
'JIM_HENNIG' => array('topics' => array('03A','11A'), 'video' => 'hennig'),
'JOHN_HERSEY' => array('topics' => array('01B','05B','10B'), 'video' => 'hersey_es'),
'BOB_JOHNSON' => array('topics' => array('04A','08A','12A'), 'video' => 'johnson_es'),
'TERRY_PAULSON' => array('topics' => array('03B','06A','09B','12B'), 'video' => 'paulson_es'),
'NIDO_QUBEIN' => array('topics' => array('02A','10A'), 'video' => 'qubein_es'),
'MARCIA_STEELE' => array('topics' => array('07A'), 'video' => 'steele_es'),
'GEORGE_WALTHER' => array('topics' => array('04B','07B','11B'), 'video' => 'walther_es')
);
} elseif($language=='fr-FR') {
$speakers = array(
'JIM_CATHCART' => array('topics' => array('06B'), 'video' => 'cathcart_fr'),
'LISA_FORD' => array('topics' => array('01A','05A','09A'), 'video' => 'ford_fr'),
'AMANDA_GORE' => array('topics' => array('02B','08B'), 'video' => 'gore_fr'),
'JIM_HENNIG' => array('topics' => array('03A','11A'), 'video' => 'hennig_fr'),
'JOHN_HERSEY' => array('topics' => array('01B','05B','10B'), 'video' => 'hersey_fr'),
'BOB_JOHNSON' => array('topics' => array('04A','08A','12A'), 'video' => 'johnson_fr'),
'TERRY_PAULSON' => array('topics' => array('03B','06A','09B','12B'), 'video' => 'paulson_fr'),
'NIDO_QUBEIN' => array('topics' => array('02A','10A'), 'video' => 'qubein_fr'),
'MARCIA_STEELE' => array('topics' => array('07A'), 'video' => 'steele_fr'),
'GEORGE_WALTHER' => array('topics' => array('04B','07B','11B'), 'video' => 'walther_fr')
);
} else {
$speakers = array(
'JIM_CATHCART' => array('topics' => array('06B'), 'video' => 'cathcart'),
'LISA_FORD' => array('topics' => array('01A','05A','09A'), 'video' => 'ford'),
'AMANDA_GORE' => array('topics' => array('02B','08B'), 'video' => 'gore'),
'JIM_HENNIG' => array('topics' => array('03A','11A'), 'video' => 'hennig'),
'JOHN_HERSEY' => array('topics' => array('01B','05B','10B'), 'video' => 'hersey'),
'BOB_JOHNSON' => array('topics' => array('04A','08A','12A'), 'video' => 'johnson'),
'TERRY_PAULSON' => array('topics' => array('03B','06A','09B','12B'), 'video' => 'paulson'),
'NIDO_QUBEIN' => array('topics' => array('02A','10A'), 'video' => 'qubein'),
'MARCIA_STEELE' => array('topics' => array('07A'), 'video' => 'steele'),
'GEORGE_WALTHER' => array('topics' => array('04B','07B','11B'), 'video' => 'walther')
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment