An Inx_Api_Webpage_WebpageManager object can be used to retrieve Inx_Api_Webpage_Webpage objects.
An Inx_Api_Webpage_WebpageManager object can be used to retrieve Inx_Api_Webpage_Webpage objects. The web pages can be retrieved by their id, by their type (i.e. JSP, Form), by their sub type (e.g. "subscription") or a combination of type and sub type. The following code snippet prints out the names of all available web pages (JSPs and forms):
$oWebpageManager = $oSession->getWebpageManager(); $oBOResultSet = $oWebpageManager->selectAll(); for( $i = 0; $i < $oBOResultSet->size(); $i++ ) { $oWebpage = $oBOResultSet->get( $i ); echo 'Page name: ' . $oWebpage->getName() . '<br>'; } $oBOResultSet->close();
For more information on web pages, see the Inx_Api_Webpage_Webpage documentation.
Located in /Api/Webpage/WebpageManager.php (line 30)
Returns the web page with the given id.
Returns the web page with the given id.
Returns a BOResultSet containing all webpages.
Returns a BOResultSet containing all webpages.
Returns a BOResultSet containing all form (HTML) webpages.
Returns a BOResultSet containing all form (HTML) webpages.
Returns a BOResultSet containing all JSP webpages.
Returns a BOResultSet containing all JSP webpages.
Returns a BOResultSet containing all webpages with the given sub type.
Returns a BOResultSet containing all webpages with the given sub type.
Returns a BOResultSet containing all form (HTML) webpages with the given sub type.
Returns a BOResultSet containing all form (HTML) webpages with the given sub type.
Returns a BOResultSet containing all JSP webpages with the given sub type.
Returns a BOResultSet containing all JSP webpages with the given sub type.
Documentation generated on Thu, 17 Sep 2015 14:27:34 +0200 by phpDocumentor 1.3.2