How can I insert HTML elements to an existent plugin's rendering a form in the admin panel?
-
I'm planning to write an addon plugin which adds a form field in the admin page of another plugin. The existent plugin uses a class and its methods to render the form. How can I achieve this? I suppose: 1. the addon plugin must be loaded after the main plugin. 2. redeclaring the class is not possible in PHP. Here is the demo plugin. I'd like to create another plugin that adds text in the page that this plugin creates. <?php /* Plugin Name: Demo Admin Page */ add_action('admin_menu', array( new Admin_Page_Demo( 'Demo Admin Page Plugin' ), "admin_menu" ) ); class Admin_Page_Demo { function __construct( $pagetitle, $menutitle='', $privilege='manage_options', $pageslug='' ) { $this->pagetitle = $pagetitle; $this->menutitle = !empty( $menutitle ) ? $menutitle : $pagetitle; $this->privilege = $privilege; $this->pageslug = !empty( $pageslug ) ? $pageslug : basename( __FILE__, ".php" ); } function admin_menu() { add_options_page( $this->pagetitle, $this->menutitle, $this->privilege, $this->pageslug, array( $this, 'admin_page' ) ); } function admin_page() { ?> <div class="wrap"> <h1><?php echo $this->pagetitle; ?></h1> <p>Hello world!</p> </div> <?php } } According to this video, do_action() is used to embed extra output. But I'm not sure how to implement it. I'm guessing apply_filter() might be used but not sure how it is used either.
-
Answer:
You could override the methods of the plugin's class via inheritance.
Charles Coxhead at Quora Visit the source
Related Q & A:
- How can I insert posted data into the database?Best solution by Stack Overflow
- How can I communicate Raspberry Pi and Arduino (in both ways) using a 10-15m distance wires?Best solution by Arduino
- How can I insert image in my Yahoo profile?Best solution by Yahoo! Answers
- How can I insert HTML into my Yahoo Group description?Best solution by Yahoo! Answers
- How can I insert a picture in Email without attaching it?Best solution by Super User
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.