Blame view
sources/apps/contacts/settings.php
162 Bytes
|
923852aa1
|
1 2 3 4 5 6 |
<?php
$tmpl = new OCP\Template( 'contacts', 'settings');
$tmpl->assign('addressbooks', OCA\Contacts\Addressbook::all(OCP\USER::getUser()));
$tmpl->printPage();
|