Skip to content
This repository has been archived by the owner on Dec 6, 2017. It is now read-only.

Commit

Permalink
Added a README
Browse files Browse the repository at this point in the history
  • Loading branch information
iammerrick committed Apr 14, 2011
1 parent 078aa1e commit 69e8551
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
@@ -0,0 +1,31 @@
# Sleepy - A Restful Modeler

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





?>

0 comments on commit 69e8551

Please sign in to comment.