mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 21:08:01 +08:00

- refactor lcl_html_helper (renamed to lcl_html, additional methods) - icons rendered with lcl_html->icon - some common html chunks moved to lcl_gui_chunk_lib - lcl_gui_page_super renamed to lcl_gui_page - page structure rendering concentrated in lcl_gui_page->render
29 lines
856 B
ABAP
29 lines
856 B
ABAP
*&---------------------------------------------------------------------*
|
|
*& Include ZABAPGIT_PAGE_EXPLORE
|
|
*&---------------------------------------------------------------------*
|
|
|
|
CLASS lcl_gui_page_explore DEFINITION FINAL INHERITING FROM lcl_gui_page.
|
|
PUBLIC SECTION.
|
|
|
|
CONSTANTS c_explore_url TYPE string
|
|
VALUE 'http://larshp.github.io/abapGit/explore.html'.
|
|
|
|
METHODS constructor.
|
|
|
|
PROTECTED SECTION.
|
|
METHODS render_content REDEFINITION.
|
|
|
|
ENDCLASS. "lcl_gui_page_explore DEFINITION
|
|
|
|
CLASS lcl_gui_page_explore IMPLEMENTATION.
|
|
|
|
METHOD constructor.
|
|
super->constructor( ).
|
|
ms_control-redirect_url = c_explore_url.
|
|
ENDMETHOD. "constructor
|
|
|
|
METHOD render_content.
|
|
ASSERT 1 = 1. " Dummy
|
|
ENDMETHOD. "render_content.
|
|
|
|
ENDCLASS. "lcl_gui_page_explore IMPLEMENTATION |