-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rename folder + update comments
- Loading branch information
1 parent
a691a1d
commit 4aa689d
Showing
9 changed files
with
30 additions
and
53 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
31 changes: 17 additions & 14 deletions
31
site/assets/backups/export-profile/site-rockfrontend/install/finish.php
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 |
---|---|---|
@@ -1,30 +1,33 @@ | ||
<?php namespace ProcessWire; | ||
<?php | ||
|
||
namespace ProcessWire; | ||
|
||
/** | ||
* Install finish file (3.0.191+ only) | ||
* | ||
* This file is called when profile installation has finished | ||
* | ||
* This file is called when profile installation has finished | ||
* but before install assets have been deleted. The Installer | ||
* can also be accessed via the $installer variable. | ||
* | ||
* can also be accessed via the $installer variable. | ||
* | ||
* Use this file to perform any additional updates to the site | ||
* that are needed by your site profile. | ||
* | ||
* that are needed by your site profile. | ||
* | ||
* Most ProcessWire API variables are available and locally | ||
* scoped to this file. | ||
* | ||
* ProcessWire versions prior to 3.0.191 ignore this file. | ||
* | ||
* scoped to this file. | ||
* | ||
* ProcessWire versions prior to 3.0.191 ignore this file. | ||
* | ||
*/ | ||
|
||
if(!defined("PROCESSWIRE_INSTALL")) die(); | ||
if (!defined("PROCESSWIRE_INSTALL")) die(); | ||
|
||
/** @var Installer $installer */ | ||
/** @var ProcessWire $wire */ | ||
/** @var Pages $pages */ | ||
/** @var User $user */ | ||
// …and so on for other API variables | ||
// …and so on for other API variables | ||
|
||
// your custom finishing code here | ||
// foo bar | ||
|
||
$installer->ok('Finished installing site profile'); | ||
$installer->ok('Finished installing site profile'); |
2 changes: 1 addition & 1 deletion
2
site/assets/backups/export-profile/site-rockfrontend/install/install.sql
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
25 changes: 0 additions & 25 deletions
25
site/assets/backups/export-profile/site-rockfrontend/templates/includes/mobile-menu.latte
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
site/assets/backups/export-profile/site-rockfrontend/templates/includes/nav-simple.latte
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
site/assets/backups/export-profile/site-rockfrontend/templates/scripts/main.js
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 |
---|---|---|
@@ -1 +1 @@ | ||
// Example JS file | ||
// Your site's custom JS file |
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 |
---|---|---|
@@ -1 +1 @@ | ||
// Example JS file | ||
// Your site's custom JS file |
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