15 lines
229 B
PHP
15 lines
229 B
PHP
<?php
|
|
|
|
namespace Thelia\Model;
|
|
|
|
use Thelia\Model\Base\Base;
|
|
|
|
class Config extends Base
|
|
{
|
|
|
|
public function read($search, $default)
|
|
{
|
|
return $this->db->config()->where("name",$search)->fetch()?:$default;
|
|
}
|
|
}
|