Changeset 3214470
- Timestamp:
- 12/29/2024 03:28:59 PM (2 months ago)
- Location:
- dynamic-qr-code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamic-qr-code/trunk/admin/logs.php
r3213836 r3214470 1 1 <?php 2 defined( 'SOSIDEE_ PROLICMAN' ) or die( 'you were not supposed to be here' );2 defined( 'SOSIDEE_DYNAMIC_QRCODE' ) or die( 'you were not supposed to be here' ); 3 3 4 4 $plugin = \SOSIDEE_DYNAMIC_QRCODE\SosPlugin::instance(); … … 15 15 $mfa_enabled = $plugin->config->mfaEnabled->value; 16 16 17 $asterisk = $plugin->isPro ? '' : '*'; 18 17 19 echo $plugin->help('scan-logs'); 18 20 … … 39 41 </td> 40 42 <td class="topped" rowspan="2"> 41 <span class="bolded" style="margin-bottom: 4px; display:block;">Display </span>43 <span class="bolded" style="margin-bottom: 4px; display:block;">Display <?php echo $asterisk; ?></span> 42 44 <?php $form->htmlShowGeo(); ?> 43 45 <br> … … 197 199 </p> 198 200 201 <?php if ( !$plugin->isPro ) { 202 echo '<hr style="margin-left:0;width:50%;">'; 203 echo '<p> <b>*</b> PRO version only '; 204 echo $plugin->pro(); 205 echo '</p>'; 206 } ?> 207 199 208 </div> -
dynamic-qr-code/trunk/admin/qrcode.php
r3213836 r3214470 313 313 $form->htmlClose(); 314 314 315 /* 315 316 if ( !$plugin->hasDuplicate() ) { 316 317 echo '<hr style="margin-left:0;width:50%;">'; 317 318 echo $plugin->pro() . ' available in the PRO version'; 318 319 } 320 */ 319 321 320 322 ?> -
dynamic-qr-code/trunk/dynamic-qr-code.php
r3213836 r3214470 2 2 /* 3 3 Plugin Name: Dynamic QR Code 4 Version: 1.0. 04 Version: 1.0.1 5 5 Description: Allows you to create DYNAMIC QR CODES: you can modify what happens when scanning your QR code without actually modifying (and reprinting) the QR code. 6 6 Requires at least: 5.9 -
dynamic-qr-code/trunk/readme.txt
r3213840 r3214470 188 188 189 189 == Upgrade Notice == 190 This is a major upgrade.Please ensure you back up your site before updating.190 Please ensure you back up your site before updating. 191 191 192 192 == Changelog == 193 194 = 1.0.1 = 195 * Fixed a bug in the logs page (admin dashboard). 193 196 194 197 = 1.0.0 = -
dynamic-qr-code/trunk/src/form/logsearch.php
r3213836 r3214470 229 229 $list = implode(', ', $allButLast) . ' and ' . $features[$count - 1]; 230 230 } 231 $msg = $this->getProMsg($list . ' logs are available on ');231 $msg = $this->getProMsg($list . ' logs are available only on the PRO version'); 232 232 self::msgWarn($msg); 233 233 }
Note: See TracChangeset
for help on using the changeset viewer.