mirror of
				https://github.com/nerzhul/ocsms.git
				synced 2025-10-29 01:17:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Nextcloud - Phone Sync
 | |
|  *
 | |
|  * This file is licensed under the Affero General Public License version 3 or
 | |
|  * later. See the COPYING file.
 | |
|  *
 | |
|  * @author Loic Blot <loic.blot@unix-experience.fr>
 | |
|  * @copyright Loic Blot 2014-2017
 | |
|  */
 | |
| 
 | |
| namespace OCA\OcSms\AppInfo;
 | |
| 
 | |
| if (class_exists('\OCP\AppFramework\App')) {
 | |
| 	\OC::$server->getNavigationManager()->add(array(
 | |
| 	    // the string under which your app will be referenced in owncloud
 | |
| 	    'id' => 'ocsms',
 | |
| 
 | |
| 	    // sorting weight for the navigation. The higher the number, the higher
 | |
| 	    // will it be listed in the navigation
 | |
| 	    'order' => 10,
 | |
| 
 | |
| 	    // the route that will be shown on startup
 | |
| 	    'href' => \OC::$server->getURLGenerator()->linkToRoute('ocsms.sms.index'),
 | |
| 
 | |
| 	    // the icon that will be shown in the navigation
 | |
| 	    // this file needs to exist in img/
 | |
| 	    'icon' => \OC::$server->getURLGenerator()->imagePath('ocsms', 'app.svg'),
 | |
| 
 | |
| 	    // the title of your application. This will be used in the
 | |
| 	    // navigation or on the settings page of your app
 | |
| 	    'name' => \OCP\Util::getL10N('ocsms')->t('Phone Sync')
 | |
| 	));
 | |
| } else {
 | |
| 	$msg = 'Can not enable the OcSms app because the App Framework App is disabled';
 | |
| 	\OC::$server->getLogger()->error($msg, array('ocsms'));
 | |
| }
 |