#Macro Parameter Editors
Every macro can contain parameters. There are some useful default types. For example:
- True/False
- TextBox
- TextArea
- Numeric
- Single/Multiple Media Picker
- Single/Multiple Content Picker
... and some 'others'. Consult the Backoffice documentation for general information on Macros.
You can create your own custom macro parameter types.
All you need to do to create a macro parameter type in Umbraco 7, is to create a custom 'Property Editor' (or copy someone else's), see Property Editors documentation and in the Package Manifest file for the editor, set the isParameterEditor property to be true.
propertyEditors: [
{
alias: "My.ParameterEditorAlias",
name: "Parameter Editor Name",
isParameterEditor: true,
editor: {
view: "~/App_Plugins/My.ParameterEditor/ParameterEditorView.html"
}
}
]
However 'Parameter Editors' unlike 'Property Editors' cannot contain 'prevalues', since there is no UI to present configuration option in the Macro Parameter tab when a particular type is chosen. You can use the defaultConfig option to pass a one off default set of configuration for the parameter editor to use:
defaultConfig: {
wolf: "nope",
editor: "hello",
random: 1234
}
This is only a problem if you have a macro parameter type, that needs to be used on lots of different macros, but with slightly different configuration in each instance.
We'll create a simple 'Image Position' Macro Parameter type providing a Radio Button list of options for positioning an image that has been inserted via the Macro.
{
"propertyEditors": [
{
"alias": "tooorangey.ImagePosition",
"name": "Image Position",
"isParameterEditor": true,
"editor": {
"view": "~/App_Plugins/tooorangey.ImagePosition/ImagePosition.html",
"valueType": "STRING"
}
}],
"javascript": [
"~/App_Plugins/tooorangey.ImagePosition/ImagePosition.controller.js"
]
}
<div ng-controller="tooorangey.ImagePositionController">
<div class="radio" ng-repeat="position in positions" id="selectstatus-{{position.Name}}">
<label>
<input type="radio" name="position" ng-model="model.value" value="{{position.Name}}">{{position.Name}}
</label>
</div>
</div>
angular.module("umbraco").controller("tooorangey.ImagePositionController", function ($scope) {
if ($scope.model.value == null) {
$scope.model.value = 'FullWidth';
}
//could read positions from defaultConfig
$scope.positions = [
{
Name: 'FullWidth'
},
{
Name: 'Left'
},
{
Name: 'Right'
},
{
Name: 'Center'
}
];
});
The final custom parameter should look like this:
If you want to create a new macro parameter editor you will need some c# programming and database knowledge.
First create a class deriving from a webcontrol and implement the IMacroGuiRendering interface. Afterwards, open your database editor. Find the cmsMacroPropertyType table and add the a new property editor.
You can find this interface in the umbraco.interfaces namespace contained in the interfaces dll. You will need to reference this DLL if you are developing your control in a separate project. This interface implements 2 properties: Value and ShowCaption. The value stores a string and the ShowCaption property a bool.
id | macroPropertyTypeAlias | macroPropertyTypeRenderAssembly | macroPropertyTypeRenderType | macroPropertyTypeBaseType |
---|---|---|---|---|
28 | myNewPickerType | NameOfAssembly | FullName.OfType.IncludingNamespace | String |
A very basic example deriving from a DropDownList ASP.NET server control
public class MyCustomPicker : DropDownList, IMacroGuiRendering
{
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if(this.Items.Count == 0)
{
// set properties
this.SelectionMode = ListSelectionMode.Multiple;
// load data
...
}
}
public bool ShowCaption
{
get { return true; }
}
public string Value
{
get { return this.SelectedValue; }
set { this.SelectedValue = value; }
}
}
- A nice blogpost by Richard Soeteman: Create A Custom Macro ParameterType