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
Setting addon/theme version compatibility in the marketplace
Jan 9, 2024

For developers worn out with setting the latest addon or theme version manually across too many core versions, here is a JavaScript bookmarklet to do it for you.

How to get the locale of a page
Jan 8, 2024
By mandako.

Now, why don't we just have a getLocale() method on Page objects beats me, but here's how you work around it

Using a Redis Server
Jun 16, 2023
By mlocati.

How to configure Concrete to use one or more Redis servers to persist the cache.

Using the Concrete Migration Tool Addon
Apr 27, 2023

How to use the Concrete CMS Migration Tool

How To Add Page Last Updated To Your Concrete CMS Pages
Mar 7, 2023

Concrete CMS has a page attribute you can add to a global area called "Page Date Modified." Here's how to add it

How To Exclude Subpages from Navigation
Dec 24, 2022

How to exclude subpages from navigation - useful for a news or blog link in your main navigation where you don't want all the subpages to appear in a drop down menu.

Improvements?

Let us know by posting here.