I am afraid it's not as simple ... I mean ... I am not using any Framework configuration just yet. The code I am working with is mixed Controller and View and Model code. It most likely will require major cleanup before I can create a real view template to be able to use a View Helper. It seems I cannot just plug $this->partial(...); somewhere in my code without first really just adding a significant part of what makes ZF2 a framework.
So if I type something like this, it will not work: <?phpnamespace someTest;include "vendor/autoload.php";use Zend\View\Model\ViewModel; //I can instantiate this alright ..//some legacy code block here... //...//...//not sure what "magic" to put here for next line to not fail$this->partial(..); //fail ...?> -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/How-to-use-View-Helper-Partial-without-full-ZF2-tp4661962p4661977.html Sent from the Zend Framework mailing list archive at Nabble.com.
