Where to put message file in codeigniter4? |
I want to create a separate file called custom_message.php. What will be the location of this file in CI4 project structure and how to call in controller.
Example:
Code: $arr_custom_message = [
You can create your own folder under the app folder
app/Messages And place your files there. What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Don't forget you can also have your own Modules.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Hi. For simple messages like this you can use config file dedicated to messages.
Create: App/Config/CustomMessages.php PHP Code: <?php Usage in your controller: PHP Code: // ...
suggesting using language file is easier.
create file in folder folder: App\Language\en\message.php File content: return [ 'add' => 'Admin Created!', 'update' => Updated Successfully!' ]; calling: <?=lang('message.add')?> <?=lang('message.update')?> * language/localization is flexible, can pass value to message This from guide: Code: <?php |
Welcome Guest, Not a member yet? Register Sign In |