diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-15 16:23:19 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-15 16:23:19 +0100 |
commit | c4a005a69a854682f064016d428d23e50c6e9dee (patch) | |
tree | 01ca79b09fb7ca7ad7c3be2ded4f5b323e5b3cb5 /app/class/wflywheel/repository.php | |
parent | fbe5d2beb2bcc7035edc19eb0343f0ee662ba5af (diff) | |
download | wcms-c4a005a69a854682f064016d428d23e50c6e9dee.tar.gz wcms-c4a005a69a854682f064016d428d23e50c6e9dee.zip |
Flywheel extension and custom json formatter
Diffstat (limited to 'app/class/wflywheel/repository.php')
-rw-r--r-- | app/class/wflywheel/repository.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/class/wflywheel/repository.php b/app/class/wflywheel/repository.php new file mode 100644 index 0000000..baad42e --- /dev/null +++ b/app/class/wflywheel/repository.php @@ -0,0 +1,30 @@ +<?php +namespace WFlywheel; + +class Repository extends \JamesMoss\Flywheel\Repository +{ + /** + * Get an array containing the path of all files in this repository + * + * @return array An array, item is a file + */ + public function getAllFiles() + { + $ext = $this->formatter->getFileExtension(); + $files = glob($this->path . DIRECTORY_SEPARATOR . '*.' . $ext); + return $files; + } + + /** + * Get an array containing the id of all files in this repository + * + * @return array An array, item is a id + */ + public function getAllIds() + { + $ext = $this->formatter->getFileExtension(); + return array_map(function($path) use ($ext) { + return $this->getIdFromPath($path, $ext); + }, $this->getAllFiles()); + } +} |