You are here

function entity_legal_page_build in Entity Legal 7

Same name and namespace in other branches
  1. 7.2 entity_legal.module \entity_legal_page_build()

Implements hook_page_build().

File

./entity_legal.module, line 299
Entity Legal module.

Code

function entity_legal_page_build(&$page) {
  $redirect_method = new EntityLegalMethodRedirect();
  $redirect_method
    ->execute();
  $popup_method = new EntityLegalMethodPopup();
  $popup_method
    ->execute();
}