1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-29 16:59:49 +02:00

- released "dibi 1.0"

- fixed FirePHP protocol bug
- DibiTable -> DibiTableX
This commit is contained in:
David Grudl
2008-10-30 13:07:47 +00:00
parent 8d063fe0a1
commit 901dc76103
6 changed files with 23 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
<h1>DibiTable demo</h1>
<h1>DibiTableX demo</h1>
<pre>
<?php
@@ -15,11 +15,11 @@ dibi::begin();
// autodetection: primary keys are customer_id, order_id, ...
DibiTable::$primaryMask = '%s_id';
DibiTableX::$primaryMask = '%s_id';
// table products
class Products extends DibiTable
class Products extends DibiTableX
{
// rely on autodetection...
// protected $name = 'products';