Item class has been moved to a new directory 'models', a new class has been added: ItemContent
and same fields from Item were moved to ItemContent Item - id - parent_id - type (file, dir, symlink) - url - subject - template (html template) - sort_index - content_id ItemContent - id - ref -> references (renamed) - user_id - modification_user_id - group_id - privileges - date_creation - date_modification - guest_name - link_to - link_redirect - file_path - file_fs - file_type - file_size - has_thumb -> file_has_thumb (renamed) - hash -> file_hash (renamed) - hash_type -> file_hash_type (renamed) - content -> content_raw (renamed) - content_type -> content_raw_type (renamed) - content_parsed - content_parsed_type - meta - ameta -> meta_admin (renamed) - modify_index (removed) WIP: #4
This commit is contained in:
@@ -151,15 +151,15 @@ using namespace Menu;
|
||||
// (not implemented yet)
|
||||
|
||||
info.plugin->Assign(WINIX_FILE_REMOVED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_ADDED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_PREPARE_TO_REMOVE, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_ADDED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_PREPARE_TO_REMOVE, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_REMOVED, InvalidateCacheById);
|
||||
info.plugin->Assign(WINIX_FILE_ADDED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_FILE_ADDED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_FILE_CHANGED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_FILE_COPIED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_FILE_PREPARE_TO_MOVE, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_FILE_MOVED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_CONTENT_SORTED, InvalidateCacheByPointer);
|
||||
info.plugin->Assign(WINIX_FILE_MOVED, InvalidateCacheByPointerParent);
|
||||
info.plugin->Assign(WINIX_DIR_CONTENT_SORTED, InvalidateCacheByPointer);
|
||||
info.plugin->Assign(WINIX_PROCESS_REQUEST, ProcessRequest);
|
||||
|
||||
// !! IMPROVE ME
|
||||
|
||||
Reference in New Issue
Block a user