Skip to content
Snippets Groups Projects
Select Git revision
  • 6dbe8a1aa8e85e409955e3df366c7e86e3161876
  • main default protected
  • step-3263
  • feature/plugins-cli
  • feature/vite
  • step-2484-peerreview
  • biest/issue-5051
  • tests/simplify-jsonapi-tests
  • fix/typo-in-1a70031
  • feature/broadcasting
  • database-seeders-and-factories
  • feature/peer-review-2
  • feature-feedback-jsonapi
  • feature/peerreview
  • feature/balloon-plus
  • feature/stock-images-unsplash
  • tic-2588
  • 5.0
  • 5.2
  • biest/unlock-blocks
  • biest-1514
21 results

content-icons.js

Blame
  • Forked from Stud.IP / Stud.IP
    953 commits behind the upstream repository.
    Ron Lucke's avatar
    Ron Lucke authored
    Closes #4495
    
    Merge request studip/studip!3446
    6dbe8a1a
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    content-icons.js 4.54 KiB
    const contentIconsMixin = {
        computed: {
            contentIcons() {
                return [
                    'accept',
                    'accessibility',
                    'add',
                    'add-circle',
                    'admin',
                    'aladdin',
                    'arr_1down',
                    'arr_1left',
                    'arr_1right',
                    'arr_1sort',
                    'arr_1up',
                    'arr_2down',
                    'arr_2left',
                    'arr_2right',
                    'arr_2up',
                    'assessment',
                    'audio',
                    'audio3',
                    'billboard',
                    'block-canvas',
                    'block-comparison',
                    'block-eyecatcher',
                    'block-gallery',
                    'block-gallery2',
                    'block-imagemap',
                    'blubber',
                    'brainstorm',
                    'campusnavi',
                    'cc',
                    'cellphone',
                    'chat2',
                    'code',
                    'community2',
                    'computer',
                    'consultation',
                    'content',
                    'copy',
                    'courseware',
                    'crown',
                    'date-single',
                    'decline',
                    'dialog-cards',
                    'decline-circle',
                    'doctoral_cap',
                    'download',
                    'dropbox',
                    'edit',
                    'exclaim',
                    'exclaim-circle',
                    'export',
                    'favorite',
                    'file2',
                    'file-archive',
                    'file-audio',
                    'file-office',
                    'file-pdf',
                    'file-pic',
                    'file-presentation',
                    'file-spreadsheed',
                    'file-text',
                    'file-video',
                    'files2',
                    'filter',
                    'fishbowl',
                    'folder-empty',
                    'folder-full',
                    'forum',
                    'globe',
                    'graph',
                    'group2',
                    'group3',
                    'group4',
                    'guestbook',
                    'hand',
                    'home',
                    'home2',
                    'import',
                    'info',
                    'info-circle',
                    'install',
                    'institute',
                    'key',
                    'knife',
                    'learnmodule',
                    'lightbulb',
                    'lightbulb2',
                    'link2',
                    'link3',
                    'link-extern',
                    'link-intern',
                    'literature',
                    'lock-locked',
                    'lock-unlocked',
                    'mail',
                    'mail2',
                    'medal',
                    'metro',
                    'microphone',
                    'module',
                    'network',
                    'network2',
                    'notification',
                    'notification2',
                    'opencast',
                    'outer-space',
                    'permalink',
                    'person',
                    'phone',
                    'picture',
                    'place',
                    'plugin',
                    'plugin2',
                    'print',
                    'progress',
                    'question',
                    'question-circle',
                    'radar',
                    'ranking',
                    'refresh',
                    'remove',
                    'remove-circle',
                    'reply',
                    'rescue',
                    'resources',
                    'roles',
                    'rss',
                    'schedule2',
                    'search',
                    'seminar',
                    'settings',
                    'settings2',
                    'share',
                    'source',
                    'span-empty',
                    'span-1quarter',
                    'span-2quarter',
                    'span-3quarter',
                    'span-full',
                    'spiral',
                    'sport',
                    'staple',
                    'star',
                    'star-empty',
                    'star-halffull',
                    'stat',
                    'studygroup',
                    'tag',
                    'test',
                    'tools',
                    'topic',
                    'ufo',
                    'unit-test',
                    'upload',
                    'vcard',
                    'video2',
                    'visibility-visible',
                    'vote',
                    'vote-stopped',
                    'wiki',
                    'wizard',
                ];
            },
        },
    };
    
    export default contentIconsMixin;