1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/classes/Model/Client.php
2014-02-02 10:43:51 +07:00

61 lines
1.2 KiB
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Client model.
* Client is just a subscriber at the moment.
* @package Models
* @author Oreolek
**/
class Model_Client extends ORM {
protected $_has_many = array(
'subscription' => array(
'model' => 'Subscription',
'through' => 'clients_subscriptions'
)
);
/**
* @return array validation rules
**/
public function rules()
{
return array(
'email' => array(
array('not_empty'),
array('email'),
array('min_length', array(':value', 5)),
),
'name' => array(
array('not_empty'),
array('min_length', array(':value', 5)),
),
);
}
/**
* Array of field labels.
* Used in forms.
**/
protected $_labels = array(
'email' => 'Email',
'name' => 'Name',
'token' => 'Subscription token'
);
public function customize()
{
$this->token = base64_encode(openssl_random_pseudo_bytes(32));
}
/**
* Search by name or email
**/
public function search($query)
{
$query = '%'.trim($query, '%').'%';
return $this
->where(DB::expr('LOWER(name)'), 'LIKE', strtolower($query))
->or_where(DB::expr('LOWER(email)'), 'LIKE', strtolower($query));
}
}