daux.io/libs/Tree/Content.php
Stéphane Goetz ecd5efe758 Extract tree builder
Add related files directly in the documentation
2015-07-20 20:49:09 +02:00

20 regels
407 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) {
$file = DauxHelper::pathinfo($file);
return $file['filename'];
}
}