PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Yorch Ponce   V3ctor WareHouse   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: V3ctor WareHouse
Store and retrieve objects in MongoDB and MySQL
Author: By
Last change: composer, jsonp
Date: 5 years ago
Size: 829 bytes
 

Contents

Class file image Download
<?php
require 'config.php';
require
'vendor/autoload.php';

// For JavaScript SDK
header("Access-Control-Allow-Origin: *");

// Init Database Connection
V3WareHouse::getInstance("v3MongoDB", $hostname, $username, $password, $dbname, $port);

// Init Application
$app = new V3Application($dbname, $key);

// Add Custom Route
$app->addRoute('/openshift', function () {
               
$app = \Slim\Slim::getInstance();

               
$app->response()->header('Content-Type', 'application/json');
               
$app->response()->status(200);

               
$msg = array("msg" => "Hello localhost !!!");

               
$envvar = getenv('OPENSHIFT_MONGODB_DB_HOST');

                if (! empty(
$envvar))
                   
$msg = array("msg" => "Hello Openshift !!!");
               
                echo
json_encode($msg);
            });

// Start V3ctor Application
$app->start();

?>