B.67 TypedefTask

With the TypedefTask you can import a user type into your buildfile.

Table B.73: Attributes

NameTypeDescriptionDefaultRequired
classname String The path to the class that defines the type class.n/aYes
name String The name the type is available as after importing. If you specify "cproject", for example, you can access the type imported here with <cproject>. n/aYes
classpath String The classpath to use when including classes. This is added to PHP's include_path.n/aNo
classpathref String Reference to classpath to use when including classes. This is added to PHP's include_path. n/aNo

B.67.1 Examples

<!--
Includes the Type named "CustomProject" and makes it available by
<cproject>
-->
<typedef classname="user.types.CustomProject" name="cproject" />
        

B.67.2 Supported Nested Tags