Source for file Interface_Model.php

Documentation is available at Interface_Model.php

  1. <?php
  2. /**
  3.  *    LAIKA FRAMEWORK Release Notes:
  4.  *
  5.  *    @filesource     Interface_Model.php
  6.  *
  7.  *    @version        0.1.0b
  8.  *    @package        Laika
  9.  *    @subpackage     core
  10.  *    @category       interface
  11.  *    @date           2012-05-18 21:20:17 -0400 (Fri, 18 May 2011)
  12.  *
  13.  *    @author         Leonard M. Witzel <witzel@post.harvard.edu>
  14.  *    @copyright      Copyright (c) 2012  Laika Soft <{@link http://oafbot.com}>
  15.  *
  16.  */
  17. /**
  18.  * Laika_Interface_Model interface.
  19.  *
  20.  * @interface
  21.  */
  22.  
  23.     public function dset($property,$value);
  24.     public function dget($property);
  25.     
  26.     public static function load($id);
  27.     public static function find($param,$value);
  28.     
  29.     public static function map_to_string($ignore_id);
  30.     public static function get_map();
  31.     
  32.     public static function add();
  33.     public static function delete($object);
  34.     
  35.     public static function count();
  36.     public static function first();
  37.     public static function last();
  38.     
  39.     public static function offset();
  40.     public static function find_with_offset($params,$offset,$limit);
  41.     public static function paginate();
  42.     
  43.     public static function collection($array);
  44.     public static function accessible();
  45.  
  46. }

Documentation generated on Sat, 19 May 2012 02:17:01 -0400 by phpDocumentor 1.4.4