parent
eae3e134ff
commit
237ba65a20
@ -0,0 +1,21 @@ |
||||
../appinfo/app.php |
||||
../ajax/activation.php |
||||
../ajax/addbook.php |
||||
../ajax/addcard.php |
||||
../ajax/addproperty.php |
||||
../ajax/createaddressbook.php |
||||
../ajax/deletebook.php |
||||
../ajax/deleteproperty.php |
||||
../ajax/getdetails.php |
||||
../ajax/setproperty.php |
||||
../ajax/updateaddressbook.php |
||||
../lib/app.php |
||||
../templates/index.php |
||||
../templates/part.addcardform.php |
||||
../templates/part.chooseaddressbook.php |
||||
../templates/part.chooseaddressbook.rowfields.php |
||||
../templates/part.details.php |
||||
../templates/part.editaddressbook.php |
||||
../templates/part.property.php |
||||
../templates/part.setpropertyform.php |
||||
../templates/settings.php |
||||
@ -1,5 +1,5 @@ |
||||
<?php |
||||
|
||||
// FIXME: Make this readable. |
||||
echo "<td width=\"20px\"><input id=\"active_" . $_['addressbook']["id"] . "\" type=\"checkbox\" onClick=\"Contacts.UI.Addressbooks.activation(this, " . $_['addressbook']["id"] . ")\"" . (OC_Contacts_Addressbook::isActive($_['addressbook']["id"]) ? ' checked="checked"' : '') . "></td>"; |
||||
echo "<td><label for=\"active_" . $_['addressbook']["id"] . "\">" . $_['addressbook']["displayname"] . "</label></td>"; |
||||
echo "<td width=\"20px\"><a href=\"#\" onclick=\"Contacts.UI.showCardDAVUrl('" . OC_User::getUser() . "', '" . $_['addressbook']["uri"] . "');\" title=\"" . $l->t("CardDav Link") . "\" class=\"action\"><img class=\"svg action\" src=\"../../core/img/actions/public.svg\"></a></td><td width=\"20px\"><a href=\"export.php?bookid=" . $_['addressbook']["id"] . "\" title=\"" . $l->t("Download") . "\" class=\"action\"><img class=\"svg action\" src=\"../../core/img/actions/download.svg\"></a></td><td width=\"20px\"><a href=\"#\" title=\"" . $l->t("Edit") . "\" class=\"action\" onclick=\"Contacts.UI.Addressbooks.editAddressbook(this, " . $_['addressbook']["id"] . ");\"><img class=\"svg action\" src=\"../../core/img/actions/rename.svg\"></a></td><td width=\"20px\"><a href=\"#\" onclick=\"Contacts.UI.Addressbooks.deleteAddressbook('" . $_['addressbook']["id"] . "');\" title=\"" . $l->t("Delete") . "\" class=\"action\"><img class=\"svg action\" src=\"../../core/img/actions/delete.svg\"></a></td>"; |
||||
|
||||
@ -1,7 +1,7 @@ |
||||
<form id="mediaform"> |
||||
<fieldset class="personalblock"> |
||||
<strong>Contacts</strong><br /> |
||||
CardDAV syncing address: |
||||
<strong><?php echo $l->t('Contacts'); ?></strong><br />
|
||||
<?php echo $l->t('CardDAV syncing address:'); ?> |
||||
<?php echo OC_Helper::linkTo('apps/contacts', 'carddav.php', null, true); ?><br />
|
||||
</fieldset> |
||||
</form> |
||||
|
||||
Loading…
Reference in new issue