From 155cf6aeea9ba7ecbc39face6442d3ce1b03ad8e Mon Sep 17 00:00:00 2001 From: Nils Schwabe Date: Wed, 4 Jun 2014 14:27:03 +0200 Subject: Add webinterface with functionallity --- .../lib/api/classDB_1_1SQL_1_1Session.html | 553 +++++++++++++++++++++ 1 file changed, 553 insertions(+) create mode 100644 management-interface/lib/api/classDB_1_1SQL_1_1Session.html (limited to 'management-interface/lib/api/classDB_1_1SQL_1_1Session.html') diff --git a/management-interface/lib/api/classDB_1_1SQL_1_1Session.html b/management-interface/lib/api/classDB_1_1SQL_1_1Session.html new file mode 100644 index 0000000..33f4381 --- /dev/null +++ b/management-interface/lib/api/classDB_1_1SQL_1_1Session.html @@ -0,0 +1,553 @@ + + + +
+ + + +|
+ Fat-Free Framework
+ 3.2.2
+
+
+ |
+
SQL-managed session handler. + More...
+
Inheritance diagram for DB\SQL\Session:+Public Member Functions | |
| open ($path, $name) | |
| close () | |
| read ($id) | |
| write ($id, $data) | |
| destroy ($id) | |
| cleanup ($max) | |
| csrf () | |
| ip () | |
| stamp () | |
| agent () | |
| __construct (\DB\SQL $db, $table='sessions', $force=TRUE) | |
Public Member Functions inherited from DB\SQL\Mapper | |
| dbtype () | |
| exists ($key) | |
| set ($key, $val) | |
| get ($key) | |
| clear ($key) | |
| type ($pdo) | |
| cast ($obj=NULL) | |
| select ($fields, $filter=NULL, array $options=NULL, $ttl=0) | |
| find ($filter=NULL, array $options=NULL, $ttl=0) | |
| count ($filter=NULL, $ttl=0) | |
| skip ($ofs=1) | |
| insert () | |
| update () | |
| erase ($filter=NULL) | |
| reset () | |
| copyfrom ($key, $func=NULL) | |
| copyto ($key) | |
| schema () | |
| fields ($adhoc=TRUE) | |
| __construct (\DB\SQL $db, $table, $fields=NULL, $ttl=60) | |
Public Member Functions inherited from DB\Cursor | |
| dbtype () | |
| cast ($obj=NULL) | |
| find ($filter=NULL, array $options=NULL, $ttl=0) | |
| count ($filter=NULL, $ttl=0) | |
| insert () | |
| update () | |
| copyfrom ($key, $func=NULL) | |
| copyto ($key) | |
| dry () | |
| findone ($filter=NULL, array $options=NULL, $ttl=0) | |
| paginate ($pos=0, $size=10, $filter=NULL, array $options=NULL, $ttl=0) | |
| load ($filter=NULL, array $options=NULL, $ttl=0) | |
| first () | |
| last () | |
| skip ($ofs=1) | |
| next () | |
| prev () | |
| save () | |
| erase () | |
| onload ($func) | |
| beforeinsert ($func) | |
| afterinsert ($func) | |
| oninsert ($func) | |
| beforeupdate ($func) | |
| afterupdate ($func) | |
| onupdate ($func) | |
| beforeerase ($func) | |
| aftererase ($func) | |
| onerase ($func) | |
| reset () | |
Public Member Functions inherited from Magic | |
| exists ($key) | |
| set ($key, $val) | |
| get ($key) | |
| clear ($key) | |
| offsetexists ($key) | |
| __isset ($key) | |
| offsetset ($key, $val) | |
| __set ($key, $val) | |
| offsetget ($key) | |
| __get ($key) | |
| offsetunset ($key) | |
| __unset ($key) | |
+Protected Attributes | |
| + | $sid |
| Session ID. | |
Protected Attributes inherited from DB\SQL\Mapper | |
| + | $db |
| PDO wrapper. | |
Protected Attributes inherited from DB\Cursor | |
| + | $query =array() |
| Query results. | |
+Additional Inherited Members | |
Public Attributes inherited from DB\SQL\Mapper | |
| + | $engine |
| Database engine. | |
| + | $source |
| SQL table. | |
| + | $table |
| SQL table (quoted) | |
| + | $_id |
| Last insert ID. | |
| + | $fields |
| Defined fields. | |
| + | $adhoc =array() |
| Adhoc fields. | |
| +const | E_Adhoc ='Unable to process ad hoc field %s' |
Public Attributes inherited from DB\Cursor | |
| + | $ptr =0 |
| Current position. | |
| + | $trigger =array() |
| Event listeners. | |
| +const | E_Field ='Undefined field %s' |
Protected Member Functions inherited from DB\SQL\Mapper | |
| factory ($row) | |
SQL-managed session handler.
+| DB\SQL\Session::__construct | +( | +\DB\SQL | +$db, | +
| + | + | + | $table = 'sessions', |
+
| + | + | + | $force = TRUE |
+
| + | ) | ++ |
Instantiate class
+| $db | object |
| $table | string |
| $force | bool |
| DB\SQL\Session::agent | +( | +) | ++ |
Return HTTP user agent
+| DB\SQL\Session::cleanup | +( | ++ | $max | ) | ++ |
Garbage collector
+| $max | int |
| DB\SQL\Session::close | +( | +) | ++ |
Close session
+| DB\SQL\Session::csrf | +( | +) | ++ |
Return anti-CSRF token
+| DB\SQL\Session::destroy | +( | ++ | $id | ) | ++ |
Destroy session
+| $id | string |
| DB\SQL\Session::ip | +( | +) | ++ |
Return IP address
+| DB\SQL\Session::open | +( | ++ | $path, | +
| + | + | + | $name | +
| + | ) | ++ |
Open session
+| $path | string |
| $name | string |
| DB\SQL\Session::read | +( | ++ | $id | ) | ++ |
Return session data in serialized format
+| $id | string |
| DB\SQL\Session::stamp | +( | +) | ++ |
Return Unix timestamp
+| DB\SQL\Session::write | +( | ++ | $id, | +
| + | + | + | $data | +
| + | ) | ++ |
Write session data
+| $id | string |
| $data | string |