Нет описания

buttons.php 1.7KB

1234567891011121314151617181920212223242526272829303132
  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/facebook/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/facebook/light.png', NSL_ADMIN_PATH) ?>"/>
  16. </label>
  17. <label>
  18. <input type="radio" name="skin"
  19. value="black" <?php if ($settings->get('skin') == 'black') : ?> checked="checked" <?php endif; ?>>
  20. <span><?php _e('Black', 'nextend-facebook-connect'); ?></span><br/>
  21. <img src="<?php echo plugins_url('images/facebook/black.png', NSL_ADMIN_PATH) ?>"/>
  22. </label>
  23. <label>
  24. <input type="radio" name="skin"
  25. value="white" <?php if ($settings->get('skin') == 'white') : ?> checked="checked" <?php endif; ?>>
  26. <span><?php _e('White', 'nextend-facebook-connect'); ?></span><br/>
  27. <img src="<?php echo plugins_url('images/facebook/white.png', NSL_ADMIN_PATH) ?>"/>
  28. </label>
  29. </fieldset>
  30. </td>
  31. </tr>