mirror of
https://github.com/nextcloud/server.git
synced 2026-04-04 00:25:45 -04:00
7 lines
178 B
PHP
7 lines
178 B
PHP
<?php
|
|
|
|
$tmpl = new OCP\Template( 'contacts', 'settings');
|
|
$tmpl->assign('addressbooks', OC_Contacts_Addressbook::all(OCP\USER::getUser()), false);
|
|
|
|
return $tmpl->fetchPage();
|
|
?>
|