PHP Classes

v3sdk: Store and retrieve objects in V3ctor WareHouse

Recommend this page to a friend!
  Info   Documentation   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 61 All time: 10,477 This week: 524Up
Version License PHP version Categories
v3sdk 1.0Custom (specified...5PHP 5, Web services
Description 

Author

This class can store and retrieve objects in V3ctor WareHouse.

It can send HTTP requests to V3ctor WareHouse Web server to perform several types of operations.

The class can take a array of properties and send requests to create a new object or update an existing object.

It can also delete objects by ID, as well retrieve objects by ID or a given property criteria.

Picture of Yorch Ponce
Name: Yorch Ponce <contact>
Classes: 6 packages by
Country: Mexico Mexico
Age: 43
All time rank: 205922 in Mexico Mexico
Week rank: 170 Up3 in Mexico Mexico Up
Innovation award
Innovation award
Nominee: 1x

Documentation

V3ctor Sdk

Description

V3ctor WareHouse PHP Sdk

Requirements

Developer Documentation

Execute phpdoc -d v3sdk/

Unit Test

For run Unit Test, complete information connection and execute the next commands: > phpunit V3SdkTest.php

Installation

Create file composer.json

{
    "require": {
    	"php": ">=5.4.0",
        "yorch/v3sdk" : "dev-master"
    }
}

Execute composer.phar install

Example


// Get Instance
$v3 = V3Sdk::getInstance('http://v3-yorch.rhcloud.com/', "lYltuNtYYbYRFC7QWwHn9b5aH2UJMk1234567890");

$data = array('DATA' => 111, 'NAME' => 'jorge');

// Insert new Object
$result = $v3->newObject('v3', $data);
var_dump($result);

// Get Id
$_id = V3Sdk::getId($result['_id']);

// Get Id for MySQL Case
//$_id = $result[0]->_id;

// Update Object
$data = array('DATA' => 111, 'NAME' => 'yorch');
$result = $v3->updateObject('v3', $_id, $data);

// Find By Id
$result = $v3->findObject('v3', $_id);
var_dump($result);

// Find By Pattern
$result = $v3->query('v3', $data);
var_dump($result);

// Foreach Result
foreach ($result as $item) {
	echo V3Sdk::getId($item->_id) . "\n";
}

// Delete Object
$result = $v3->deleteObject('v3', $_id);

Notes

V3Sdk PHP uses CURL for access to V3ctor WareHouse.

References

http://es.wikipedia.org/wiki/Singleton

P.D. Let's go play !!!


  Files folder image Files (5)  
File Role Description
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License
Accessible without login Plain text file README.md Doc. Documentation
Plain text file V3Sdk.class.php Class Class source
Accessible without login Plain text file V3SdkTest.php Test Unit test script

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:61
This week:0
All time:10,477
This week:524Up