1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

Admin area tool tips simplified to a single location. Pref simplified to Enable/Disable. Fixed flip-switch 'e-expandit' failures in Admin > Prefs.

This commit is contained in:
Cameron
2021-02-12 12:19:58 -08:00
parent b7b2a02509
commit 2bf5ee3909
15 changed files with 147 additions and 263 deletions

View File

@@ -455,11 +455,10 @@ e107::css('inline',"
</tr>
<tr>
<td>".LAN_TYPE."".$frm->help(FORLAN_2, 'before')."</td>
<td>".LAN_TYPE."".$frm->help(FORLAN_2)."</td>
<td>
".$frm->radio('prune_type','delete',false, array('label'=>FORLAN_89)).
$frm->radio('prune_type','make_inactive',true, array('label'=>FORLAN_90))."
".$frm->help(FORLAN_2, 'after')."
</td>
</tr>

View File

@@ -567,9 +567,9 @@ class import_main_ui extends e_admin_ui
$text .= "
<tr>
<td>".LAN_CONVERT_38."".$frm->help(LAN_CONVERT_39, 'before')."</td>
<td>".LAN_CONVERT_38."".$frm->help(LAN_CONVERT_39)."</td>
<td>".$frm->radio_switch('import_delete_existing_data', $_POST['import_delete_existing_data'])."
".$frm->help(LAN_CONVERT_39, 'after')."</td>
</td>
</tr>";
//TODO

View File

@@ -417,10 +417,11 @@ class social_ui extends e_admin_ui
$text2 .= "
<tr>
<td><label for='".$text_label."'>".LAN_SOCIAL_ADMIN_11." ".$var['label']." ".LAN_SOCIAL_ADMIN_12."</label>".$frm->help($help, 'before')."</td>
<td><label for='".$text_label."'>".LAN_SOCIAL_ADMIN_11." ".$var['label']." ".LAN_SOCIAL_ADMIN_12."</label>".
$frm->help($help)."</td>
<td>
".$frm->text($keypref, varset($pref['xurl'][$k]), false, $opts).
$frm->help($help, 'after')."
"
</td>
</tr>
";