Нема описа

buttons.php 1.3KB

1234567891011121314151617181920212223242526
  1. <tr>
  2. <th scope="row"><?php _e('Button skin', 'nextend-facebook-connect'); ?></th>
  3. <td>
  4. <fieldset>
  5. <label>
  6. <input type="radio" name="skin"
  7. value="dark" <?php if ($settings->get('skin') == 'dark') : ?> checked="checked" <?php endif; ?>>
  8. <span><?php _e('Dark', 'nextend-facebook-connect'); ?></span><br/>
  9. <img src="<?php echo plugins_url('images/google/dark.png', NSL_ADMIN_PATH) ?>"/>
  10. </label>
  11. <label>
  12. <input type="radio" name="skin"
  13. value="light" <?php if ($settings->get('skin') == 'light') : ?> checked="checked" <?php endif; ?>>
  14. <span><?php _e('Light', 'nextend-facebook-connect'); ?></span><br/>
  15. <img src="<?php echo plugins_url('images/google/light.png', NSL_ADMIN_PATH) ?>"/>
  16. </label>
  17. <label>
  18. <input type="radio" name="skin"
  19. value="uniform" <?php if ($settings->get('skin') == 'uniform') : ?> checked="checked" <?php endif; ?>>
  20. <span><?php _e('Uniform - Legacy', 'nextend-facebook-connect'); ?></span><br/>
  21. <img src="<?php echo plugins_url('images/google/uniform.png', NSL_ADMIN_PATH) ?>"/>
  22. </label>
  23. <br>
  24. </fieldset>
  25. </td>
  26. </tr>