21 regels
391 B
PHP
21 regels
391 B
PHP
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
use Todaymade\Daux\DauxHelper;
|
|
|
|
class Content extends Entry
|
|
{
|
|
public $title;
|
|
|
|
public function __construct($path = '', $parents = array())
|
|
{
|
|
parent::__construct($path, $parents);
|
|
|
|
$this->value = $this->uri;
|
|
}
|
|
|
|
protected function getFilename($file)
|
|
{
|
|
return DauxHelper::pathinfo($file)['filename'];
|
|
}
|
|
}
|