Jump to main content Jump to doc navigation

This tutorial is part of a Series:

Now that we've got our class, we want to append our copyright date to it. Let's go ahead:

Overriding getContent

Go ahead and add this method to your CopyrightedResource class copyrightedresource.class.php:

public function getContent(array $options = array()) {
   $content = parent::getContent($options);
   $year = date('Y');
   $content .= '<div class="copyright">© '.$year.'. All Rights Reserved.</div>';
   return $content;
}

This will automatically append the Copyright to the bottom of every content for the Resource - not the end of the Template, but the end of the contents of the [[*content]] placeholder.

Next Steps

That concludes our additions to our CopyrightedResource class. We could do a lot more here by overriding other functions from the parent modResource class, but that's beyond the scope of this tutorial.

Here's a list of some of the functions you can override (we'll include the functions we already overrode). See core/model/modx/modresource.class.php for the parent class.

  • getContextMenuText – displays the text for the right-click on the tree
  • getResourceTypeName – simple name of the resource type
  • prepareTreeNode – Allows you to manipulate the tree node for a Resource before it is sent
  • listGroups – Get a sortable, limitable collection (and total count) of Resource Groups for a given Resource.
  • getTemplateVarCollection – Retrieve a collection of Template Variables for a Resource.
  • process – Process a resource, transforming source content to output.
  • getContent – Gets the raw, unprocessed source content for a resource.
  • setContent – Set the raw source content for this element.

At this point, you should be able to log into the manager and right-click the file tree and see our new CRC show up as an option to create. When you create a new "Copyrighted Resource", you should note that the URL changes inside the manager. Whereas normally when you create a page, your URL will be something like <a href="http://yoursite.com/manager/index.php?id=1&a=55&parent=0&context_key=web">http://yoursite.com/manager/index.php?id=1&a=55&parent=0&context_key=web</a>, now the URL includes the class_key parameter: <a href="http://yoursite.com/manager/index.php?id=0&a=55&class_key=CopyrightedResource&parent=0&context_key=web">http://yoursite.com/manager/index.php?id=0&a=55&class_key=CopyrightedResource&parent=0&context_key=web</a>

When you try to add a new Copyrighted Resource, however, you will only get a white screen! This is normal – we haven't created the controller files yet.

Now let's make things start working by making our controller files.

Support the team building MODX with a monthly donation.

The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.

Backers

  • modmore
  • STERC
  • Jens Wittmann – Gestaltung & Entwicklung
  • Fabian Christen
  • Digital Penguin
  • Dannevang Digital
  • Sepia River Studios
  • CrewMark
  • Chris Fickling
  • deJaya
  • Following Sea
  • Anton Tarasov
  • eydolan
  • Raffy
  • Lefthandmedia
  • Murray Wood
  • Snow Creative
  • Nick Clark
  • Helen
  • JT Skaggs
  • krisznet
  • YJ
  • Yanni
  • Richard

Budget

$366 per month—let's make that $500!

Learn more