abapGit/src/zabapgit_page_explore.prog.abap
sbcgua 51db93b499 html refactoring, render sequence refactoring
- 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
2017-01-07 09:50:37 +02:00

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