| | 19 | |
| | 20 | Sjabloonhandlers zijn in het {{{ OpenACLogica }}} project terug te vinden onder de module {{{ Bestanden }}} in de map {{{ Sjabloonhandlers }}}. |
| | 21 | |
| | 22 | Elke sjabloonhandler implementeert de interface {{{ ISjabloonhandler }}}: |
| | 23 | |
| | 24 | {{{#!csharp |
| | 25 | namespace OpenACLogica.Modules.Bestanden.Sjabloonhandlers |
| | 26 | { |
| | 27 | public interface ISjabloonhandler |
| | 28 | { |
| | 29 | IEnumerable<string> RegisterFor { get; } |
| | 30 | string Name { get; } |
| | 31 | SjabloonInfo Create(SjabloonInfo sjabloonInfo, string user, List<LookupItem> themas = null, Dictionary<string, string> args = null); |
| | 32 | SjabloonInfo Display(SjabloonInfo sjabloonInfo, string user, List<LookupItem> themas = null, Dictionary<string, string> args = null); |
| | 33 | |
| | 34 | } |
| | 35 | }}}} |