21 lines
No EOL
373 B
PHP
21 lines
No EOL
373 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PagesModel extends Model
|
|
{
|
|
protected $table = 'pages';
|
|
|
|
public function getPage($slug = false)
|
|
{
|
|
if ($slug === false)
|
|
{
|
|
return $this->findAll();
|
|
}
|
|
|
|
return $this->asArray()
|
|
->where(['slug' => $slug])
|
|
->first();
|
|
}
|
|
|
|
} |