mirror of
https://github.com/nextcloud/server.git
synced 2026-02-15 08:48:14 -05:00
6 lines
175 B
PHP
6 lines
175 B
PHP
<?php
|
|
|
|
$tmpl = new OCP\Template( 'contacts', 'settings');
|
|
$tmpl->assign('addressbooks', OC_Contacts_Addressbook::all(OCP\USER::getUser()), false);
|
|
|
|
return $tmpl->fetchPage();
|