triplei / c5_base_model
A base model class for interacting with the database
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/triplei/c5_base_model
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-12-08 13:33:58 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();