silverstripe-docsviewer/code/models/DocumentationFolder.php

21 lines
361 B
PHP
Raw Normal View History

<?php
/**
* A specific documentation folder within a {@link DocumentationEntity}.
*
* Maps to a folder on the file system.
*
* @package docsviewer
* @subpackage model
*/
2015-11-21 07:25:41 +01:00
class DocumentationFolder extends DocumentationPage
{
/**
* @return string
*/
public function getTitle()
{
return $this->getTitleFromFolder();
}
}