R 
		
				
			
		ragtek
Guest
Changes in Build 16 (version 1.1)
Because we will use the "same" simple message & confirm delete template for all our add-ons, but we don't like the xenforo simple_message template, we created own versions of a simple_message & confirm delete template (ragtek_fw_delete_confirm & ragtek_fw_message_simple).
Also we started to implement the missing node functions, which we need for our add-ons using the nodesystem.
The 1. method allows you to get all nodes with a specific nodetype.
	
	
	
		
				
			Because we will use the "same" simple message & confirm delete template for all our add-ons, but we don't like the xenforo simple_message template, we created own versions of a simple_message & confirm delete template (ragtek_fw_delete_confirm & ragtek_fw_message_simple).
Also we started to implement the missing node functions, which we need for our add-ons using the nodesystem.
The 1. method allows you to get all nodes with a specific nodetype.
		PHP:
	
	class Ragtek_FW_NodeHelper
{
    public static function getAllNodesByType($type = 'Page', $ignoreNestedSetOrdering = false, $listView = false)
    {
       ....
    }
}
	