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

class Model_Service extends ORM {

    public static function get_service_title($id = null)
    {
        $s = ORM::factory('Service')
				->where('id','=', $id)
				->find();

		return $s->title;
		
		
    }

}