Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F785272
D45.id113.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 12, 8:32 AM
Size
882 B
Mime Type
text/x-diff
Expires
Thu, Feb 13, 8:32 AM (8 h, 9 m)
Engine
blob
Format
Raw Data
Handle
564316
Attached To
D45: INP-1410 - Change "adm_ListTabs" tag to respect value of section's "show_mode" parameter
D45.id113.diff
View Options
Index: core/units/admin/admin_tag_processor.php
===================================================================
--- core/units/admin/admin_tag_processor.php
+++ core/units/admin/admin_tag_processor.php
@@ -368,6 +368,15 @@
}
$tab_data =& $sections_helper->getSectionData($section_name);
+ $show_mode = isset($tab_data['show_mode']) ? $tab_data['show_mode'] : smNORMAL;
+ $debug_only = ($show_mode == smDEBUG) || ($show_mode == smSUPER_ADMIN);
+
+ if ( $show_mode == smHIDE
+ || ($debug_only && !$this->Application->isDebugMode())
+ ) {
+ continue;
+ }
+
$block_params['t'] = $tab_data['url']['t'];
$block_params['pass'] = $tab_data['url']['pass'];
$block_params['title'] = $tab_data['label'];
@@ -1115,4 +1124,4 @@
{
return $this->Application->isCachingType(CACHING_TYPE_MEMORY);
}
- }
\ No newline at end of file
+ }
Event Timeline
Log In to Comment