external application within Admin

Do something cool with CMS? Show us ...
This board is for 'Answers', and the discussion of answers... Not for questions.
Post Reply
mw
Forum Members
Forum Members
Posts: 159
Joined: Mon Aug 25, 2008 8:38 pm

external application within Admin

Post by mw »

I recently added a page to a website that needed to be updated by google spread sheets which was a little confusing for the editors to update as they not only needed to login to the cmsms admin but also google spreadsheets.
to get around this I installed the "Skeleton" module: http://dev.cmsmadesimple.org/projects/skeleton
and simply edited the "adminpanel.tpl" to look like:

Code: Select all

{$tabs_start}
   {$start_general_tab}
      {$mod->Lang('welcome_text')}
<__iframe src ="http://mysite.com/modules/Skeleton/form/my-google-spreadsheet-form.html" width="100%" height="900">
  <p>Your browser does not support iframes.</p>
</__iframe>
   {$tab_end}
   {$start_prefs_tab}
          	<div class="pageoverflow">
   <__iframe src ="http://someothersite.com/bla/anotherpage.html" width="100%" height="900">
  <p>Your browser does not support iframes.</p>
</__iframe>
      	</div>
     {$tab_end}
{$tabs_end}

That's really all there is to it. This way everything is done inside the admin.
I'm sure this is a no-brainer for most here but I got an "aha" moment :) so thought I would share
of course this works with any external webpage...
JeremyBASS

Re: external application within Admin

Post by JeremyBASS »

"aha" moments are the best... they lead to more and more :) it's easy and fun to play with cmsms
Post Reply

Return to “Tips and Tricks”