You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							56 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							1.4 KiB
						
					
					
				<?php | 
						|
 | 
						|
namespace common\modules\languages; | 
						|
 | 
						|
use core\components\modules\ModuleInterface; | 
						|
use yii\helpers\ArrayHelper; | 
						|
 | 
						|
 | 
						|
/** | 
						|
 * languages module definition class | 
						|
 */ | 
						|
class LanguagesModule extends \yii\base\Module implements ModuleInterface | 
						|
{ | 
						|
    /** | 
						|
     * @inheritdoc | 
						|
     */ | 
						|
    public $controllerNamespace = 'common\modules\languages\controllers'; | 
						|
 | 
						|
    /** | 
						|
     * @inheritdoc | 
						|
     */ | 
						|
    public function init() | 
						|
    { | 
						|
        parent::init(); | 
						|
 | 
						|
        // custom initialization code goes here | 
						|
    } | 
						|
 | 
						|
	public function bootstrap($app) | 
						|
	{ | 
						|
		// add migration path | 
						|
		$app->controllerMap['migrate']['migrationPath'][] = '@common/modules/languages/migrations'; | 
						|
 | 
						|
		$app->getUrlManager()->addRules([ | 
						|
			'languages/manage/language/view/<id:\d+>' => 'languages/manage/language/view', | 
						|
		]); | 
						|
 | 
						|
		// add languages | 
						|
		$app->getI18n()->translations = ArrayHelper::merge($app->getI18n()->translations, [ | 
						|
			'languages' => [ | 
						|
				'class' => 'yii\i18n\PhpMessageSource', | 
						|
				'basePath' => '@common/modules/languages/messages', | 
						|
			], | 
						|
		]); | 
						|
 | 
						|
		// add menu items | 
						|
		if (basename($app->getBasePath()) === 'backend') { | 
						|
			$app->params['adminMenu'][] = [ | 
						|
				'label'   => \Yii::t( 'languages', 'Site Languages' ), | 
						|
				'icon'    => 'language', | 
						|
				'url'   => [ '/languages/manage/language/index' ], | 
						|
				'visible' => \Yii::$app->user->can( 'admin' ) || \Yii::$app->user->can( 'LanguagesManagement' ) | 
						|
			]; | 
						|
		} | 
						|
	} | 
						|
}
 | 
						|
 |