PHP Classes
elePHPant
Icontem

v3sdk: Store and retrieve objects in V3ctor WareHouse

Recommend this page to a friend!
  Info   View files Documentation   View files View files (5)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2016-06-07 (4 months ago) RSS 2.0 feedNot enough user ratingsTotal: 57 This week: 2All time: 8,583 This week: 591Up
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
Innovation award
Innovation award
Nominee: 1x

Details

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  
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

 Version Control Unique User Downloads Download Rankings  
 100%
Total:57
This week:2
All time:8,583
This week:591Up