Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
View Layer - Getting count of Entities in View in Cakephp 3
Posted on 06/12/2016 at 01:27 pm by Kevin Wentworth
Viewed 7,041 times | 0 comments
In my views I'm usually executing code depending on if a variable is empty or not. For example, I'll fetch all the images in a gallery and only want to output the containing divs when the gallery has images. You can't do a simple !empty() or if($img) because it will always be "true" because it will be a non-empty object (like Cake\ORM\Query or similar). So, if you want to find out if a variable (at the view level) is empty or not, use the isEmpty() function.
Is that variable empty? Checking for empty variables in CakePHP 3 View
- // in the controller/cell/etc.
- $someVar = $this->find('threaded', ['order' => 'lft ASC'])->where($conditions);
- // in the view.ctp file
- if($someVar.isEmpty()) {
- return null;
- } else {
- // ... do your thing ...
- }
Now, that was pretty easy. If you want to find the count of records and you are at the query layer, you can use the $query->count() method, described here.
Cheers,
-Kevin Wentworth
Tags for View Layer - Getting count of Entities in View in Cakephp 3
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!