triplei / c5_base_model
A base model class for interacting with the database
1.0.1
2017-02-20 20:53 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-01-20 09:14:32 UTC
README
A base model with some helpful functionality for interacting with database records in concrete5 7+
basic usage:
use TripleI\C5BaseModel\BaseModel class Widget extends BaseModel { /** * @var string * @Column(type="string", nullable=true) */ protected $name; /** * @var string * @Column(type="text", nullable=true) */ protected $description; } $widget = new Widget(); $widget->name = 'testing'; $widget->save(); $widget2 = new Widget(); $widget->setData( [ 'name' => 'widget name', 'description' => 'description here' ] ); $widget->save(); $allWidgets = Widget::getAll(); $oddWidgets = Widget::loadByIDs([1, 3, 5]); $singleWidget = Widget::getByID(1); $singleWidget->destroy();