"; if ( ! empty( $field['args']['label_for'] ) ) { echo '
'; } else { echo '
' . $field['title'] . '
'; } echo '
'; call_user_func($field['callback'], $field['args']); echo '
'; echo ''; } } /* * Do settings sections * * Accessible Poetry Version of * WP core function: do_settings_sections * * @since 2.1.1 */ function acp_do_settings_sections( $page ) { global $wp_settings_sections, $wp_settings_fields; if ( ! isset( $wp_settings_sections[$page] ) ) return; foreach ( (array) $wp_settings_sections[$page] as $section ) { if ( $section['callback'] ) call_user_func( $section['callback'], $section ); if ( ! isset( $wp_settings_fields ) || !isset( $wp_settings_fields[$page] ) || !isset( $wp_settings_fields[$page][$section['id']] ) ) continue; echo '
'; do_settings_fields( $page, $section['id'] ); echo '
'; } } function acp_panel_menu() { echo ''; } function acp_panel_header() { echo '
'; echo '

Accessible Poetry

'; echo '

' . __('Opening WordPress sites to people with disabilites', 'acp') . '

'; echo '
'; } function acp_panel_sidebar() { echo '
'; echo '
'; echo '
'; echo '

' . __("Upgrade to PRO for only", "acp") . ' $' . acp_get_pro_price() . '

'; echo '
'; echo '

' . __('And enjoy the following extra options:', 'acp') . '

'; echo '
    '; echo '
  • ' . __('5 Different Toolbar Skins!', 'acp') . '
  • '; echo '
  • ' . __('3 Different Icons for the Toolbar Main Icon', 'acp') . '
  • '; echo '
  • ' . __('No Author Link', 'acp') . '
  • '; echo '
  • ' . __('3 Different Skiplinks skins!', 'acp') . '
  • '; echo '
  • ' . __('Unlimited Replacement Tags', 'acp') . '
  • '; echo '
  • ' . __('Full Customization of Contrast Colors', 'acp') . '
  • '; echo '
  • ' . __('Custom Color for the Focus Outline', 'acp') . '
  • '; echo '
  • ' . __('Full Control on which objects get Tabindex', 'acp') . '
  • '; echo '
  • ' . __('Accessibility Checker Tool (beta)', 'acp') . '
  • '; echo '
'; echo '
'; echo '
'; echo '
'; } function acp_get_pro_price() { return '16'; } function acp_upgrade_link() { return 'http://www.accessible-poetry.com/'; } function acp_upgrade_promote($text = null) { $output = ''; if( !$text ) $output .= __('Want more?', 'acp'); else $output .= $text; $output .= ' ' . __('Upgrade to PRO', 'acp') . ''; $output .= ''; return $output; }