Elgg
  • Getting Started
    • Features
    • Bundled plugins
    • License
    • Installation
    • Developer Overview
  • Administrator Guides
    • Getting Started
    • Upgrading Elgg
    • Plugins
    • Performance
    • Cron
    • Backup and Restore
    • Duplicate Installation
    • Getting Help
  • Developer Guides
    • Don’t Modify Core
    • Plugins
    • Plugin coding guidelines
    • Accessibility
    • Ajax
    • Authentication
    • Context
    • Database
    • Forms + Actions
    • Helper functions
    • Internationalization
    • JavaScript
    • Menus
    • Notifications
    • Page handler
    • Routing
    • Services
    • Page ownership
    • Permissions Check
    • Plugin settings
    • River
    • Routing
    • Themes
    • Views
    • Widgets
    • Walled Garden
    • Web services
    • Upgrading Plugins
    • List of events in core
    • List of plugin hooks in core
  • Tutorials
    • Hello world
    • Customizing the Home Page
    • Building a Blog Plugin
    • Integrating a Rich Text Editor
    • Basic Widget
  • Design Docs
    • Actions
    • Database
    • Events and Plugin Hooks
    • Internationalization
    • AMD
    • Security
    • Loggable
  • Contributor Guides
    • Translations
    • Reporting Issues
    • Writing Code
    • Adding a Service to Elgg
    • Writing Documentation
    • Internationalizing documentation
    • Becoming a Financial Supporter
    • Release Process Workflow
  • Appendix
    • FAQs and Other Troubleshooting
    • Roadmap
    • Release Policy
    • Support policy
    • History
 
Elgg
  • Docs »
  • Developer Guides »
  • Views »
  • Page/elements/foot vs footer
  • Edit on GitHub

Page/elements/foot vs footerΒΆ

page/elements/footer is the content that goes inside this part of the page:

<div class="elgg-page-footer">
        <div class="elgg-inner">
                <!-- page/elements/footer goes here -->
        </div>
</div>

It’s content is visible to end users and usually where you would put a sitemap or other secondary global navigation, copyright info, powered by elgg, etc.

page/elements/foot is inserted just before the ending </body> tag and is mostly meant as a place to insert scripts that don’t already work with elgg_register_js(array('location' => 'footer')); or elgg_require_js('amd/module');. In other words, you should never override this view and probably don’t need to extend it either. Just use the elgg_*_js functions instead

Next Previous

© Copyright 2013, Various.

Built with Sphinx using a modified version of the Read the Docs theme.