Beispiel #1
0
* Gnkam Univ Savoie Edt 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Gnkam Univ Savoie Edt.  If not, see <http://www.gnu.org/licenses/>.
*/
require_once __DIR__ . '/../vendor/autoload.php';
use Gnkam\Univ\Savoie\Edt\Formalizer;
##################
# Example of use #
##################
# Set headers
header('Content-Type: application/json');
# Cache link
$cacheLink = __DIR__ . '/cache';
# Create cache dir if not exists
if (!is_dir($cacheLink)) {
    if (!mkdir($cacheLink)) {
        echo json_encode('error', 'Impossible to create cache');
        return;
    }
}
# 6 Hours update
$update = 6 * 60 * 60;
# Formalize Data
$formalizer = new Formalizer($cacheLink, $update, 2);
$json = $formalizer->serviceGroup(4336);
# Show json
echo json_encode($json);
Beispiel #2
0
* Gnkam Univ Savoie Edt 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Gnkam Univ Savoie Edt.  If not, see <http://www.gnu.org/licenses/>.
*/
require_once __DIR__ . '/../vendor/autoload.php';
use Gnkam\Univ\Savoie\Edt\Formalizer;
##################
# Example of use #
##################
# Set headers
header('Content-Type: application/json');
# Cache link
$cacheLink = __DIR__ . '/cache';
# Create cache dir if not exists
if (!is_dir($cacheLink)) {
    if (!mkdir($cacheLink)) {
        echo json_encode('error', 'Impossible to create cache');
        return;
    }
}
# 6 Hours update
$update = 6 * 60 * 60;
# Formalize Data
$formalizer = new Formalizer($cacheLink, $update, 2);
$json = $formalizer->serviceTree();
# Show json
echo json_encode($json);