mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 12:20:44 +02:00
media-picker work. Issue #6 Removed '...' from LAN_SELECT and added manually where appropriate.
This commit is contained in:
@@ -29,7 +29,7 @@ if (ADMIN == TRUE)
|
||||
|
||||
$amtext = "<div class='text-center' style='text-align:center'>
|
||||
<select name='activate' onchange='urljump(this.options[selectedIndex].value)' class='tbox form-control'>
|
||||
<option>".LAN_SELECT."</option>\n";
|
||||
<option>".LAN_SELECT."...</option>\n";
|
||||
foreach ($array_functions as $link_value)
|
||||
{
|
||||
$amtext .= render_admin_links($link_value['link'], $link_value['title'], $link_value['perms']);
|
||||
|
@@ -528,7 +528,7 @@ class banner_form_ui extends e_admin_form_ui
|
||||
$text = '';
|
||||
if (count($this->clients))
|
||||
{
|
||||
$text = $frm->select('banner_clientname_sel',$this->clients, $curVal,'', LAN_SELECT);
|
||||
$text = $frm->select('banner_clientname_sel',$this->clients, $curVal,'', LAN_SELECT."...");
|
||||
$text .= $frm->text('banner_clientname','','',array('placeholder'=> 'Or enter a new client'));
|
||||
}
|
||||
else
|
||||
@@ -611,7 +611,7 @@ class banner_form_ui extends e_admin_form_ui
|
||||
case 'write': // Edit Page
|
||||
if (count($this->campaigns))
|
||||
{
|
||||
$text = $frm->select('banner_campaign_sel',$this->campaigns, $curVal,'',LAN_SELECT);
|
||||
$text = $frm->select('banner_campaign_sel',$this->campaigns, $curVal,'',LAN_SELECT."...");
|
||||
$text .= $frm->text('banner_campaign','','',array('size'=>'xlarge', 'class'=>'e-hideme','placeholder'=> 'Enter a campaign name'));
|
||||
}
|
||||
else
|
||||
@@ -1030,7 +1030,7 @@ if ($action == "create")
|
||||
|
||||
if (count($campaigns))
|
||||
{
|
||||
$text .= $frm->select('banner_campaign_sel',$campaigns,$_POST['banner_campaign'],'',LAN_SELECT);
|
||||
$text .= $frm->select('banner_campaign_sel',$campaigns,$_POST['banner_campaign'],'',LAN_SELECT."...");
|
||||
$text .= $frm->text('banner_campaign','','',array('placeholder'=> 'Or enter a new campaign'));
|
||||
}
|
||||
else
|
||||
@@ -1048,7 +1048,7 @@ if ($action == "create")
|
||||
|
||||
if (count($clients))
|
||||
{
|
||||
$text .= $frm->select('banner_client_sel',$clients, $_POST['client_name'],'', LAN_SELECT);
|
||||
$text .= $frm->select('banner_client_sel',$clients, $_POST['client_name'],'', LAN_SELECT."...");
|
||||
$text .= $frm->text('client_name','','',array('placeholder'=> 'Or enter a new client'));
|
||||
|
||||
|
||||
|
@@ -501,7 +501,7 @@ class import_main_ui extends e_admin_ui
|
||||
$text .= "
|
||||
<tr>
|
||||
<td >$importType ".LAN_CONVERT_22."</td>
|
||||
<td >".$frm->select('dbParamDatabase', $databases, null, array('required'=>1), LAN_SELECT)."</td>
|
||||
<td >".$frm->select('dbParamDatabase', $databases, null, array('required'=>1), LAN_SELECT."...")."</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td >$importType ".LAN_CONVERT_23."</td>
|
||||
|
Reference in New Issue
Block a user