This repository was archived by the owner on May 19, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 66
77/*
88 * Integrate a Content from App-Arena App-Manager
9- * Three-Arrays of Content-Elements are available
10- * 1. $global->app['content'] --> All content elements
11- * 2. $global->app['config'] --> All configuration values
12- * 3. $global->app['content'] --> All Design elements
13- * The name in the second bracket is the "identifier" which has been setup in App-Manager.
9+ * Four Arrays of Content-Elements are available
10+ * 1. $global->app['instance'] --> All Instance Base Data
11+ * 2. $global->app['content'] --> All content elements
12+ * 3. $global->app['config'] --> All configuration values
13+ * 4. $global->app['design'] --> All Design elements
14+ * The name in the second bracket is the "identifier" which has been setup in App-Manager.
15+ * E.g. echo $global->app['content']['home']; --> shows the App-Manager content-element with the identifier "home"
16+ * To show all available data just uncomment the following line
1417 */
15- $ global ->app [ ' content ' ][ ' content_test ' ] ;
18+ //echo '<h1>All available App-Arena data</h1><pre>', print_r( $global->app), '</pre>' ;
1619
17- // To show all available data just uncomment the following line
18- echo '<pre> ' , print_r ($ global ->app ), '</pre> ' ;
20+ echo $ global ->app ['content ' ]['home ' ];
1921
2022// Include Footer Part
2123include 'footer.php ' ;
You can’t perform that action at this time.
0 commit comments