This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from justcoded/develop
Fixed adminlte dependency, clickjacking, new IDE helper file
- Loading branch information
Showing
15 changed files
with
88 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,9 +133,16 @@ Now you should be able to access the application through the following URL, assu | |
directly under the Web root. | ||
|
||
~~~ | ||
http://localhost/my-project/web/ | ||
http://localhost/my-project/public/ | ||
~~~ | ||
|
||
Admin panel can be accessible only after login. If you used fixtures to fill the database with dummy content, | ||
then admin panel access will be: | ||
|
||
http://localhost/my-project/public/admin/ | ||
User: [email protected] | ||
Password: password_0 | ||
|
||
TESTING | ||
------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
/** | ||
* IDE autocompletion for custom components! | ||
* This file doesn't included anywhere inside the code!!! | ||
*/ | ||
|
||
/** | ||
* Yii bootstrap file. | ||
* Used for enhanced IDE code autocompletion. | ||
*/ | ||
class Yii extends \yii\BaseYii | ||
{ | ||
/** | ||
* @var BaseApplication|WebApplication|ConsoleApplication the application instance | ||
*/ | ||
public static $app; | ||
} | ||
|
||
/** | ||
* Class BaseApplication | ||
* Used for properties that are identical for both WebApplication and ConsoleApplication | ||
* | ||
* @property \app\components\Settings $settings Configuration params | ||
*/ | ||
abstract class BaseApplication extends \yii\base\Application | ||
{ | ||
} | ||
|
||
/** | ||
* Class WebApplication | ||
* Include only Web application related components here | ||
* | ||
* @property \app\i18n\Formatter $formatter The main formatter for app | ||
* @method \app\i18n\Formatter getFormatter The main formatter for app | ||
*/ | ||
class WebApplication extends \yii\web\Application | ||
{ | ||
} | ||
|
||
/** | ||
* Class ConsoleApplication | ||
* Include only Console application related components here | ||
* | ||
* @property \app\i18n\Formatter $formatter The main formatter for app | ||
* @method \app\i18n\Formatter getFormatter The main formatter for app | ||
*/ | ||
class ConsoleApplication extends \yii\console\Application | ||
{ | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters