root / htmltest / sites / all / modules / media / templates / media-dialog-page.tpl.php @ a5572547
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file
|
5 |
* Default theme implementation to display a single Drupal page.
|
6 |
*
|
7 |
* Available variables:
|
8 |
*
|
9 |
* General utility variables:
|
10 |
* - $base_path: The base URL path of the Drupal installation. At the very
|
11 |
* least, this will always default to /.
|
12 |
* - $directory: The directory the template is located in, e.g. modules/system
|
13 |
* or themes/garland.
|
14 |
* - $is_front: TRUE if the current page is the front page.
|
15 |
* - $logged_in: TRUE if the user is registered and signed in.
|
16 |
* - $is_admin: TRUE if the user has permission to access administration pages.
|
17 |
*
|
18 |
* Site identity:
|
19 |
* - $front_page: The URL of the front page. Use this instead of $base_path,
|
20 |
* when linking to the front page. This includes the language domain or
|
21 |
* prefix.
|
22 |
* - $logo: The path to the logo image, as defined in theme configuration.
|
23 |
* - $site_name: The name of the site, empty when display has been disabled
|
24 |
* in theme settings.
|
25 |
* - $site_slogan: The slogan of the site, empty when display has been disabled
|
26 |
* in theme settings.
|
27 |
*
|
28 |
* Navigation:
|
29 |
* - $main_menu (array): An array containing the Main menu links for the
|
30 |
* site, if they have been configured.
|
31 |
* - $secondary_menu (array): An array containing the Secondary menu links for
|
32 |
* the site, if they have been configured.
|
33 |
* - $breadcrumb: The breadcrumb trail for the current page.
|
34 |
*
|
35 |
* Page content (in order of occurrence in the default page.tpl.php):
|
36 |
* - $title_prefix (array): An array containing additional output populated by
|
37 |
* modules, intended to be displayed in front of the main title tag that
|
38 |
* appears in the template.
|
39 |
* - $title: The page title, for use in the actual HTML content.
|
40 |
* - $title_suffix (array): An array containing additional output populated by
|
41 |
* modules, intended to be displayed after the main title tag that appears in
|
42 |
* the template.
|
43 |
* - $messages: HTML for status and error messages. Should be displayed
|
44 |
* prominently.
|
45 |
* - $tabs (array): Tabs linking to any sub-pages beneath the current page
|
46 |
* (e.g., the view and edit tabs when displaying a node).
|
47 |
* - $action_links (array): Actions local to the page, such as 'Add menu' on the
|
48 |
* menu administration interface.
|
49 |
* - $feed_icons: A string of all feed icons for the current page.
|
50 |
* - $node: The node object, if there is an automatically-loaded node
|
51 |
* associated with the page, and the node ID is the second argument
|
52 |
* in the page's path (e.g. node/12345 and node/12345/revisions, but not
|
53 |
* comment/reply/12345).
|
54 |
*
|
55 |
* Regions:
|
56 |
* - $page['help']: Dynamic help text, mostly for admin pages.
|
57 |
* - $page['highlight']: Items for the highlighted content region.
|
58 |
* - $page['content']: The main content of the current page.
|
59 |
* - $page['sidebar_first']: Items for the first sidebar.
|
60 |
* - $page['sidebar_second']: Items for the second sidebar.
|
61 |
* - $page['header']: Items for the header region.
|
62 |
* - $page['footer']: Items for the footer region.
|
63 |
*
|
64 |
* @see template_preprocess()
|
65 |
* @see template_preprocess_page()
|
66 |
* @see template_process()
|
67 |
*/
|
68 |
?>
|
69 |
|
70 |
<?php if (isset($messages)) { print $messages; } ?> |
71 |
<div id="media-browser-page-wrapper"> |
72 |
<div id="media-browser-page"> |
73 |
<div id="media-browser-tabset"> |
74 |
<div id="branding" class="clearfix"> |
75 |
<div>
|
76 |
<h1><?php print render($page['content']['system_main']['title']); ?></h1> |
77 |
</div>
|
78 |
<div id="media-tabs-wrapper"> |
79 |
<?php print render($page['content']['system_main']['tabset']['tabs']); ?> |
80 |
</div>
|
81 |
</div>
|
82 |
<?php print render($page['content']['system_main']['tabset']['panes']); ?> |
83 |
</div> <!-- /#media-tabs-set --> |
84 |
</div> <!-- /#media-browser-page --> |
85 |
</div> <!-- /#media-browser-page-wrapper --> |
86 |
|
87 |
<?php
|
88 |
hide($page['content']['system_main']['tabset']); |
89 |
hide($page['content']['system_main']['title']); |
90 |
print render($page['content']); |
91 |
?>
|