You are here

Files in Content Planner 8

Primary tabs

File namesort descending Location Namespace Description
AccessCheck.php modules/content_kanban/src/Access/AccessCheck.php Drupal\content_kanban\Access
BaseEntry.php src/Component/BaseEntry.php Drupal\content_planner\Component
calendar.css modules/content_calendar/assets/dist/css/calendar.css #content-calendar-overview { display: flex; flex-direction: row; } #content-calendar-overview .sidebar { width: 100%; max-width: 200px; position: fixed; } #content-calendar-overview .sidebar.fixed { top: 100px; } …
calendar.css assets/dist/css/calendar.css .calendar-id { position: absolute; top: -100px; } .content-calendar { position: relative; } .content-calendar thead th { border: 1px solid #bfbfba; } .content-calendar .cell { height: 150px; width: 150px; vertical-align: top; border:…
Calendar.php modules/content_calendar/src/Component/Calendar.php Drupal\content_calendar\Component
CalendarController.php modules/content_calendar/src/Controller/CalendarController.php Drupal\content_calendar\Controller
CalendarEntry.php modules/content_calendar/src/Component/CalendarEntry.php Drupal\content_calendar\Component
CalendarLegend.php modules/content_calendar/src/Component/CalendarLegend.php Drupal\content_calendar\Component
CalenderOverviewFilterForm.php modules/content_calendar/src/Form/CalenderOverviewFilterForm.php Drupal\content_calendar\Form
config_type_config.schema.yml modules/content_calendar/config/schema/config_type_config.schema.yml modules/content_calendar/config/schema/config_type_config.schema.yml
content-calendar-entry.html.twig modules/content_calendar/templates/content-calendar-entry.html.twig <div class="calendar-entry {% if node.editoptions %}draggable{% endif %}" data-nid="{{ node.nid }}" style="border: 1px solid {{ node_type_config.color }}; color: {{ node_type_config.color }}; {% if not node.status…
content-calendar-jump-links.html.twig modules/content_calendar/templates/content-calendar-jump-links.html.twig <ul id="calendar-jump-links"> {% for month_number, month_label in months %} <li><a href="#{{ year }}-{{ month_number }}">{{ month_label }}</a></li> {% endfor %} </ul>
content-calendar-legend.html.twig modules/content_calendar/templates/content-calendar-legend.html.twig <div class="legend"> <h3>{{ "Legend"|t }}</h3> <ul class="explanations"> {% for entity_key, content_type_entity in content_type_configs %} <li> <span…
content-calendar-overview.html.twig modules/content_calendar/templates/content-calendar-overview.html.twig <div id="content-calendar-overview"> <div class="sidebar"> <div class="sidebar-block filters"> <h2>{{ "Filters"|t }}</h2> {{ filters_form }} </div> …
content-calendar.html.twig modules/content_calendar/templates/content-calendar.html.twig <div class="content-calendar"> <div class="calendar-id" id="{{ calendar.calendar_id }}"></div> <h2>{{ calendar.label }}</h2> <table> <thead> <tr> …
content-kanban-column-entry.html.twig modules/content_kanban/templates/content-kanban-column-entry.html.twig <div class="kanban-entry" data-id="{{ entity_id }}" data-type="{{ entity_type }}" style="border: 1px solid {{ entity_type_config.color }}; color: {{ entity_type_config.color }}; …
content-kanban-column.html.twig modules/content_kanban/templates/content-kanban-column.html.twig <td id="{{ column_id }}" data-state_id="{{ state_id }}" class="kanban-column droppable">{{ column }} {% if entities %} {% for entity in entities %} <div class="content-kanban-entry"> …
content-kanban-log-recent-activity.html.twig modules/content_kanban/templates/content-kanban-log-recent-activity.html.twig <ul id="content-kanban-recent-activities"> {% for entry in entries %} <li> {% if show_user_thumb %} <span class="user-profile-image-wrapper"> {% if entry.user_profile_image…
content-kanban.html.twig modules/content_kanban/templates/content-kanban.html.twig <div class="content-kanban"> <h2 id="{{ kanban_id }}">{{ kanban_label }}</h2> {{ filter_form }} <table class="kanban-columns kanban-{{ columns|length }}-columns"> <thead> …
content-planner-dashboard-block.html.twig templates/content-planner-dashboard-block.html.twig <div id="dashboard-{{ css_id }}" class="dashboard-block"> {% if has_permission %} <a href="{{ path('content_planner.dashboard_block_config_form', {'block_id': block_id}) }}?destination={{…
content-planner-dashboard-user-block.html.twig templates/content-planner-dashboard-user-block.html.twig {% for user in users %} <div class="user"> <div class="user-image"> <div class="user-image-placeholder"> {% if user.image %}<img src="{{ user.image }}" alt="{{…
content-planner-dashboard.html.twig templates/content-planner-dashboard.html.twig <div id="content-planner-dashboard"> {{ blocks }} </div>
content-state-statistic.css modules/content_kanban/assets/dist/css/dashboard_blocks/content-state-statistic.css #dashboard-content-state-statistic .dashboard-content-status-counts { margin-left: 0; padding-left: 0; } #dashboard-content-state-statistic .content-states-visual-bar { border-radius: 10px; overflow: hidden; margin-bottom:…
content-state-statistic.html.twig modules/content_kanban/templates/content-state-statistic.html.twig {% set colors = [ '#ffb2fc', '#fca747', '#0096d0', '#505050', '#99529a', '#5ebc68', '#d3d3d3', ] %} {# Calculate total #} {% set total_count = 0…
ContentCalendarService.php modules/content_calendar/src/ContentCalendarService.php Drupal\content_calendar
ContentService.php modules/content_calendar/src/ContentService.php Drupal\content_calendar
ContentStateStatistic.php modules/content_kanban/src/Plugin/DashboardBlock/ContentStateStatistic.php Drupal\content_kanban\Plugin\DashboardBlock
ContentTypeConfig.php modules/content_calendar/src/Entity/ContentTypeConfig.php Drupal\content_calendar\Entity
ContentTypeConfigDeleteForm.php modules/content_calendar/src/Form/ContentTypeConfigDeleteForm.php Drupal\content_calendar\Form
ContentTypeConfigForm.php modules/content_calendar/src/Form/ContentTypeConfigForm.php Drupal\content_calendar\Form
ContentTypeConfigHtmlRouteProvider.php modules/content_calendar/src/ContentTypeConfigHtmlRouteProvider.php Drupal\content_calendar
ContentTypeConfigInterface.php modules/content_calendar/src/Entity/ContentTypeConfigInterface.php Drupal\content_calendar\Entity
ContentTypeConfigListBuilder.php modules/content_calendar/src/ContentTypeConfigListBuilder.php Drupal\content_calendar
ContentTypeConfigService.php modules/content_calendar/src/ContentTypeConfigService.php Drupal\content_calendar
content_calendar.info.yml modules/content_calendar/content_calendar.info.yml modules/content_calendar/content_calendar.info.yml
content_calendar.install modules/content_calendar/content_calendar.install Contains install and uninstall functionality of the module.
content_calendar.libraries.yml modules/content_calendar/content_calendar.libraries.yml modules/content_calendar/content_calendar.libraries.yml
content_calendar.links.action.yml modules/content_calendar/content_calendar.links.action.yml modules/content_calendar/content_calendar.links.action.yml
content_calendar.links.menu.yml modules/content_calendar/content_calendar.links.menu.yml modules/content_calendar/content_calendar.links.menu.yml
content_calendar.links.task.yml modules/content_calendar/content_calendar.links.task.yml modules/content_calendar/content_calendar.links.task.yml
content_calendar.module modules/content_calendar/content_calendar.module Contains content_calendar.module.
content_calendar.permissions.yml modules/content_calendar/content_calendar.permissions.yml modules/content_calendar/content_calendar.permissions.yml
content_calendar.routing.yml modules/content_calendar/content_calendar.routing.yml modules/content_calendar/content_calendar.routing.yml
content_calendar.services.yml modules/content_calendar/content_calendar.services.yml modules/content_calendar/content_calendar.services.yml
content_kanban.info.yml modules/content_kanban/content_kanban.info.yml modules/content_kanban/content_kanban.info.yml
content_kanban.install modules/content_kanban/content_kanban.install Contains install and uninstall functionality of the module.
content_kanban.libraries.yml modules/content_kanban/content_kanban.libraries.yml modules/content_kanban/content_kanban.libraries.yml
content_kanban.links.menu.yml modules/content_kanban/content_kanban.links.menu.yml modules/content_kanban/content_kanban.links.menu.yml
content_kanban.links.task.yml modules/content_kanban/content_kanban.links.task.yml modules/content_kanban/content_kanban.links.task.yml
content_kanban.module modules/content_kanban/content_kanban.module Contains content_kanban.module.

Pages

Other projects