Moved content_types and content_type_webform_managers from CMS_RESPONSE to CMS_API.
Updated the way to output content (node, ...) to html page.
See CMS_CONTENT_TYPE_WEBFORM_MANAGER.append_cointent_as_html_to (...).
Added notion of "teaser" (short version of the content), as opposed to full content.
One can use CMS_API.html_encoder ... when possible, same for `formats', ...
Added bridge from CMS_MODULE_API to CMS_API's encoders.
Added new CMS_TAXONOMY_HOOK used to retrieve list of content associated with a specific term.
Moved up to CMS_RESPONSE a few features which was available only in specific descendants.
Added /taxonomy/term/{termid} implementation.
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
note
|
|
description: "[
|
|
Summary description for {CMS_HOOK_AUTO_REGISTER}.
|
|
When inheriting from this class, the declared hooks are automatically
|
|
registered, otherwise, each descendant has to add it to the cms service
|
|
itself.
|
|
]"
|
|
date: "$Date: 2014-11-13 19:34:00 +0100 (jeu., 13 nov. 2014) $"
|
|
revision: "$Revision: 96086 $"
|
|
|
|
deferred class
|
|
CMS_HOOK_AUTO_REGISTER
|
|
|
|
inherit
|
|
CMS_HOOK
|
|
|
|
feature -- Hook
|
|
|
|
auto_subscribe_to_hooks (a_hooks: CMS_HOOK_CORE_MANAGER)
|
|
do
|
|
if attached {CMS_HOOK_MENU_SYSTEM_ALTER} Current as h_menu_system_alter then
|
|
a_hooks.subscribe_to_menu_system_alter_hook (h_menu_system_alter)
|
|
end
|
|
if attached {CMS_HOOK_MENU_ALTER} Current as h_menu_alter then
|
|
a_hooks.subscribe_to_menu_alter_hook (h_menu_alter)
|
|
end
|
|
if attached {CMS_HOOK_BLOCK} Current as h_block then
|
|
a_hooks.subscribe_to_block_hook (h_block)
|
|
end
|
|
if attached {CMS_HOOK_FORM_ALTER} Current as h_form then
|
|
a_hooks.subscribe_to_form_alter_hook (h_form)
|
|
end
|
|
if attached {CMS_HOOK_VALUE_TABLE_ALTER} Current as h_value then
|
|
a_hooks.subscribe_to_value_table_alter_hook (h_value)
|
|
end
|
|
if attached {CMS_HOOK_RESPONSE_ALTER} Current as h_resp then
|
|
a_hooks.subscribe_to_response_alter_hook (h_resp)
|
|
end
|
|
end
|
|
|
|
note
|
|
copyright: "2011-2015, Jocelyn Fiat, Javier Velilla, Eiffel Software and others"
|
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
|
end
|