fixed in Item: void Item::link(Ezc::FunInfo<HtmlTextStream> & env) now returns a correct directory for the item (before the current directory was returned)
added to Item: void Item::dir_link(Ezc::FunInfo<HtmlTextStream> & env) added to WinixModel: Dirs * get_dirs(); Mounts * get_mounts(); Users * get_users(); Groups * get_groups(); SLog * get_session_logger(); // not finished yet
This commit is contained in:
@@ -45,6 +45,11 @@ namespace Winix
|
||||
class Config;
|
||||
class Request;
|
||||
class Log;
|
||||
class Dirs;
|
||||
class Mounts;
|
||||
class Users;
|
||||
class Groups;
|
||||
class SLog;
|
||||
|
||||
|
||||
class WinixModel : public morm::Model
|
||||
@@ -54,7 +59,11 @@ public:
|
||||
Config * get_config();
|
||||
Request * get_request();
|
||||
Log * get_logger();
|
||||
|
||||
Dirs * get_dirs();
|
||||
Mounts * get_mounts();
|
||||
Users * get_users();
|
||||
Groups * get_groups();
|
||||
SLog * get_session_logger(); // FIXME always return null at the moment, should be set when a new request is created and clear at the end of a request
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user