1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/models/cache/CacheDAO.php
2015-08-19 11:28:28 +02:00

63 lines
1.6 KiB
PHP

<?php
namespace modl;
class CacheDAO extends SQL {
function get($session, $key) {
$this->_sql = '
select * from cache
where
session = :session
and name = :name';
$this->prepare(
'Cache',
array(
'session' => $session,
'name' => $key
)
);
return $this->run('Cache', 'item');
}
function set(Cache $cache) {
$this->_sql = '
update cache
set data = :data,
timestamp = :timestamp
where session = :session
and name = :name';
$this->prepare(
'Cache',
array(
'session' => $cache->session,
'data' => $cache->data,
'timestamp' => $cache->timestamp,
'name' => $cache->name
)
);
$this->run('Cache');
if(!$this->_effective) {
$this->_sql = '
insert into cache
(session, name, data, timestamp)
values (:session, :name, :data, :timestamp)';
$this->prepare(
'Cache',
array(
'session' => $cache->session,
'name' => $cache->name,
'data' => $cache->data,
'timestamp' => $cache->timestamp
)
);
return $this->run('Cache');
}
}
}