diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-05 23:31:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-05 23:31:47 +0000 |
commit | a7e426447b6d544b85acb7218e4dfb84de5ce36f (patch) | |
tree | bf515934f83985c90ad49d54cfad97d670712449 /documentation/theming/preview | |
parent | e1f29dc449b873f8e92340007ac5c57cc02af598 (diff) | |
download | elgg-a7e426447b6d544b85acb7218e4dfb84de5ce36f.tar.gz elgg-a7e426447b6d544b85acb7218e4dfb84de5ce36f.tar.bz2 |
using elgg-module-<type>
git-svn-id: http://code.elgg.org/elgg/trunk@8041 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/theming/preview')
-rw-r--r-- | documentation/theming/preview/objects.php | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/documentation/theming/preview/objects.php b/documentation/theming/preview/objects.php index f90009cab..fc3d3c532 100644 --- a/documentation/theming/preview/objects.php +++ b/documentation/theming/preview/objects.php @@ -24,16 +24,16 @@ $url = current_page_url(); <div class="pam"> <?php echo elgg_view('layout/objects/module', array( - 'title' => 'elgg-aside-module', + 'title' => 'elgg-module-aside', 'body' => $ipsum, - 'class' => 'elgg-aside-module', + 'class' => 'elgg-module-aside', )); ?> <?php echo elgg_view('layout/objects/module', array( - 'title' => 'elgg-popup-module', + 'title' => 'elgg-module-popup', 'body' => $ipsum, - 'class' => 'elgg-popup-module', + 'class' => 'elgg-module-popup', )); ?> </div> @@ -42,18 +42,9 @@ $url = current_page_url(); <div class="pam"> <?php echo elgg_view('layout/objects/module', array( - 'title' => 'elgg-group-module', + 'title' => 'elgg-module-info', 'body' => $ipsum, - 'class' => 'elgg-group-module', - )); - ?> - </div> - <div class="pam"> - <?php - echo elgg_view('layout/objects/module', array( - 'title' => 'elgg-info-module', - 'body' => $ipsum, - 'class' => 'elgg-info-module', + 'class' => 'elgg-module-info', )); ?> </div> |