<!doctype html>
<html lang="es">
    <head>
        <meta charset="UTF-8" />
        <meta description="Admin de mapas" />
        <title>Documentacion Layouts</title>
        <style type="text/css">
        </style> 
    </head>
	<body>
	<?php 
include "funciones.php";
$url = getMainDir() . "";
$url = "/nfscluster/televisainternacional/";
if (file_exists($url)) {
    $directorio = opendir($url);
    while ($archivo = readdir($directorio)) {
        if ($archivo != "." && $archivo != ".." && $archivo != "thumb.db") {
            if (is_dir($url . $archivo)) {
                echo "Carpeta: " . $archivo . " <br>";
                echo "* DescripciĆ³n: <br>";
                echo "* Estatus: <br>";
                $directorio2 = opendir($url . $archivo . "/");
                while ($archivo2 = readdir($directorio2)) {
                    if ($archivo2 != "." && $archivo2 != ".." && $archivo2 != "thumb.db") {
                        if (is_dir($url . $archivo . "/" . $archivo2)) {
                            echo "+ " . $archivo2 . " -> <br>";
                            if (is_dir($url . $archivo . "/" . $archivo2)) {
                                //echo "" . $archivo2 ."<br>";
                                $directorio3 = opendir($url . $archivo . "/" . $archivo2);
                                while ($archivo3 = readdir($directorio3)) {
Example #2
0
<!doctype html>
<html lang="es">
    <head>
        <meta charset="UTF-8" />
        <meta description="Admin de mapas" />
        <title>Documentacion Models</title>
        <style type="text/css">
        </style> 
    </head>
	<body>
	<?php 
include "funciones.php";
$cadena = "function ";
$varcad = "protected ";
$arrNombresFunc = array();
$url = getMainDir() . "application/models/";
if (file_exists($url)) {
    $directorio = opendir($url);
    //ruta actual
    while ($archivo = readdir($directorio)) {
        if ($archivo != "." && $archivo != ".." && $archivo != "thumb.db") {
            $owner = "";
            $clss = str_ireplace(".php", "", $archivo);
            $create_date = traduceFecha(date("F d Y.", filectime($url . $archivo)));
            $mod_date = traduceFecha(date("F d Y.", filemtime($url . $archivo)));
            echo "<br><hr><br>Archivo: <b>" . $archivo . "</b><br>";
            echo "* Author: usuario < *****@*****.** > <br>";
            echo "* Type: Class " . "<br>";
            echo "* Description: Class " . $clss . "<br>";
            //echo "* Creation Date: ".$create_date."<br>";
            echo "* Last Modification Date: " . $mod_date . "<br>";
Example #3
0
        <meta charset="UTF-8" />
        <meta description="Admin de mapas" />
        <title>Documentacion</title>
        <style type="text/css">
        h1,h2,h3,h4,h5 {font-size: 12px;}
        h1 {margin: 0px 0px 0px 0px; padding:0;} h1 p {margin: 0px 0px 0px 0px; padding:0;}
        h2 {margin: 0px 0px 0px 0px; padding:0;} h2 p {margin: 0px 0px 0px 10px; padding:0;}
        h3 {margin: 0px 0px 0px 0px; padding:0;} h3 p {margin: 0px 0px 0px 20px; padding:0;}
        h4 {margin: 0px 0px 0px 0px; padding:0;} h4 p {margin: 0px 0px 0px 30px; padding:0;}
        </style> 
    </head>
	<body>
	<?php 
include "funciones.php";
$cadena = "function ";
$url = getMainDir() . "public/";
if (file_exists($url)) {
    $directorio = opendir($url);
    //ruta actual
    while ($archivo = readdir($directorio)) {
        if ($archivo != "." && $archivo != ".." && $archivo != "thumb.db") {
            $sdir = $url . $archivo . "/";
            echo "<h1><p>" . $archivo . "</p></h1>";
            if (is_dir($sdir)) {
                $sbdirec = opendir($sdir);
                //ruta actual
                while ($ssdir = readdir($sbdirec)) {
                    if ($ssdir != "." && $ssdir != ".." && $ssdir != "thumb.db") {
                        echo "<h2><p>- " . $ssdir . "</p></h2>";
                        $sbdir = $url . $archivo . "/" . $ssdir . "/";
                        if (is_dir($sbdir)) {
Example #4
0
<!doctype html>
<html lang="es">
    <head>
        <meta charset="UTF-8" />
        <meta description="Admin de mapas" />
        <title>Documentacion</title>
        <style type="text/css">
        </style> 
    </head>
	<body>
	<?php 
include "funciones.php";
$cadena = "function ";
$url = getMainDir() . "application/controllers/";
if (file_exists($url)) {
    $directorio = opendir($url);
    //ruta actual
    while ($archivo = readdir($directorio)) {
        if ($archivo != "." && $archivo != ".." && $archivo != "thumb.db") {
            $axo = date("Y", filemtime($url . $archivo));
            $mes = date("m", filemtime($url . $archivo));
            if ($axo >= 2014) {
                //$owner = fileowner($url.$archivo);
                $clss = str_ireplace("Controller.php", "", $archivo);
                $clss = str_ireplace(".php", "", $archivo);
                $create_date = traduceFecha(date("F d Y.", filectime($url . $archivo)));
                $mod_date = traduceFecha(date("F d Y.", filemtime($url . $archivo)));
                echo "<br><hr><br>Archivo: <b>" . $archivo . "</b><br>";
                echo "* Author: usuario < *****@*****.** > <br>";
                echo "* Type: Class Controller" . "<br>";
                echo "* Description: Class " . $clss . "<br>";