class CourseOutlineList in Course 3.x
Same name and namespace in other branches
- 8.3 src/Plugin/course/CourseOutline/CourseOutlineList.php \Drupal\course\Plugin\course\CourseOutline\CourseOutlineList
- 8.2 src/Plugin/course/CourseOutline/CourseOutlineList.php \Drupal\course\Plugin\course\CourseOutline\CourseOutlineList
Plugin annotation
@CourseOutline(
id = "course",
label = @Translation("Course"),
description = @Translation("Displays course objects in an HTML list."),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\course\Plugin\CourseOutlinePluginBase implements CourseOutlineInterface
- class \Drupal\course\Plugin\course\CourseOutline\CourseOutlineList
- class \Drupal\course\Plugin\CourseOutlinePluginBase implements CourseOutlineInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of CourseOutlineList
File
- src/
Plugin/ course/ CourseOutline/ CourseOutlineList.php, line 23
Namespace
Drupal\course\Plugin\course\CourseOutlineView source
class CourseOutlineList extends CourseOutlinePluginBase {
/**
* {@inheritdoc}
*/
function render(Course $course, AccountInterface $account) {
// Iterate over objects.
$workflow = array();
$img = NULL;
foreach ($course
->getObjects() as $key => $courseObject) {
if ($courseObject
->access('see', $account)) {
// The item will be in the list only if the user can see it. If they can
// take it, entity_view() will output a link instead of text.
$entity = CourseObject::load($courseObject
->id());
$render_controller = \Drupal::entityTypeManager()
->getViewBuilder('course_object');
$item = $render_controller
->view($entity);
if ($courseObject
->access('take', $account)) {
// User can take this course object.
$item['#class'][] = 'accessible';
// Step is complete.
if ($courseObject
->getFulfillment($account)
->isComplete()) {
$item['#class'][] = 'completed';
}
elseif ($courseObject
->getFulfillment($account)
->id()) {
$item['#class'][] = 'in-progress';
}
if ($course
->getActive() === $courseObject) {
$item['#class'][] = 'active';
}
}
// Allow other modules to modify this list item.
$courseObject
->overrideOutlineListItem($item);
// Add this item to the list.
$workflow[] = $item;
}
}
if ($course
->getEnrollment($account)
->isComplete()) {
$image = [
'#uri' => 'core/misc/icons/73b355/check.svg',
'#alt' => t('An icon'),
'#theme' => 'image',
];
$workflow[] = array(
'#markup' => render($image) . Link::fromTextAndUrl(t('Complete'), Url::fromRoute('course.complete', [
'course' => $course
->id(),
]))
->toString(),
'#id' => 'complete',
);
}
$output = [];
if ($workflow) {
$page = [];
$page['course_outline']['#theme'] = 'item_list';
$page['course_outline']['#attributes'] = [
'class' => [
'course-outline-list',
],
];
$page['course_outline']['#items'] = $workflow;
return $page;
}
return $output;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CourseOutlineList:: |
function |
Render a course outline. Overrides CourseOutlinePluginBase:: |
||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 98 |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |