function Notifications_Content_Node_List::node_list in Notifications 7
Get node list
3 calls to Notifications_Content_Node_List::node_list()
- Notifications_Content_Node_List::text_content in notifications_content/
notifications_content.inc - Content text
- Notifications_Content_Node_Teasers::text_content in notifications_content/
notifications_content.inc - Default texts for this template, may need token replacement
- Notifications_Content_Node_View::text_content in notifications_content/
notifications_content.inc - Content text.
File
- notifications_content/
notifications_content.inc, line 361 - Drupal Notifications Framework - Default class file
Class
- Notifications_Content_Node_List
- Template for a list of nodes, list of title, links
Code
function node_list() {
return !empty($this->content) ? $this->content : array();
}