Added Docs and Support URL in plugin_row_meta which was removed from plugin_action_links

This commit is contained in:
shivapoudel 2014-08-29 23:39:17 +05:45
parent ec64534cb7
commit 40d66b2f57
1 changed files with 22 additions and 0 deletions

View File

@ -29,6 +29,7 @@ class WC_Install {
add_action( 'admin_init', array( $this, 'check_version' ), 5 );
add_action( 'in_plugin_update_message-woocommerce/woocommerce.php', array( $this, 'in_plugin_update_message' ) );
add_filter( 'plugin_action_links_' . WC_PLUGIN_BASENAME, array( $this, 'plugin_action_links' ) );
add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
}
/**
@ -696,6 +697,27 @@ class WC_Install {
return array_merge( $action_links, $links );
}
/**
* Show row meta on the plugin screen.
*
* @access public
* @param mixed $links Plugin Row Meta
* @param mixed $file Plugin Base file
* @return array
*/
public function plugin_row_meta( $links, $file ) {
if ( $file == WC_PLUGIN_BASENAME ) {
$row_meta = apply_filters( 'woocommerce_plugin_row_meta', array(
'docs' => '<a href="' . esc_url( apply_filters( 'woocommerce_docs_url', 'http://docs.woothemes.com/documentation/plugins/woocommerce/' ) ) . '" title="' . esc_attr( __( 'View this Plugin Documentation', 'woocommerce' ) ) . '">' . __( 'Docs', 'woocommerce' ) . '</a>',
'support' => '<a href="' . esc_url( apply_filters( 'woocommerce_support_url', 'http://support.woothemes.com/' ) ) . '" title="' . esc_attr( __( 'Visit Premium Customer Support Forum', 'woocommerce' ) ) . '">' . __( 'Premium Support', 'woocommerce' ) . '</a>',
) );
return array_merge( $links, $row_meta );
}
return (array) $links;
}
}
endif;