pojokcodeid.nvim-lazy/snippets/codeigniter4/CHANGELOG.md
2023-03-03 07:09:50 +07:00

5.3 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 :)

Donate Donate

[Released - 0.1.1] - 2021-10-18

[Released - 0.1.0] - 2021-09-21

[Released - 0.0.9] - 2021-09-20

[Released - 0.0.8] - 2021-04-18

[Released - 0.0.7] - 2021-04-06

[Released - 0.0.6] - 2021-04-05

[Released - 0.0.5]

[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 ?>
    

License & Download

GitHub license Visual Studio Marketplace Downloads