TemplatePart - addIncludeByDBKey
TemplatePart - addIncludeByDBKey
Description :
This command adds an include to a template part. You must provide the name of a template, the template group, the name and type of the template part, and the path to the server objects you want to include.
For a complete list of the model types you can include, see the TemplatePart addIncludeByName command.
Return type : DBKey
Command Input :
Variable Name | Variable Type | Description |
|---|---|---|
templateKey | DBKey | Handle to the existing template. |
templatePartName | String | Path to the template part to be modified. Note that if you set templatePartType to CUSTOM_OBJECT, then you must set templatePartName to the class name of the custom object as specified in model.xml. |
templatePartType | String | Type of template part to be included (see description above). |
includePath | String | Path to be included. |
Example
The following example shows how to include only the .txt files in directory in a template with a known template handle TEMPLATE_DBKEY:
Script
ASSET_TYPE="DIRECTORY"
ASSET_PATH="/C"
INCLUDE_FILES="*.txt"
RESULT=`blcli TemplatePart addIncludeByDBKey $TEMPLATE_DBKEY $ASSET_PATH $ASSET_TYPE '$INCLUDE_FILES'`