Exemplo n.º 1
0
 /**
  * Bootstrap method to be called during application bootstrap stage.
  *
  * @param Application $app the application currently running
  */
 public function bootstrap($app)
 {
     // register migration
     $app->params['yii.migrations'][] = '@vendor/dmstr/yii2-pages-module/migrations';
     // register module
     if (\Yii::$app->hasModule('pages') && !\Yii::$app->hasModule('treemanager')) {
         $app->setModule('treemanager', ['class' => 'kartik\\tree\\Module', 'layout' => '@admin-views/layouts/main', 'treeViewSettings' => ['nodeView' => '@vendor/dmstr/yii2-pages-module/views/treeview/_form', 'fontAwesome' => true]]);
     }
     // provide default page url rule
     $app->urlManager->addRules([['class' => PageUrlRule::className()], '<pagePath:[a-zA-Z0-9_\\-\\./\\+]*>/<pageSlug:[a-zA-Z0-9_\\-\\.]*>-<pageId:[0-9]*>' => 'pages/default/page', '<pageSlug:[a-zA-Z0-9_\\-\\.]*>-<pageId:[0-9]*>' => 'pages/default/page'], true);
 }
Exemplo n.º 2
0
 /**
  * base params tests
  */
 public function testUrlRuleParams()
 {
     // Manager setup
     $urlManager = \Yii::$app->urlManager;
     $urlManager->enablePrettyUrl = 1;
     $urlManager->showScriptName = false;
     // Pages rule globals
     $rule = new PageUrlRule();
     $route = 'pages/default/page';
     /**
      * Check url with params
      *  - pageId
      */
     $params = ['pageId' => 1];
     $createdUrl = $rule->createUrl($urlManager, $route, $params);
     $expectedUrl = '-1';
     $this->assertEquals($expectedUrl, $createdUrl);
     /**
      * Check url with params
      *  - pageId
      *  - pageSlug
      */
     $params = ['pageId' => 1, 'pageSlug' => 'slug'];
     $createdUrl = $rule->createUrl($urlManager, $route, $params);
     $expectedUrl = 'slug-1';
     $this->assertEquals($expectedUrl, $createdUrl);
     /**
      * Check url with params
      *  - pageId
      *  - pageSlug
      *  - pagePath
      */
     $params = ['pageId' => 1, 'pageSlug' => 'slug', 'pagePath' => 'subpage/next-subpage/next-subpage'];
     $createdUrl = $rule->createUrl($urlManager, $route, $params);
     $expectedUrl = 'subpage/next-subpage/next-subpage/slug-1';
     $this->assertEquals($expectedUrl, $createdUrl);
     /**
      * Check url for static routes without params
      *  - pageId
      */
     $params = [0 => '/static-route'];
     $createdUrl = $urlManager->createUrl($params);
     $expectedUrl = '/static-route';
     $this->assertEquals($expectedUrl, $createdUrl);
     /**
      * Check url for static routes with params
      *  - param1 => value1
      */
     $params = [0 => '/static-route', 'param1' => 'value1'];
     $createdUrl = $urlManager->createUrl($params);
     $expectedUrl = '/static-route?param1=value1';
     $this->assertEquals($expectedUrl, $createdUrl);
     /**
      * add URL rule
      */
     $urlManager->addRules(['/static-route/<param1:[a-zA-Z0-9_\\-\\.]*>-<pageId:[0-9]*>.html' => 'static-route']);
     /**
      * Check url for static routes with params
      *  - pageId => 5
      *  - param1 => value1
      */
     $route = 'static-route';
     $params = ['pageId' => 5, 'param1' => 'value1'];
     $createdUrl = $rule->createUrl($urlManager, $route, $params);
     /**
      * if not pages/default/page route, the PageUrlRule will not match
      * and the application url manager will be used
      */
     if ($createdUrl === false) {
         $params = [0 => '/static-route', 'pageId' => 5, 'param1' => 'value1'];
         $createdUrl = $urlManager->createUrl($params);
     }
     $expectedUrl = '/static-route/value1-5.html';
     $this->assertEquals($expectedUrl, $createdUrl);
 }