<?php
class Model_User extends Sleepy {
protected $_data_url = 'http://restfulserver.com/user/';
protected $_data = array(
'id' => '',
'username' => '',
'email' => '',
);
}
$user = Sleepy::factory('user');
$user->load(); // Runs a GET method on the $_data_url and updates the data.
$user->username = 'iammerrick'; // Change the user name.
$user->save(); // Posts the updated $_data via to the $_data_url
Sleep::factory('user')
->set_fields($_POST, array('username', 'email'))
->save(); // Posts the $_data via JSON to the $_data_url and sets $_data with the JSON response
?>
This repository was archived by the owner on Dec 6, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
iammerrick/Sleepy
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
A Restful Module For Kohana
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published