footermap 8.x-1.2

Bug fixes

Changelog

footermap 7.x-1.3

Bug fixes
New features
Unsupported

Changelog

  • Bug fix: #2251103: link variables stripped
    • Change Record #2677074: New options element property added to footermap_item so that menu links with options are added correctly. Requires theme registry and block cache clear (automagically in Drupal update).

footermap 8.x-1.0

Bug fixes
New features

Changelog

  • Always generate footermap based on anonymous user and hide inaccessible links. This *could* be changed by overriding the footermap.anonymous_user service.
  • Convert footermap functions to methods on FootermapBlock plugin class with FootermapInterface interface for specific methods.
    • This means that you can create multiple instances of footermap blocks with different settings per block!
  • Convert theme rendering to Twig. It is a little bit more difficult to dig into the footermap array, but it is possible.

    footermap 8.x-1.0-rc1

    Bug fixes
    New features

    Changelog

    • Always generate footermap based on anonymous user and hide inaccessible links. This *could* be changed by overriding the footermap.anonymous_user service.
    • Convert footermap functions to methods on FootermapBlock plugin class with FootermapInterface interface for specific methods.
      • This means that you can create multiple instances of footermap blocks with different settings per block!
    • Convert theme rendering to Twig. It is a little bit more difficult to dig into the footermap array, but it is possible.

      footermap 8.x-1.x-dev

      Bug fixes

      Development branch for Drupal 8.x, Footermap 1.x

      Changelog

      • TBD

      footermap 7.x-1.1

      New features
      Bug fixes
      Unsupported

      I think 1.1-beta1 has been out for long enough so time to release the new version.

      footermap 7.x-1.1-beta1

      New features
      Bug fixes
      Unsupported

      Important Changes For 7.x-1.1

      Theming has changed again. The major change you will need to adapt to is that things are no longer done via theme_links directly. theme_footermap_item behaves similarly, but you now have a lot more flexibility with regard to changing the structure of the default footermap.

      footermap 7.x-1.0

      New features
      Bug fixes
      Unsupported

      Drupal 7 1.0 Release.

      • Rewrite and code cleanup based on recent Drupal 6 versions.
      • Menu headings are back (see Drupal 5).
      • No more legacy output. Footermap is purely block-based.
      • Numerous bug fixes (see previous beta releases and dev release).
      • Added help text to the settings page in admin/structure/footermap
      • Theme changes: output is cleaner. Check your classes in your theme while updating. CSS file included.

      footermap 7.x-1.0-beta2

      Bug fixes
      Unsupported

      Drupal 7 Beta

      Changes ported from Drupal 6 1.6 and 1.7:

      footermap 7.x-1.0-beta1

      New features
      Bug fixes
      Unsupported

      Drupal 7 Beta

      Changes ported from Drupal 6 1.6 and 1.7:

      footermap 6.x-1.6

      Bug fixes
      Unsupported

      Note: You should test before updating because of CSS changes and rewrite.

      footermap 6.x-1.6-beta3

      New features
      Bug fixes
      Unsupported

      Third iteration of 1.6 to improve issues related to new features.

      footermap 6.x-1.6-beta2

      New features
      Bug fixes
      Unsupported

      A very long-time incoming, too long. Lots of new features and fixes that made it over the year.

      footermap 7.x-1.x-dev

      Bug fixes
      • Drupal 7 Development Branch.

      Changelog

      • Bug fix: #2251103: link variables stripped
        • Change Record #2677074: New options element property added to footermap_item so that menu links with options are added correctly. Requires theme registry and block cache clear (automagically in Drupal update).

      footermap 5.x-2.0

      Unsupported

      The 5.x release of footermap includes:

      • new feature: recurse_limit and top_menu settings ported from DRUPAL-4-7 branch. The top_menu default is menu_primary_menu, which is normally 0.
      • database abstraction: should work in both mysql and postgresql
      • fixed mid issue for 5.x: still need to work on a dynamic method of grabbing this, then all versions are compatible.
      • removed useless $baseurl variable
      • new feature: caching. caches footermap
      • new feature: enabled menus. choose which top menus you want displayed.

      footermap 6.x-1.4

      New features
      Bug fixes
      Unsupported
      • Feature: Cache Support: You can enable cache support in footermap settings (admin/settings/footermap). It is recommended that you turn this on.
      • Bug Fix: Footermap works out of the box for drupal installations with db prefixes.
      • Removed permissions hook.
      • Added documentation to the tarball.

      footermap 6.x-1.3

      New features
      Unsupported

      This release introduces a couple of new feature ideas contributed by users:

      • Added a new configuration item : "Enabled Menus". You can now select branches of menus to specifically include. Currently this relies on comparisons in php due to a Drupal core restriction.
      • Modified the SQL query to grab the node.status if the menu link is a node. This way you do not need to disable the menu item for a node that you have unpublished. This release maintains compatibility with PostgreSQL.

      footermap 6.x-1.2

      Bug fixes
      Unsupported

      This fixes a few bugs in the last release that were not apparent on my test site.

      • Fixed the placeholder issue per bug issue.
      • Fixed reference passing so it doesn't spit out php warnings.

      footermap 6.x-1.1

      Unsupported

      This release contains a major change to styling as well as the framework.

      **bugged** use development version until next release.

      Changes:

      footermap 6.x-1.x-dev

      New features
      Bug fixes

      This is a development snapshot for drupal 6.x branch. All prior features should work.

      This branch has the latest features and optimizations (if any).

      footermap 5.x-1.2

      Bug fixes
      Unsupported

      Fixed div tag.
      Changed css style name from sitemap to footermap.

      note: do to my confusion with drupal's standard of cvs tags this is a mistake.

      footermap 4.7.x-1.x-dev

      New features
      Bug fixes

      This is the initial release for 4.7.x development.

    • fixed css bugs
    • removed useless $baseurl variable from earlier testing
    • New Feature: Recurse Limit & Top Level settings. The recurse limit limits the number of times the recursive function runs. The top level setting determines what mid to start from, which is by default menu_primary_menu (or 0).
    • New Feature: Caching. This enables caching of footermap. It will refresh the cache on settings changes and cache clear.
    • footermap 5.x-2.x-dev

      New features
      Bug fixes

      The 5.x release of footermap includes:

      • new feature: recurse_limit and top_menu settings ported from DRUPAL-4-7 branch. The top_menu default is menu_primary_menu, which is normally 0.
      • database abstraction: should work in both mysql and postgresql
      • fixed mid issue for 5.x: still need to work on a dynamic method of grabbing this, then all versions are compatible.
      • removed useless $baseurl variable
      • new feature: caching. caches footermap
      • new feature: enabled menus. choose which top menus you want displayed.
      Subscribe with RSS Subscribe to Releases for footermap: a footer site map