A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.2 KiB
65 lines
1.2 KiB
6 years ago
|
<?php
|
||
|
|
||
|
class Classes {
|
||
|
|
||
|
private $format;
|
||
|
|
||
|
public function __construct($format = NULL) {
|
||
|
|
||
|
$this->format = $format;
|
||
|
|
||
|
}
|
||
|
|
||
|
public function classes($origin = NULL){
|
||
|
$mClass = get_declared_classes();
|
||
|
|
||
|
$pegaKey = 0;
|
||
|
|
||
|
foreach($mClass as $key => $value){
|
||
|
if($value == 'startEngineExacTI'){
|
||
|
$pegaKey = $key;
|
||
|
}
|
||
|
if($pegaKey != 0 and $key > $pegaKey){
|
||
|
$pegaClass[] .= $value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if($this->format == "HTML" && $origin != 'intern'){
|
||
|
$pegaClassD = $pegaClass;
|
||
|
$pegaClass = '';
|
||
|
foreach($pegaClassD as $value) {
|
||
|
$pegaClass .= '<strong>'.$value.'</strong><br>';
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
return($pegaClass);
|
||
|
}
|
||
|
|
||
|
public function functions(){
|
||
|
$classes = $this->classes('intern');
|
||
|
|
||
|
$functions = array();
|
||
|
|
||
|
foreach($classes as $key => $value){
|
||
|
$functions = array_merge($functions, array($value => get_class_methods($value)));
|
||
|
}
|
||
|
|
||
|
if($this->format == "HTML"){
|
||
|
$functions = "";
|
||
|
foreach($classes as $value) {
|
||
|
$functions .= '<hr><strong>'.$value.'</strong><br>';
|
||
|
$subFunc = get_class_methods($value);
|
||
|
foreach($subFunc as $value) {
|
||
|
$functions .= '<em>'.$value.'</em><br>';
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $functions;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|