Concrete CMS 5.7: Add-On Development, Part 2

This tutorial is over a year old and may not apply to your version of Concrete CMS.
Apr 23, 2014

If you're a developer of Concrete CMS websites or add-ons that run on those websites, you should be ready for version 5.7. In this how-to, I'm going to go through how I got a relatively simple add-on ready for 5.7.

In part one of this guide, we focused on working on some backend classes, like the block and dashboard page controllers. This guide focuses on how to tackle some of the front-end changes coming in 5.7.

Block UI

Out of the box in 5.7, this is how our Email List Signup block looks:

Not terrible, but we could certainly clean up the form field alignment. In form.php, I've changed fields that look like this:

<tr>
    <td align="right"><?php  echo $form->label('inFieldText', 'In-Field Label:'); ?></td>
    <td align="left" class="field"><?php  echo $form->text('inFieldText', $inFieldText); ?></td>
</tr>

into standard Bootstrap 3 forms. Concrete includes Bootstrap 3 as the basis of all its user interfaces.

<div class="form-group">
    <?php echo $form->label('inFieldText', 'In-Field Label:'); ?>
    <?php  echo $form->text('inFieldText', $inFieldText); ?>
</div>

We also change the width and height of our block in the controller, and rescan it in the Dashboard. Now our block looks quite a bit nicer in edit mode.

Confirm Signup Single Page

In order to get the Confirm Signup single page to work, we need to namespace its page controller. We already moved it into the proper directory in part one. Open controllers/single_page/confirm_signup.php and change this:

<?php defined('C5_EXECUTE') or die(_("Access Denied."));
class ConfirmSignupController extends Controller {

to this:

<?php  

namespace Concrete\Package\EmailListSignup\Controller\SinglePage;
use \Concrete\Core\Page\Controller\PageController;
use \Concrete\Package\EmailListSignup\Models\EmailListSignup;
use Block;
use UserInfo;
use Loader;

class ConfirmSignup extends PageController {

Dashboard Reports Page

Finally, let's make our dashboard page look a little prettier. We start with this:

which is made with a simple PHP form and some older Concrete markup:

<h1><span>Email List Signups</span></h1>

<div class="ccm-dashboard-inner">
    <table border="1" cellpadding="5">
        <tr>
            <th>email</th>
            <th>IP Address</th>
            <th>Created</th>
            <th>Confirmed</th>
        </tr>

        <?php  foreach ($signups as $signup): ?>
        <tr>
            <td><?php  echo htmlentities($signup->email); ?></td>
            <td><?php  echo $signup->ip; ?></td>
            <td><?php  echo $signup->created; ?></td>
            <td><?php  echo $signup->confirmed; ?></td>
        </tr>
        <?php  endforeach; ?>
    </table>

    <div style="padding-top: 10px;">
        <form method="post" action="<?php  echo $this->action('download_signups'); ?>">
            <?php  echo $form->submit('download', 'Download List (.csv)'); ?>
        </form>
    </div>
</div>

and we finish with this:

<form method="post" action="<?php  echo $this->action('download_signups'); ?>">
<div class="ccm-dashboard-header-buttons">
    <button class="btn btn-default" type="submit"><?=t('Download List (.csv)')?></button>
</div>
</form>

<table class="table table-striped">
    <tr>
        <th><?=t('Email')?></th>
        <th><?=t('IP Address')?></th>
        <th><?=t('Created')?></th>
        <th><?=t('Confirmed')?></th>
    </tr>
    <?php  foreach ($signups as $signup): ?>
    <tr>
        <td><?php  echo htmlentities($signup->email); ?></td>
        <td><?php  echo $signup->ip; ?></td>
        <td><?php  echo $signup->created; ?></td>
        <td><?php  echo $signup->confirmed; ?></td>
    </tr>
    <?php  endforeach; ?>
</table>

Which makes our page look really nice.

Next Steps

And that's it. The add-on is done! Jordanlev has graciously allowed me to make the udpated source available for download:

email_list_signup.zip

Of course, there's plenty more you could do. You could display help messages on the dashboard page; you could integrate the database model with Doctrine ORM (instead of the Legacy Model) and much, much more. Please let us know your thoughts, and if you're interested in doing some development on 5.7, head on over to the Github repository.

Recent Tutorials
Customize locale icons
Oct 29, 2024
By myq.

How to customize locale (language region) flags

Concrete CMS Caching Guide
Oct 16, 2024

An overview of types of caching in Concrete and considerations when using them.

Redirect all requests to HTTPS
Oct 9, 2024
By myq.

How to follow best practices for a secure web

Upgrade Concrete versions 9.3.1 and 9.3.2
Sep 10, 2024
By myq.

How to get past a bug in versions 9.3.1 and 9.3.2 that prevents upgrading the Concrete core through the Dashboard

How to use Composer with Marketplace extensions
Aug 22, 2024

Composer can be used to manage third-party extensions from the marketplace

Controlling Google Tag Manager Tags Based on Concrete CMS Edit Toolbar Visibility
Aug 13, 2024

This document provides a step-by-step guide on how to control the firing of Google Tag Manager (GTM) tags based on the visibility of the Concrete CMS edit toolbar. It explains how to create a custom JavaScript variable in GTM to detect whether the edit toolbar is present on a page and how to set up a trigger that ensures GTM tags only fire when the toolbar is not visible. This setup is particularly useful for developers and marketers who want to ensure that tracking and analytics tags are not activated during content editing sessions, thereby preserving the accuracy of data collected.

Improvements?

Let us know by posting here.