Creating classes for PageTypeBuilder in an existing project

While everyone else is creating cool gadgets for the new site center I was appointed to update an "old" site with some new functionality. And since PageTypeBuilder was introduced in my EPiServer life, and don't feel like working without it in any project. If this would've been a small project I would probably just created the PTB classes by hand, but after looking into the page type list I was freaked out. Therefore I spent some time creating a "plugin" (it's not a  real plugin, just "some" code) that creates PageTypes classes from all the page types and properties in the current project.

Step 1
The first step is to download the source code, it's a zip-file containing a .aspx/.designer/.cs
Download it here

Step 2
Include the files in your project.

Step 3
Open you web browser and surf to the page.

Step 4
There are a few values that yo can change before doing the import/export (it's up to you to define what it is :) ).
You can add a prefix before and after the class name, change the base class that the classes should extend, enter a namespace (required) and finally decide where to put the files.
ptb-classes1

You can also exclude page types that you don't want to include.
ptb-classes2

And finally you can decide which namespaces that should be included by default.
ptb-classes3

Step 5
When clicking "Create classes" you will see a log of classes created plus if something is excluded.
An example is that every propertyname with a "-" in it will be excluded because you can't have "-" in a property name in C#.
When the files are created you just have to include them in your project and you should be good to go. You have to remember to include a reference to PageTypeBuilder, and you also need to change so all PageTypes .aspx.cs files inherits from the right class.

One other thing that should be mentioned is that PageTypes names like "[Something] Page Type Name" will end up like [yout catalog]\Something\PageTypeName.cs (if you don't have any prefix).

Update - 091103 10:23
1. Discovered a bug and updated the source files.
2. Before using this, backup you database, this code is used without any warranty.
3. If you want to extend the functionality, please feel free to do it.

Update - 100128
DefaultValueType was not set which lead to some problems. Fixed.

  1. Petter’s avatar

    Nice Erik! Will have to try this out. Been thinking about the same issue as you had and now you have (hopefully =)) solved it for me!

  2. Joel Abrahamsson’s avatar

    Great work Erik! I’ve been planning to do something simillar for quite some time but I have never gotten around to it. Now I don’t have to :)

  3. Frederik Vig’s avatar

    Great stuff Erik! Saved me tons of time! :)

  4. Frederik Vig’s avatar

    Hi Erik
    Think I found a little bug.. Properties that are not displayed in edit mode don’t get DisplayInEditMode property set to false.

CAPTCHA image