admin meta information added: option "a" to meta winix function editing admin meta information changed: now if you don't have write access to an item you can't see the meta information previous if you had read access you could have seen them added: in plugin ticket and thread support for 'closing' (ticket, thread) (this is only logic, we need some html yet) added: some ezc function for getting meta/admin meta information (for the current item and the last directory) git-svn-id: svn://ttmath.org/publicrep/winix/trunk@907 e52654a7-88a9-db11-a3e9-0013d4bc506e
54 lines
829 B
C++
Executable File
54 lines
829 B
C++
Executable File
/*
|
|
* This file is a part of Winix
|
|
* and is not publicly distributed
|
|
*
|
|
* Copyright (c) 2012, Tomasz Sowa
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef headerfile_winix_functions_env
|
|
#define headerfile_winix_functions_env
|
|
|
|
#include "functionbase.h"
|
|
#include "space/spaceparser.h"
|
|
|
|
|
|
namespace Fun
|
|
{
|
|
|
|
|
|
class Env : public FunctionBase
|
|
{
|
|
public:
|
|
|
|
Env();
|
|
|
|
bool EditAdminEnv(long user_id, const std::wstring & env_str, bool use_ses_log = false);
|
|
bool EditEnv(long user_id, const std::wstring & env_str, bool use_ses_log = false);
|
|
|
|
bool HasAccess();
|
|
void MakePost();
|
|
|
|
// used mainly by templates
|
|
// can return a null pointer
|
|
User * GetUser();
|
|
|
|
private:
|
|
|
|
PT::SpaceParser conf_parser;
|
|
PT::Space space;
|
|
User * puser;
|
|
size_t req_id;
|
|
|
|
bool Parse(const std::wstring & env_str);
|
|
void SaveEnv();
|
|
|
|
|
|
};
|
|
|
|
|
|
} // namespace
|
|
|
|
#endif
|