Changeset 2134
- Timestamp:
- 03/22/10 11:26:08 (14 years ago)
- Location:
- plugins/twitterPost
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/twitterPost/_admin.php
r901 r2134 22 22 # 23 23 # ***** END LICENSE BLOCK ***** 24 25 if (!defined('DC_CONTEXT_ADMIN')) { return; } 26 27 l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/admin'); 24 28 25 29 include_once(dirname(__FILE__) . '/inc/TwitterPost.class.php'); -
plugins/twitterPost/_define.php
r1312 r2134 28 28 /* Description*/ "Update your status on new posts", 29 29 /* Author */ "Hadrien Lanneau (http://www.alti.info)", 30 /* Version */ '1. 3',30 /* Version */ '1.4', 31 31 /* Permissions */ 'usage,contentadmin' 32 32 ); -
plugins/twitterPost/inc/TwitterPost.class.php
r1312 r2134 101 101 { 102 102 throw new Exception( 103 __('Twitter Post 103 __('Twitter Post: Post must be published') 104 104 ); 105 105 } -
plugins/twitterPost/index.php
r1313 r2134 181 181 <p class="label"> 182 182 <label class="classic"> 183 <?php echo __('Your twit 183 <?php echo __('Your twit:'); ?> 184 184 <?php echo form::field( 185 185 'twitterpost_status', … … 191 191 </p> 192 192 <p> 193 <?php echo __(' Help'); ?>193 <?php echo __('About'); ?> 194 194 </p> 195 195 </fieldset> … … 199 199 <p class="label"> 200 200 <label class="classic"> 201 <?php echo __('Login 201 <?php echo __('Login:'); ?> 202 202 <?php echo form::field( 203 203 'twitterpost_username', … … 210 210 <p class="label"> 211 211 <label class="classic"> 212 <?php echo __('Password 212 <?php echo __('Password:'); ?> 213 213 <?php echo form::password( 214 214 'twitterpost_password', … … 225 225 <p class="label"> 226 226 <label class="classic"> 227 <?php echo __('Login 227 <?php echo __('Login:'); ?> 228 228 <?php echo form::field( 229 229 'twitterpost_username_identica', … … 236 236 <p class="label"> 237 237 <label class="classic"> 238 <?php echo __('Password 238 <?php echo __('Password:'); ?> 239 239 <?php echo form::password( 240 240 'twitterpost_password_identica', … … 251 251 <p class="label"> 252 252 <label class="classic"> 253 <?php echo __('Login 253 <?php echo __('Login:'); ?> 254 254 <?php echo form::field( 255 255 'twitterpost_username_trim', … … 262 262 <p class="label"> 263 263 <label class="classic"> 264 <?php echo __('Password 264 <?php echo __('Password:'); ?> 265 265 <?php echo form::password( 266 266 'twitterpost_password_trim', … … 272 272 </p> 273 273 </fieldset> 274 274 <fieldset style="border:none; background:none;"> 275 275 <input type="hidden" name="p" value="twitterPost" /> 276 276 <?php echo $core->formNonce(); ?> 277 277 <input type="submit" name="saveconfig" value="<?php echo __('save'); ?>" /> 278 </fieldset> 278 279 </form> 279 280 </div>
Note: See TracChangeset
for help on using the changeset viewer.