<!DOCTYPE codetemplates SYSTEM "codetemplates.dtd">
<templates><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for getter methods"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.gettercomment"name="gettercomment">/**
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for setter methods"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.settercomment"name="settercomment">/**
* @param ${param} the ${bare_field_name} to set
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for created constructors"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.constructorcomment"name="constructorcomment">/**
* ${tags}
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for created PHP files"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.filecomment"name="filecomment">/**
*
*/
</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for created types"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.typecomment"name="typecomment">/**
* @author ${user}
*
* ${tags}
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for fields"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.fieldcomment"name="fieldcomment">/**
* @var ${field_type}
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for variables"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.varcomment"name="fieldcomment">/* @var ${field_type} */</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for non-overriding methods"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.methodcomment"name="methodcomment">/**
* ${cursor}${tags}
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for overriding methods"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.overridecomment"name="overridecomment">/* (non-PHPdoc)
* ${see_to_overridden}
*/</template><templateautoinsert="true"context="phpcomment"deleted="false"description="Comment for delegate methods"enabled="true"id="org.eclipse.php.ui.editor.templates.php.codetemplates.delegatecomment"name="delegatecomment">/**
* ${tags}
* ${see_to_target}
*/</template><templateautoinsert="false"context="php"deleted="false"description="print an expression"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print"name="pr">print ${};
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="print a string"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print.string"name="prs">print "${}";
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="print with new line"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print.newline"name="prln">print ${}."\n";
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="print a value"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print.variable"name="prv">print("\${dollar}${variable} = ". ${dollar}${variable});
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="prints the current function name"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print.functionName"name="prf">print("${function_container}");
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="prints the current class name"enabled="true"id="org.eclipse.php.ui.editor.templates.php.print.className"name="prc">print("${class_container}");
${cursor}</template><templateautoinsert="false"context="php"deleted="false"description="echo a string"enabled="true"id="org.eclipse.php.ui.editor.templates.php.echo"name="eco">echo("${}");
}</template><templateautoinsert="false"context="php"deleted="false"description="foreach statement"enabled="true"id="org.eclipse.php.ui.editor.templates.php.foreach"name="fore">foreach (${dollar}${array_variable} as ${dollar}${variable}) {
${cursor};
}
</template><templateautoinsert="false"context="php"deleted="false"description="foreach with key statement"enabled="true"id="org.eclipse.php.ui.editor.templates.php.foreachkey"name="forek">foreach (${dollar}${array_variable} as ${dollar}${number_variable} => ${dollar}${variable}) {
</template><templateautoinsert="false"context="php"deleted="false"description="lambda function statement (closure)"enabled="true"id="org.eclipse.php.ui.editor.templates.php.lambda"name="lambda">function (${parameters}) use (${lexical_variables}) {
${cursor};
}
</template><templateautoinsert="false"context="php"deleted="false"description="lambda function statement (closure)"enabled="true"id="org.eclipse.php.ui.editor.templates.php.closure"name="closure">function (${parameters}) use (${lexical_variables}) {
</template><templateautoinsert="false"context="php"deleted="false"description="iterates a directory"enabled="true"id="org.eclipse.php.ui.editor.templates.php.itdir"name="itdir">${dollar}${dirh} = opendir(${dirname});
if (${dollar}${dirh}) {
while (${dollar}${dir_element} = readdir(${dollar}${dirh})) {
${cursor}</template><templateautoinsert="true"context="newPhp"deleted="false"description="html 4.01 frameset"enabled="true"id="org.eclipse.php.ui.editor.templates.newPhp.html.frameset"name="New PHP file - HTML frameset"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">