<![CDATA[ Adding a 3rd party component into Manager - My Forums]]> https://forums.modx.com/thread/?thread=89395 <![CDATA[Adding a 3rd party component into Manager]]> https://forums.modx.com/thread/89395/adding-a-3rd-party-component-into-manager#dis-post-491598 I'm exploring the possibility of adding a 3rd party component (simple ecommerce panel) into the Manager. I'm not looking for deep integration (only at manager auth level). In EVO this could be simply achieved by capturing with an iFrame -> is there a similar technique to simply "capture" the app within a Manager page?

Thanks.]]>
lokust Mar 02, 2014, 04:49 AM https://forums.modx.com/thread/89395/adding-a-3rd-party-component-into-manager#dis-post-491598
<![CDATA[Re: Adding a 3rd party component into Manager]]> https://forums.modx.com/thread/89395/adding-a-3rd-party-component-into-manager#dis-post-494111 http://rtfm.modx.com/revolution/2.x/developing-in-modx/advanced-development/custom-manager-pages

(follow the first three steps)

Then you can add your custom index file.

I also use the following commands to include some css and js

$modx->regClientCSS($assetsUrl.'css/mystyles.css');
$modx->regClientStartupScript($assetsUrl.'js/jquery-1.4.4.min.js');
$modx->regClientStartupScript($assetsUrl.'js/myjs.js');


then I use this to make it look like a manager page

<div class='x-panel modx-page-header x-panel-noborder' >
	<h2>A Page title</h2>
</div>
<div class='stage-panel-body'>
</div>


in here you sure can implement an iframe...]]>
cloudtec Apr 01, 2014, 11:17 AM https://forums.modx.com/thread/89395/adding-a-3rd-party-component-into-manager#dis-post-494111