The CBHelper.cfc is located in Modules->ContentBox->plugins. In there you will find
/**
QuickView is a proxy to ColdBox’s renderview method with the addition of prefixing the location of the view according to the
layout theme you are using. All the arguments are the same as renderView()'s methods
*/
function quickView(required view,cache=false,cacheTimeout,cacheLastAccessTimeout,cacheSuffix,module=“contentbox”,args,collection,collectionAs,prepostExempt){
arguments.view = “#layoutName()#/views/#arguments.view#”;
return renderView(argumentCollection=arguments);
}
As you can see you can define a struct and pass it in as args, that is what you will be needing to use. Or do I not understand your question?
You can also use the API docs that ship to ContentBox. In the root of the ContentBox download is a file called ContentBox-API-1.5.7.zip.
Unzip that and open index.html. Choose contentbox.plugins from the package list, and click “CBHelper” under classes. Then click on the “quickView” method and you will have the full API docs for that method.
However, the best way to know what inputs exist is to use CFBuilder with the ContentBox extension and use the option to install variable mappings. That will give you insight into the cb objection, what methods it has, and what args they take.
I downloaded CB (ContentBox-master.zip) from Github last friday and right now. This is very spooky: I can not see the zip file in the root or in a other folder.