function panels_page_load_include in Panels 6.2
Wrapper for panels_load_include() that specifically targets panels_page include files.
Parameters
string $include: The name of the panels_page include file, without the .inc extension.
12 calls to panels_page_load_include()
- panels_page_access_handler in panels_page/
panels_page.module - Check whether the current page request is allowed.
- panels_page_admin_load in panels_page/
panels_page.module - Menu loader for some panels_page admin screens. Loads the panels_page specified by the name arg, induces a 404 when a bad arg is provided.
- panels_page_advanced_form_submit in panels_page/
panels_page.admin.inc - Process submission of the panel page edit form.
- panels_page_context_form_submit in panels_page/
panels_page.admin.inc - Process submission of the panel page edit form.
- panels_page_edit_alternate in panels_page/
panels_page.admin.inc
File
- panels_page/
panels_page.module, line 474 - panels_page.module
Code
function panels_page_load_include($include) {
panels_load_include($include, 'panels_page/panels_page.');
}