Changeset 586549
- Timestamp:
- 08/16/2012 09:01:05 PM (14 years ago)
- Location:
- siteapps/trunk
- Files:
-
- 3 edited
-
insert_id.tpl (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
siteapps.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
siteapps/trunk/insert_id.tpl
r586317 r586549 24 24 </th> 25 25 <td valign="top"> 26 <input type="radio" value=" 1" name="sa_tag_type" checked="true">Synchronous27 <input type="radio" value=" 2" name="sa_tag_type">Asynchronous26 <input type="radio" value="2" name="sa_tag_type" [%SA_TAG_TYPE_ASYNC%]>Asynchronous (Default) 27 <input type="radio" value="1" name="sa_tag_type" [%SA_TAG_TYPE_SYNC%]>Synchronous 28 28 </td> 29 29 </tr> -
siteapps/trunk/readme.txt
r410441 r586549 2 2 Contributors: siteapps, leandrolages, pklien 3 3 Tags: web apps, webpps, widgets, siteapps, website marketplace 4 Requires at least: 2. 7.24 Requires at least: 2.8 5 5 Tested up to: 3.2 6 Stable tag: 1. 06 Stable tag: 1.1 7 7 8 8 This plugin enables the use of all website apps of the SiteApps.com marketplace on your Wordpress site. -
siteapps/trunk/siteapps.php
r586317 r586549 158 158 $sa_id = (isset($options['id'])) ? $options['id'] : ''; 159 159 160 echo str_replace('[%SA_ID%]',$sa_id, $buffer); 160 $sync_check = ($options['type'] === 1)?'checked="true"':''; 161 $async_check = ($options['type'] === 1)?'':'checked="true"'; 161 162 163 $sa_type = (isset($options['type'])) ? $options['id'] : ''; 164 165 $buffer = str_replace('[%SA_ID%]',$sa_id, $buffer); 166 $buffer = str_replace('[%SA_TAG_TYPE_SYNC%]',$sync_check, $buffer); 167 $buffer = str_replace('[%SA_TAG_TYPE_ASYNC%]',$async_check, $buffer); 168 echo $buffer; 162 169 } 163 170
Note: See TracChangeset
for help on using the changeset viewer.