Source of file FoldersReferential.php
Size: 2,188 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Enums/FoldersReferential.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | <?php /* This file is part of NextDom. * * NextDom is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NextDom is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NextDom. If not, see <http://www.gnu.org/licenses/>. */ namespace NextDom\Enums; class FoldersReferential extends Enum { const NEXTDOMFOLDERS = [ 'api', 'assets', 'backup', 'core', 'data', 'docs', 'install', 'log', 'mobile', 'node_modules', 'plugins', 'public', 'scripts', 'src', 'tests', 'tmp', 'translations', 'vendor', 'views', 'var', '.github', '.sass-cache', '.git', '.idea']; const NEXTDOMFILES = ['cache.tar.gz', 'CHANGELOG.md', 'composer.json', 'composer.lock', 'COPYING', 'DB_backup.sql', 'index.php', 'LICENSE', 'manifest.json', 'manifest.webmanifest', 'mobile.manifest.php', 'package.json', 'package-lock.json', 'phpunit.xml.dist', 'README.md', 'robots.txt', '.travis.yml', '.htaccess', '.coveralls.yml', '.gitignore', '.sonarcloud.properties']; const PUBLICFOLDERS = ['css', 'icon', 'img', 'js', 'themes']; const PUBLICFILES = ['401.html','403.html','404.html','500.html', 'here.html']; const JEEDOMFOLDERS = ['3rdparty', 'core', 'data', 'desktop', 'install', 'mobile', 'script', '.github', '.sass-cache', '.git', '.idea']; const JEEDOMFILES = ['cache.tar.gz', 'composer.json', 'composer.lock', 'COPYING', 'Dockerfile', 'DB_backup.sql', 'health.sh', 'here.html', 'index.php', 'index-1.php', 'LICENSE', 'manifest.json', 'manifest.webmanifest', 'mobile.manifest.php', 'README.md', 'robots.txt', 'sick.php', '.htaccess', '.gitignore']; } |