stag / piha
There is no license information available for the latest version (dev-master) of this package.
Piha php micro framework
dev-master
2023-08-15 12:31 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpdocumentor/phpdocumentor: 2.*
- phpunit/dbunit: >=1.2
- phpunit/php-invoker: *
- phpunit/phpunit: 3.7.*
- phpunit/phpunit-selenium: >=1.2
- phpunit/phpunit-story: *
This package is auto-updated.
Last update: 2024-10-15 15:10:02 UTC
README
This framework work on PHP 5.3+ or PHP 8.2 and MySQL (Bitrix as optional). As optional you can include this framework as library to your project.
Fast start
- Clone to directory mysite/piha like install path.
- Run sudo chown -R www-data:www-data mysite if need, because we need right to create assets directory.
For apache2 ypu can set it in /etc/apache2/envvars
export APACHE_RUN_USER=www-data export APACHE_RUN_GROUP=www-data
For php sessions:
chown -R www-data:www-data /var/lib/php/sessions
- Run mysite/piha/demo.sh and open mysite like your site.
Features
1) Own fast and simple ORM and SQL builder. With many features.$q = new CQuery("tableName", ["ID", "NAME", "CODE"]); $q->all("ID", "CODE"); // group by CODE class MyModel { public $_name = 'tableName'; public $_columns = [ "ID" => ["type"=>"pk"], "NAME" => ["type"=>"string"], "CODE" => ["type" =>"string"] ] } MyModel::GetCode(1); MyModel::q()->where(1)->one("CODE"); MyModel::q()->where(["ID" => 1])->select("ID")->one("CODE"); // equal results // Simple access MyModel::q(); //CQuery MyModel::schema(); // CMigration MyModel::m(); // CModel
- Simple forms and model forms with autocomplete and html5 support
// in controller $form = CForm::post('MyForm'); if ($form->isSubmit()) { echo $form->getValue("DATE_FROM"); } // in view echo $form->start(["action" => $this->url()]), $form->text(["NAME" => "TITLE"]), $form->date(["NAME" => "DATE_FROM"]), $form->submit(["value" => "Search"]), $form->end();