Skip to content

Instantly share code, notes, and snippets.

@hissy
Last active June 30, 2020 20:15
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 hissy/8bebf6ca2ec1f18473d614d37d0e67ff to your computer and use it in GitHub Desktop.
Save hissy/8bebf6ca2ec1f18473d614d37d0e67ff to your computer and use it in GitHub Desktop.
[concrete5] List of block types
| Block Type Handle | Block Type Name |
| ---- | ---- |
<?php
$types = \Concrete\Core\Block\BlockType\BlockTypeList::getInstalledList();
/** @var \Concrete\Core\Entity\Block\BlockType\BlockType $type */
foreach ($types as $type) {
echo sprintf('|%s|%s|', $type->getBlockTypeHandle(), $type->getBlockTypeName());
echo PHP_EOL;
}
Block Type Handle Block Type Name
autonav Auto-Nav
calendar Calendar
calendar_event Calendar Event
desktop_app_status concrete5 Status Messages
content Content
core_conversation Conversation
desktop_featured_addon Dashboard Featured Add-On
desktop_featured_theme Dashboard Featured Theme
desktop_newsflow_latest Dashboard Newsflow Latest
date_navigation Date Navigation
document_library Document Library
desktop_draft_list Draft List
event_list Event List
express_entry_detail Express Entry Detail
express_entry_list Express Entry List
external_form External Form
faq FAQ
feature Feature
file File
express_form Form
google_map Google Map
horizontal_rule Horizontal Rule
html HTML
image Image
image_slider Image Slider
desktop_latest_form Latest Form
form Legacy Form
next_previous Next & Previous Nav
page_attribute_display Page Attribute Display
page_list Page List
page_title Page Title
rss_displayer RSS Displayer
search Search
share_this_page Share This Page
desktop_site_activity Site Activity
social_links Social Links
survey Survey
switch_language Switch Language
tags Tags
testimonial Testimonial
topic_list Topic List
video Video Player
desktop_waiting_for_me Waiting for Me
youtube YouTube Video
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment