SideView example viewer finished.

This commit is contained in:
photonstorm
2013-10-23 02:14:51 +01:00
parent e5c3ca27c5
commit cab3b53cf0
12 changed files with 442 additions and 12 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
<?php
// Global
$files = dirToArray(dirname(__FILE__));
$total = 0;
@@ -33,7 +32,7 @@
function dirToArray($dir) {
$ignore = array('.', '..', 'html', 'assets', 'states');
$ignore = array('.', '..', '_site', 'assets', 'states');
$result = array();
$root = scandir($dir);
$dirs = array_diff($root, $ignore);