| Hyper-Developer documentation | view source | Contained in the Hyper-Developer distribution. |
Hyper::Developer::Generator::Control - abstract base class which offers a special create method for Control generation.
This document describes Hyper::Developer::Generator::Control 0.01
package Hyper::Developer::Generator::Control::ContainerFlow;
use base qw(Hyper::Developer::Generator::Control);
1;
$object->create({
name => 'filename_without_suffix', # MANDATORY
template => '/template/to/use.tpl',
force => 'boolean value, overwrite existing file?'
data => {
what => 'ever',
passed => 'to template',
},
});
Calls the Hyper::Developer::Generator::create method with some special. This method is only important for out code generator maintainers.
$Author: ac0v $
$Id: Control.pm 333 2008-02-18 22:59:27Z ac0v $
$Revision: 333 $
$Date: 2008-02-18 23:59:27 +0100 (Mon, 18 Feb 2008) $
$HeadURL: http://svn.hyper-framework.org/Hyper/Hyper-Developer/branches/0.07/lib/Hyper/Developer/Generator/Control.pm $
Andreas Specht <ACID@cpan.org>
Copyright (c) 2007, Andreas Specht <ACID@cpan.org>.
All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Hyper-Developer documentation | view source | Contained in the Hyper-Developer distribution. |