silverstripe-docsviewer/code/models/DocumentationFolder.php

21 lines
362 B
PHP
Raw Normal View History

<?php
/**
2017-08-08 15:50:24 +12:00
* A specific documentation folder within a {@link DocumentationEntity}.
*
2017-08-08 15:50:24 +12:00
* Maps to a folder on the file system.
*
2016-12-02 15:31:18 +13:00
* @package docsviewer
* @subpackage model
*/
2015-11-21 19:25:41 +13:00
class DocumentationFolder extends DocumentationPage
{
/**
* @return string
*/
public function getTitle()
{
return $this->getTitleFromFolder();
}
}