-
-
Notifications
You must be signed in to change notification settings - Fork 9
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 #1 from tattersoftware/develop
Merge for release
- Loading branch information
Showing
5 changed files
with
19 additions
and
19 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php namespace Tatter\Alerts; | ||
|
||
/*** | ||
* Name: Alerts | ||
* Author: Matthew Gatner | ||
* Name: Alerts | ||
* Author: Matthew Gatner | ||
* Contact: [email protected] | ||
* Created: 2019-02-13 | ||
* | ||
|
@@ -17,8 +17,8 @@ | |
* Use Config/Alerts.php to override default behavior | ||
* | ||
* @package CodeIgniter4-Alerts | ||
* @author Matthew Gatner | ||
* @link https://github.com/tattersoftware/codeigniter4-alerts | ||
* @author Matthew Gatner | ||
* @link https://github.com/tattersoftware/codeigniter4-alerts | ||
* | ||
***/ | ||
|
||
|
@@ -116,6 +116,6 @@ public function display() | |
// should be injected into <head> | ||
public function css() | ||
{ | ||
return $this->view->setVar('prefix', $this->config->prefix)->render("Tatter\Alerts\Views\css"); | ||
return $this->view->setVar('prefix', $this->config->prefix)->render('Tatter\Alerts\Views\css'); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
return [ | ||
'invalidTemplate' => '"{0}" is not a valid Alerts template.', | ||
'missingTemplateView' => 'Could not find template view file: "{0}".', | ||
]; |