silverstripe-cms/code/Newsletter/TemplateList.php
Sam Minnee bfc448fa7f Added package tags and docblock info for API documentation
Fixed whitespace

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@47726 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-01-08 06:41:55 +00:00

46 lines
1.0 KiB
PHP
Executable File

<?php
/**
* @package cms
* @subpackage newsletter
*/
/**
* Subclass of DropdownField for showing a list of the newsletter templates available.
*/
class TemplateList extends DropdownField {
protected $templatePath;
function __construct( $name, $title, $value, $path, $form = null ) {
$this->templatePath = $path;
parent::__construct( $name, $title, $this->getTemplates(), $value, $form );
}
private function getTemplates() {
$templates = array( "" => "None" );
$absPath = Director::baseFolder();
if( $absPath{strlen($absPath)-1} != "/" )
$absPath .= "/";
$absPath .= $this->templatePath;
if(is_dir($absPath)) {
$templateDir = opendir( $absPath );
// read all files in the directory
while( ( $templateFile = readdir( $templateDir ) ) !== false ) {
// *.ss files are templates
if( preg_match( '/(.*)\.ss$/', $templateFile, $match ) )
$templates[$match[1]] = $match[1];
}
}
return $templates;
}
function setController( $controller ) {
$this->controller = $controller;
}
}
?>