Umbraco Action Handler

by matt.perry 9/3/2008 12:21:00 PM

I had quite a common requirement with a current Umbraco project I'm working on.  Each page can have an infinite number of banner ads on the right hand column of the screen.   Easiest way is to create a new document type for each banner item and allow them to be added as sub pages of the main text page.   In this particular web site each text page can have its own sub text pages so you end up with a nice tree structure of homepage, child pages and grand-child pages.

If each of these pages can have banner items the visual representation of the tree in the Umbraco manager pages becomes very difficult to understand.

image

What I needed was a container folder in the tree to place all the banner ads so they don't get mixed up with the text pages.

 image

When expanded you can see the banner items

image

This necessitated creating the banner 'container' sub-folder automatically each time a new text page was created.

 

The simplest way to achieve this is to use Umbraco Action Handlers

 

All the code is shown below but the main part of the Action Handler which is simply a Class Library dumped in the bin folder of the Umbraco site.


We are only interested in trapping the event fired when a page is create(d) otherwise leave the function.

// Only work with create event           

if (action.Alias != "create") return true;

Similarly we are only interested in the Text Page document type         

  // Only work with Text Page docuemnt types
            if (documentObject.ContentType.Alias != "Text Page") return true;

 

Create a new document of type banner container and base the location of the current documentID.

 

            Document bannerItem = null;

            bannerItem = Document.MakeNew("Banners", DocumentType.GetByAlias("Banner Container"), documentObject.User, documentObject.Id);

I didn't want this container folder showing up in the navigation or any sitemap so I had to set some properties and then save the object.

            bannerItem.getProperty("umbracoNaviHide").Value = "1";
            bannerItem.getProperty("siteMapHide").Value = "1";
            bannerItem.Save();

 

That's it.....simple but very useful for creating a specific structure of sub-page when creating a new content node.

 

Full Code:

 

using System;
using System.Collections.Generic;
using System.Text;

using umbraco.BusinessLogic.Actions;
using umbraco.BusinessLogic.console;
using umbraco.cms.businesslogic.web;

namespace UmbracoWebsite

{
    public class BannerHandler : IActionHandler
    {
        #region IActionHandler Members

        public bool Execute(Document documentObject, umbraco.interfaces.IAction action)
        {
            // Only work with create event
            if (action.Alias != "create") return true;

            // Only work with Text Page docuemnt types
            if (documentObject.ContentType.Alias != "Text Page") return true;

            Document bannerItem = null;

            bannerItem = Document.MakeNew("Banners", DocumentType.GetByAlias("Banner Container"), documentObject.User, documentObject.Id);
            bannerItem.getProperty("umbracoNaviHide").Value = "1";
            bannerItem.getProperty("siteMapHide").Value = "1";
            bannerItem.Save();

            return true;

        }

        public string HandlerName()
        {
            return "BannerHandler";
        }

        public umbraco.interfaces.IAction[] ReturnActions()
        {
            return new umbraco.interfaces.IAction[] { new umbraco.BusinessLogic.Actions.ActionNew() };
        }

        #endregion

    }
}

Visual Studio 2008 RTM - Available on MSDN now.

by matt.perry 11/20/2007 8:57:00 AM


The long awaited Visual Studio 2008 was finally released to manufacturing yesterday 19th November.

Highlights of the environmnet built upon .NET 3.5, also relased yesterday include.

  • Multi-targeting of .NET2.0, .NET3.0 and .NET3.5 all from the same IDE
  • Built in AJAX support - no seperate download
  • Extensive changes to the web design component which is based on the expression web designer engine.
  • Extensive support for CSS developement
  • Language improvements
  • LINQ - Language Integrated Query - Built-in Object Relation Mapper (OR/M)  - Working with data now as easy as working with a class
  • Data access improvements

This really is an exciting update to the already formidable developer toolset.

 

Scott Gutherie - MVC

by matt.perry 11/13/2007 12:46:00 PM

Scott Gutherie has published the first of his hotly anticipated series on the new MVC architecture for ASP.NET

http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx 

Umbraco

by matt.perry 10/25/2007 11:18:00 PM

It's taken me a while to really take a look at this open source .NET CMS system built in c# but now I have I won't look back.

For years I've built many different CMS solutions for clients where I would target each individual site with specific additions to a basic CMS.  This became both tedious and dangerous.  Why dangerous?  Well apart from being very difficult to manage it ultimately leads to an unhappy client and potential lawsuits!  I never quite got that far but it made the projects focus the CMS and not the actual website.

Thanks to Peter Labrow at Labrow Marketing for pointing me in the direction of this great piece of software.  It's based on open standards, fully compliant and easy to extend.  Just got to brush up on the XSLT which is used to build the templates.

www.umbraco.org

ASP.NET Health Monitoring

by matt.perry 10/10/2007 5:39:00 PM

Running a large server farm can be a stressfull occupation but wouldnt it be great to get some form of warning when things are not well.  Perhaps even just before a failure?

 I've been thinking about this a lot lately and I'm determeined to build a simple windows mobile app that queries a web service in my data centre.  I'm just going to use red, amber and green colours to indicate problems.

Hopefully at a glance I wll be able to see everything green and happy.

This article from the 4GuysFromRolla looks a great place to start.  http://aspnet.4guysfromrolla.com/articles/032107-1.aspx 

Welcome

by matt.perry 9/30/2007 12:00:00 AM

After years of tracking other people's blogs I though it about time I start my own.   I randomly come across useful bits of information on my searches around the web and thought I need a place to store them. 

I'm the principal architect of www.picturenation.co.uk a user generated content image library in the UK.  I focus on ASP.NET, SQL Server & .NET technologies. 

Thanks for listening.

Matt

Powered by BlogEngine.NET 1.2.0.0
Theme by Mads Kristensen

About the author

Matt Perry Software architect, CMS specialist and football fanatic. Need to find a way to join them all together!

E-mail me Send mail

Calendar

<<  March 2010  >>
MoTuWeThFrSaSu
22232425262728
1234567
891011121314
15161718192021
22232425262728
2930311234

View posts in large calendar

Pages

Recent comments

    Disclaimer

    The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

    © Copyright 2010

    Sign in