Recent Content Web Service

Component type

module

Maintenance status

Development status

Component created

Component changed

This module displays the most recent content from two content types, for examples five articles and five videos. This is not possible with views, for example if you try to add attachment of a second content type in views it will break the JSON format.

The number of articles can be controlled via the end point URL by appending a digit to the end of the URL, e.g. ../endpoint/recent_content/5. We have used it for displaying articles and videos on a dashboard.

Entity Jump Menu

Component type

module

Maintenance status

Development status

Downloads

761

Component created

Component changed

About this Module

Adds a jump menu to the toolbar that allows administrators to view the current page's entity and to quickly go to a different entity.

The entity jump menu is specifically helpful when URL aliases are setup for nodes, users, and terms because the system paths for these entities, which includes the entity type and id ,is not immediately visible in the browser's address bar.

Demo

Evaluate this project online using simplytest.me.

JSE

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

JSE (JSON slimmed entity) let's you create API endpoints with a hook

function MODULE_jse_info() {
    return array(
        'projects' => array(
            'label' => t('Projects'),
            'callback' => 'example_get_jse_entity_ids',
        )
    );
}

function example_get_jse_entity_ids() {
    return array(
        'node' => array(1, 5, 56),
        'user' => array(23, 1)
    );
}

The result will be a JSON output with the nodes rendered by the view mode json.

Textarea Limit

Component type

module

Maintenance status

Development status

Downloads

91

Component created

Component changed

INTRODUCTION

The Textarea Limit module adds in character limiting to selected textarea widgets. Widgets are selected on the respective form display edit form(s). A global character limit can be used, configurable via an admin form or a local limit can be set.