mirror of
https://github.com/nextcloud/server.git
synced 2026-03-12 05:33:11 -04: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();
|