|
@@ 90-92 (lines=3) @@
|
| 87 |
|
$temp = []; |
| 88 |
|
$filesRequired = $this->getFilesRequired(); |
| 89 |
|
$files = $this->getFiles(); |
| 90 |
|
foreach ($filesRequired as $i) |
| 91 |
|
if (!is_array($i) && strpos($i, $_extenction) !== FALSE) |
| 92 |
|
$temp[] = $i; |
| 93 |
|
foreach ($this->modules as $i) |
| 94 |
|
$temp = array_merge( $temp, $i->$_function() ); |
| 95 |
|
foreach ($files as $i) |
|
@@ 95-97 (lines=3) @@
|
| 92 |
|
$temp[] = $i; |
| 93 |
|
foreach ($this->modules as $i) |
| 94 |
|
$temp = array_merge( $temp, $i->$_function() ); |
| 95 |
|
foreach ($files as $i) |
| 96 |
|
if (!is_array($i) && strpos($i, $_extenction) !== FALSE) |
| 97 |
|
$temp[] = $i; |
| 98 |
|
return $temp; |
| 99 |
|
} |
| 100 |
|
} |