[Redizajn 1KA] Popupi: Analize - Nastavitve (gear zgoraj)
This commit is contained in:
parent
a7be11f375
commit
0350367259
@ -700,26 +700,52 @@ class SurveyDataSettingProfiles {
|
|||||||
echo '<div id="dsp_cover_div"></div>'."\n";
|
echo '<div id="dsp_cover_div"></div>'."\n";
|
||||||
|
|
||||||
// div za kreacijo novega
|
// div za kreacijo novega
|
||||||
echo '<div id="newProfileDiv">'.$lang['srv_missing_profile_name'].': '."\n";
|
echo '<div id="newProfileDiv">';
|
||||||
echo '<input id="newProfileName" name="newProfileName" type="text" value="" size="45" />'."\n";
|
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="dataSettingProfileAction(\'do_create\'); return false;"><span>'.$lang['srv_analiza_arhiviraj_save'].'</span></a></span></span>'."\n";
|
echo '<div class="setting_holder">';
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="dataSettingProfileAction(\'cancel_create\'); return false;"><span>'.$lang['srv_close_profile'].'</span></a></span></span>'."\n";
|
|
||||||
echo '</div>'."\n";
|
echo '<div class="setting_item">';
|
||||||
|
echo '<label>'.$lang['srv_missing_profile_name'].':</label>';
|
||||||
|
echo '<input id="newProfileName" name="newProfileName" type="text" class="text large" value=""/>';
|
||||||
|
echo '</div>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '<div class="button_holder">';
|
||||||
|
echo '<button class="medium white-blue" onClick="dataSettingProfileAction(\'cancel_create\'); return false;">'.$lang['srv_close_profile'].'</button>';
|
||||||
|
echo '<button class="medium blue" onclick="dataSettingProfileAction(\'do_create\'); return false;">'.$lang['srv_analiza_arhiviraj_save'].'</button>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
// div za preimenovanje
|
// div za preimenovanje
|
||||||
echo '<div id="renameProfileDiv">'.$lang['srv_missing_profile_name'].': '."\n";
|
echo '<div id="renameProfileDiv">';
|
||||||
echo '<input id="renameProfileName" name="renameProfileName" type="text" value="' . $currentFilterProfile['name'] . '" size="45" />'."\n";
|
|
||||||
echo '<input id="renameProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '" />'."\n";
|
echo '<div class="setting_item">';
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="dataSettingProfileAction(\'do_rename\'); return false;"><span>'.$lang['srv_rename_profile_yes'].'</span></a></span></span>'."\n";
|
echo '<label>'.$lang['srv_missing_profile_name'].':</label>';
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="dataSettingProfileAction(\'cancel_rename\'); return false;"><span>'.$lang['srv_close_profile'].'</span></a></span></span>'."\n";
|
echo '<input id="renameProfileName" name="renameProfileName" type="text" value="' . $currentFilterProfile['name'] . '" class="text large"/>';
|
||||||
echo '</div>'."\n";
|
echo '<input id="renameProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '" />';
|
||||||
|
echo '</div>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '<div class="button_holder">';
|
||||||
|
echo '<button class="medium white-blue" onClick="dataSettingProfileAction(\'cancel_rename\'); return false;">'.$lang['srv_close_profile'].'</button>';
|
||||||
|
echo '<button class="medium blue" onclick="dataSettingProfileAction(\'do_rename\'); return false;">'.$lang['srv_rename_profile_yes'].'</button>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
// div za brisanje
|
// div za brisanje
|
||||||
echo '<div id="deleteProfileDiv">'.$lang['srv_missing_profile_delete_confirm'].': <b>' . $currentFilterProfile['name'] . '</b>?'."\n";
|
echo '<div id="deleteProfileDiv">';
|
||||||
echo '<input id="deleteProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '" />'."\n";
|
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="dataSettingProfileAction(\'do_delete\'); return false;"><span>'.$lang['srv_delete_profile_yes'].'</span></a></span></span>'."\n";
|
echo $lang['srv_missing_profile_delete_confirm'].': <span class="semi-bold">' . $currentFilterProfile['name'] . '</span>?';
|
||||||
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="dataSettingProfileAction(\'cancel_delete\'); return false;"><span>'.$lang['srv_close_profile'].'</span></a></span></span>'."\n";
|
echo '<input id="deleteProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '" />';
|
||||||
echo '</div>'."\n";
|
|
||||||
|
echo '<div class="button_holder">';
|
||||||
|
echo '<button class="medium white-blue" onClick="dataSettingProfileAction(\'cancel_delete\'); return false;">'.$lang['srv_close_profile'].'</button>';
|
||||||
|
echo '<button class="medium blue" onclick="dataSettingProfileAction(\'do_delete\'); return false;">'.$lang['srv_delete_profile_yes'].'</button>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Funkcija prikaze osnovnih informacije profila
|
/** Funkcija prikaze osnovnih informacije profila
|
||||||
|
Loading…
x
Reference in New Issue
Block a user