put save icon on all save buttons

This commit is contained in:
Uwe Steinmann 2013-04-19 15:22:25 +02:00
parent 7e200e8377
commit 9885e26f96
18 changed files with 20 additions and 20 deletions

View File

@ -225,7 +225,7 @@ function showAttributeDefinitions(selectObj) {
<tr> <tr>
<td></td> <td></td>
<td> <td>
<input type="submit" class="btn" value="<?php printMLText("save");?>"> <button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save");?></button>
</td> </td>
</tr> </tr>
</form> </form>

View File

@ -779,7 +779,7 @@ class SeedDMS_Bootstrap_Style extends SeedDMS_View_Common {
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button> <button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button>
<button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptCategories();"><?php printMLText("save") ?></button> <button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptCategories();"><i class="icon-save"></i> <?php printMLText("save") ?></button>
</div> </div>
</div> </div>
<?php <?php
@ -801,7 +801,7 @@ class SeedDMS_Bootstrap_Style extends SeedDMS_View_Common {
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button> <button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button>
<button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptKeywords();"><?php printMLText("save") ?></button> <button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptKeywords();"><i class="icon-save"></i> <?php printMLText("save") ?></button>
</div> </div>
</div> </div>
<?php <?php
@ -854,7 +854,7 @@ class SeedDMS_Bootstrap_Style extends SeedDMS_View_Common {
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button> <button class="btn btn-primary" data-dismiss="modal" aria-hidden="true"><?php printMLText("close") ?></button>
<button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptCategories();"><?php printMLText("save") ?></button> <button class="btn" data-dismiss="modal" aria-hidden="true" onClick="acceptCategories();"><i class="icon-save"></i> <?php printMLText("save") ?></button>
</div> </div>
</div> </div>
<?php <?php

View File

@ -129,7 +129,7 @@ function showCategories(selectObj) {
<input type="Hidden" name="action" value="editcategory"> <input type="Hidden" name="action" value="editcategory">
<input type="Hidden" name="categoryid" value="<?php echo $category->getID()?>"> <input type="Hidden" name="categoryid" value="<?php echo $category->getID()?>">
<input name="name" type="text" value="<?php echo htmlspecialchars($category->getName()) ?>">&nbsp; <input name="name" type="text" value="<?php echo htmlspecialchars($category->getName()) ?>">&nbsp;
<input type="submit" class="btn" value="<?php printMLText("save");?>"> <button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save");?></button>
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -126,7 +126,7 @@ function showKeywords(selectObj) {
<input type="hidden" name="action" value="editcategory"> <input type="hidden" name="action" value="editcategory">
<input type="hidden" name="categoryid" value="<?php echo $category->getID()?>"> <input type="hidden" name="categoryid" value="<?php echo $category->getID()?>">
<input name="name" type="text" value="<?php echo htmlspecialchars($category->getName()) ?>"> <input name="name" type="text" value="<?php echo htmlspecialchars($category->getName()) ?>">
<input type="submit" class="btn" value="<?php printMLText("save");?>"> <button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save");?></button>
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -65,7 +65,7 @@ class SeedDMS_View_EditAttributes extends SeedDMS_Bootstrap_Style {
} }
?> ?>
<tr> <tr>
<td colspan="2"><input type="submit" class="btn" value="<?php printMLText("save") ?>"></td> <td colspan="2"><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save") ?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -80,7 +80,7 @@ function checkForm()
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save") ?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save") ?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -128,7 +128,7 @@ function checkForm()
?> ?>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save") ?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -101,7 +101,7 @@ function checkForm()
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td><input class="btn" type="Submit" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -154,7 +154,7 @@ function checkForm()
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save") ?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save"); ?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -170,7 +170,7 @@ function showUser(selectObj) {
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -68,7 +68,7 @@ class SeedDMS_View_SetExpires extends SeedDMS_Bootstrap_Style {
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save") ?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -520,7 +520,7 @@ if(!is_writeable($settings->_configFilePath)) {
<?php <?php
if(is_writeable($settings->_configFilePath)) { if(is_writeable($settings->_configFilePath)) {
?> ?>
<input type="Submit" class="btn" value="<?php printMLText("save");?>" /> <button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button>
<?php <?php
} }
?> ?>

View File

@ -120,7 +120,7 @@ function showKeywords(selectObj) {
<input type="hidden" name="action" value="editcategory"> <input type="hidden" name="action" value="editcategory">
<input type="hidden" name="categoryid" value="<?php echo $category->getID()?>"> <input type="hidden" name="categoryid" value="<?php echo $category->getID()?>">
<input name="name" type="text" value="<?php echo htmlspecialchars($category->getName())?>"> <input name="name" type="text" value="<?php echo htmlspecialchars($category->getName())?>">
<input type="submit" class="btn" value="<?php printMLText("save");?>"> <button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button>
</form> </form>
</td> </td>
</tr> </tr>

View File

@ -528,7 +528,7 @@ function showUser(selectObj) {
?> ?>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -943,7 +943,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
?> ?>
<tr> <tr>
<td></td> <td></td>
<td><input type="Submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -159,7 +159,7 @@ function showWorkflowAction(selectObj) {
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</form> </form>
</table> </table>

View File

@ -219,7 +219,7 @@ function showWorkflow(selectObj) {
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@ -176,7 +176,7 @@ function showWorkflowState(selectObj) {
<tr> <tr>
<td></td> <td></td>
<td><input type="submit" class="btn" value="<?php printMLText("save");?>"></td> <td><button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save")?></button></td>
</tr> </tr>
</form> </form>
</table> </table>