Skip to content

Instantly share code, notes, and snippets.

@boonebgorges
Created November 15, 2022 21:24
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 boonebgorges/404e8f6471dcf7998bf436f9efce316c to your computer and use it in GitHub Desktop.
Save boonebgorges/404e8f6471dcf7998bf436f9efce316c to your computer and use it in GitHub Desktop.
shortcut map
<?php
$shortcut_map = [
'Administrator' => [
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
[
'url' => 'https://help.commons.gc.cuny.edu/frequently-asked-questions-when-getting-started-with-the-commons/',
'title' => 'FAQs',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => 'To-Do Checklist',
],
[
'url' => 'https://commons.gc.cuny.edu/twitter/',
'title' => 'Commons Tweets',
],
],
'Faculty' => [
[
'url' => 'https://help.commons.gc.cuny.edu/why-teach-commons/',
'title' => 'Teaching on the Commons',
],
[
'url' => 'https://help.commons.gc.cuny.edu/for-students-learning/',
'title' => 'Resources for Students',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => 'To-Do Checklist',
],
[
'url' => 'https://in.commons.gc.cuny.edu/2020/03/19/online-communication-learning-a-collection-of-instructor-resources/',
'title' => 'Online Teaching Resources',
],
],
'Staff' => [
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => 'To-Do Checklist',
],
[
'url' => 'https://help.commons.gc.cuny.edu/frequently-asked-questions-when-getting-started-with-the-commons/',
'title' => 'FAQs',
],
[
'url' => 'https://commons.gc.cuny.edu/events/',
'title' => 'CUNY Events on the Commons',
],
],
'Undergraduate Student' => [
[
'url' => 'https://help.commons.gc.cuny.edu/for-students-learning/',
'title' => 'Taking a Commons Course',
],
[
'url' => 'https://help.commons.gc.cuny.edu/teaching-and-learning-faq/',
'title' => 'Student Resources and FAQs',
],
[
'url' => 'https://help.commons.gc.cuny.edu/my/',
'title' => 'Finding Your Course',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => 'To-Do Checklist',
],
],
'Graduate Student' => [
[
'url' => 'https://tlc.commons.gc.cuny.edu',
'title' => 'Support for Teaching at CUNY',
],
[
'url' => 'https://commons.gc.cuny.edu/courses/?filters%5Bkeyword%5D=&amp;filters%5Bcampus%5D%5B%5D=gc&amp;order-by=semester',
'title' => 'GC Courses on the Commons',
],
[
'url' => 'https://help.commons.gc.cuny.edu/teaching-and-learning-box/',
'title' => 'Teaching &amp; Learning on the Commons',
],
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
],
'Alumnus/a' => [
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => '10 things to do on the Commons',
],
[
'url' => 'https://commons.gc.cuny.edu/events/',
'title' => 'CUNY Events on the Commons',
],
[
'url' => 'https://help.commons.gc.cuny.edu/frequently-asked-questions-when-getting-started-with-the-commons/',
'title' => 'FAQs',
],
],
'Postdoc' => [
[
'url' => 'https://commons.gc.cuny.edu/events/',
'title' => 'CUNY Events on the Commons',
],
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
[
'url' => 'https://tlc.commons.gc.cuny.edu',
'title' => 'Teaching and Learning Center',
],
[
'url' => 'https://commons.gc.cuny.edu/about/publications/',
'title' => 'Publications on the Commons',
],
],
'Other' => [
[
'url' => 'https://help.commons.gc.cuny.edu/our-tools/',
'title' => 'Features and Tools',
],
[
'url' => 'https://help.commons.gc.cuny.edu/10-things-to-do/',
'title' => 'Commons Newbie Checklist',
],
[
'url' => 'https://help.commons.gc.cuny.edu/frequently-asked-questions-when-getting-started-with-the-commons/',
'title' => 'FAQs',
],
[
'url' => 'https://commons.gc.cuny.edu/twitter/',
'title' => 'Commons Tweets',
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment