Changeset 9455
- Timestamp:
- Dec 2, 2008, 5:47:03 PM (14 years ago)
- Location:
- OpenPNE3/plugins/opOpenSocialPlugin/trunk/apps/pc_frontend/modules
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE3/plugins/opOpenSocialPlugin/trunk/apps/pc_frontend/modules/application/actions/components.class.php
r9429 r9455 23 23 $culture = $this->getUser()->getCulture(); 24 24 $culture = split("_",$culture); 25 $this->height = $app->getHeight() ? $app->getHeight() : 200; 25 $this->height = $app->getHeight() ? $app->getHeight() : 200; 26 $this->scrolling = $app->getScrolling(); 26 27 27 28 $viewer_id = $this->getUser()->getMemberId(); -
OpenPNE3/plugins/opOpenSocialPlugin/trunk/apps/pc_frontend/modules/application/config/view.yml
r9389 r9455 6 6 - /plugins/opOpenSocialPlugin/js/tabs-min 7 7 - /plugins/opOpenSocialPlugin/js/container 8 stylesheets:9 - /plugins/opOpenSocialPlugin/css/opensocial10 8 11 9 jsSuccess: -
OpenPNE3/plugins/opOpenSocialPlugin/trunk/apps/pc_frontend/modules/application/templates/_gadget.php
r9429 r9455 1 <div class=" gadgets-gadget-chrome" style="width:<?php echo $width ?>px;">2 <div id="gadgets-gadget-title-bar-<?php echo $mid ?>" class ="gadgets-gadget-title-barpartsHeading">3 < div class="gadgets-gadget-title-button-bar"><?php1 <div class="dparts box" style="width:<?php echo $width ?>px;"><div class="parts"> 2 <div id="gadgets-gadget-title-bar-<?php echo $mid ?>" class="partsHeading"> 3 <p class="link"><?php 4 4 if ($isViewer) 5 5 { … … 13 13 echo "add this application"; 14 14 } 15 ?></ div>16 < span id="remote_iframe_<?php echo $mid ?>_title" class="gadgets-gadget-title"><?php echo $title ?></span>15 ?></p> 16 <h3 id="remote_iframe_<?php echo $mid ?>_title"><?php echo $title ?></h3> 17 17 </div> 18 <div class="gadget-gadget-content"> 19 <iframe width="<?php echo ($width) ?>" scrolling="on" height="<?php echo ($height) ?>" frameborder="no" src="<? echo $iframe_url ?>" class="gadgets-gadget" name="remote_iframe_<?php echo $mid ?>" id="remote_iframe_<?php echo $mid ?>"></iframe> 18 <div class="block"> 19 <iframe width="<?php echo ($width) ?>" scrolling="<?php 20 if ($scrolling) 21 { 22 echo "on"; 23 } 24 else 25 { 26 echo "off"; 27 } 28 ?>" height="<?php echo ($height) ?>" frameborder="no" src="<? echo $iframe_url ?>" class="gadgets-gadget" name="remote_iframe_<?php echo $mid ?>" id="remote_iframe_<?php echo $mid ?>"></iframe> 20 29 </div> 21 </div> 30 </div></div> -
OpenPNE3/plugins/opOpenSocialPlugin/trunk/apps/pc_frontend/modules/application/templates/canvasSuccess.php
r9070 r9455 1 <?php echoinclude_component('application','gadget',1 <?php include_component('application','gadget', 2 2 array( 3 3 'width' => 960,
Note: See TracChangeset
for help on using the changeset viewer.