Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/classes/Model/Kitchen.php
<?php defined('SYSPATH') or die('No direct access allowed.');

class Model_Kitchen extends ORM {
    public static function get_id($id = null)
    {

        $kitchen = ORM::factory('Kitchen')
				->where('title','=', $id)
				->find();

		return $kitchen->id;
		
		
    }
  
public static function get_title($id = null)
    {

        $kitchen = ORM::factory('Kitchen', $id);

		return $kitchen->title;
    }
}