mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
5.5 KiB
5.5 KiB
Change Log
All notable changes to the "codeigniter4-snippets" extension will be documented in this file.
Check Keep a Changelog for recommendations on how to structure this file.
Donate
If this project help you reduce time to develop, you can give me a cup of coffee :)
[Released - 0.1.1] - 2021-10-18
-
Fixed Bugs Snippets.
-
Add New Snippets.
[Released - 0.1.0] - 2021-09-21
-
Fixed Bugs Snippets.
-
Update Snippets.
-
Add New Snippets.
[Released - 0.0.9] - 2021-09-20
-
Fixed Bugs Snippets.
-
Add New Snippets.
[Released - 0.0.8] - 2021-04-18
-
Add New Snippets.
[Released - 0.0.7] - 2021-04-06
-
Add New Snippets.
[Released - 0.0.6] - 2021-04-05
-
Fixed Bugs Snippets.
-
Add New Snippets.
[Released - 0.0.5]
-
Fixed Bugs Links.
[Released - 0.0.4]
-
Fixed Bugs.
-
Change Command ( read ).
-
Add Docs.
-
Add New Snippets {
[ProjectRoot]/app/Views/**.php
}Command Description Output ci4:views:foreach Make foreach
in View files<?php foreach ($items as $item) : ?> <li><?= $item ?></li> <?php endforeach ?>
ci4:views:if Make if
in View files<?php if (condition) : ?> <!-- TRUE --> <?php endif ?>
ci4:views:if-else Make if else
in View files<?php if (condition) : ?> <!-- TRUE --> <?php else : ?> <!-- FALSE --> <?php endif ?>
ci4:views:if-elseif Make if elseif
in View files<?php if (condition) : ?> <!-- TRUE --> <?php elseif (condition) : ?> <!-- FALSE --> <?php endif ?>
ci4:views:if-elseif-else Make if elseif else
in View files<?php if (condition) : ?> <!-- TRUE 1 --> <?php elseif (condition) : ?> <!-- TRUE 2 --> <?php else : ?> <!-- FALSE --> <?php endif ?>