I want to change the jQuery version of yii2. I've installed yii2 through composer. I've read a similar question here:
Change JqueryAsset's jQuery version on certain page
But the problem I'm facing is where should I place this code? Should I place it on the view page? But I want to change the jquery version for all the pages. Is this code compatible for yii2?
You can easily customize jquery asset bundle by configuring assetManager in the application components configuration (usually config/web.php), for example if you want to use a jquery file in web/js folder :
'assetManager' => [
'bundles' => [
'yii\web\JqueryAsset' => [
'sourcePath' => null,
'basePath' => '#webroot',
'baseUrl' => '#web',
'js' => [
'js/jquery.js',
]
],
],
],
Read more : http://www.yiiframework.com/doc-2.0/guide-structure-assets.html#customizing-asset-bundles
Related
We are working on an agile project and we have to use the restful web services on the yii2 framework. But we can't change the URL system to the pretty URL because some actions are not working with it.
I have searched in RESTful web services documentation but could not find any solution for this.
https://www.yiiframework.com/doc/guide/2.0/en/rest-quick-start
Recommended URL schema for RESTful web services:
https://www.yiiframework.com/doc/guide/2.0/en/rest-quick-start#configuring-url-rules
'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'user'],
],
]
Is there any way to do this?
More info about the api controller:
My controller is under the controllers/api dir. So full path is like;
controllers/api/ContentController.php
I generated module siteadmin using GII, it appeared in the frontend/module folder. Next, I added it in the main.php front-end configuration file
'siteadmin' => [
'class' => 'app\modules\siteadmin\Module',
],
But the domain.net/siteadmin address shows a 404 error. Individual routs in the urlManager for this address are not created. How can I check all, and understand what is wrong and where is the error? Debug panel works, but it says: route to run: site/error
Try using explicit frontend application name eg:
'siteadmin' => [
'class' => 'frontend\modules\siteadmin\Module',
],
You need to confirm the namespace of the module class if you generated that module for the frontend the module class file frontend/modules/siteadmin/Siteadmin.php should have the namespace like.
namespace frontend\modules\siteadmin;
and the directory structure should look like below
The Siteadmin.php file that you are seeing in the above picture is the main module file.
If the directory structure is like I stated above in the picture then you should add the module inside the frontend/config/main.php like below
'modules' => [
'siteadmin' => [
'class' => 'frontend\modules\siteadmin\Siteadmin',
],
],
Then you can access it like http://example.com/siteadmin/default or if there is any other controller than default you can provide that name.
Is it possible to run action of frontend controller from backend?
this code works if called action is in backend too. can i specify in runAction that controller/action is in frontend?
Yii::$app->runAction('controller/action')
Also i' m tried something like
$c=new controller();
$s->action();
too but it seems it not working too. //new controller() need some parameters and i have no idea what it is.
The yii\base\Application object has a public property controllerNamespace, which defaults to app\\controllers. You need to change it accordingly to changing default controller namespace.
Change namespace in action:
Yii::$app->controllerNamespace = 'frontend\controllers' and use runAction
A way could be this .
In your backend application config you could create an additional 'UrlManager' component
name eg: urlManagerFrontEnd
return [
'components' => [
'urlManager' => [
// here is your backend URL rules
],
'urlManagerFrontEnd' => [
'class' => 'yii\web\urlManager',
'baseUrl' => 'http://your_path/frontend/web/index.php',
'enablePrettyUrl' => true,
'showScriptName' => false,
],
],
];
Then you should invoke following to compose front-end URL:
Yii::$app->urlManagerFrontEnd->createUrl();
and add the controller/action you prefer
remeber that
runAction()
Runs an action within this controller with the specified action ID and
parameters.
http://www.yiiframework.com/doc-2.0/yii-base-controller.html#runAction()-detail
this mean that cannot run an action of another controller or of another application ..
If you need a service then you must configure a RESTFull or you simply need a redirection you can use redirect
Here is my asset code..
public $js = [
'js/jquery-ui.min.js',
'js/app.min.js',
];
I have some widgets used in the view file... and here are the order of the js files. What I want is to call the jquery-ui.js before bootstrap.js.. How to do that??
Placing jQuery UI after Bootstrap doesn't make any sense since they are not dependent on each other at all. But for including bundle before another, you should add dependency to the related bundle.
For custom asset bundle you can just write this:
$depends = [
// Write classes of dependent asset bundles here, for example:
'yii\jui\JuiAsset',
];
But because Bootstrap is built-in asset, you can not modify it that way. Instead you can set it globally through config of Asset Manager:
return [
// ...
'components' => [
'assetManager' => [
'bundles' => [
'yii\bootstrap\BootstrapAsset' => [
'depends' => [
'yii\jui\JuiAsset',
];
],
],
],
],
];
Or just set dependency in one specific place before rendering view:
Yii::$app->assetManager->bundles['yii\bootstrap\BootstrapAsset'] = [
'depends' => [
'yii\jui\JuiAsset',
];
],
Official docs:
Customizing built-in asset bundles
Asset Manager
yii\web\AssetBundle $depends
Where should I put this code:
'urlManager' => [
'enablePrettyUrl' => true,
'rules' => [
// your rules go here
],
// ...
],
And what rules should I put there?
You need to put it inside application config.
Its location varies depending on template you are using (basic / advanced).
There is components section, where each framework component configured:
return [
'components' => [
'urlManager' => [
'enablePrettyUrl' => true,
'rules' => [
// your rules go here
],
// ...
],
],
];
This will prevent passing route passed as $_GET parameter r.
Note that for pretty urls you also need to add this:
`showScriptName` => false,
This will prevent showing index.php in urls.
As for rules - it's more extensive question. Its content depends on your needs.
You can configure route / group of routes / all routes.
Read more in official docs:
UrlManager $enablePrettyUrl
UrlManager $showScriptName
UrlManager $rules
Using Pretty Urls
Url Rules