Recommend this page to a friend! |
Download .zip |
Info | View files (4) | Download .zip | Reputation | Support forum (1) | Blog (1) | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2021-11-15 (0 years ago) | Not enough user ratings | Total: 43 | All time: 10,448 This week: 189 |
Version | License | PHP version | Categories | |||
product-admin 1.0.0 | GNU General Publi... | 7.2 | PHP 5, E-Commerce |
To be used either as a standalone module or library, or as part of the WLTDO framework, this module intends to automate and ease the process of customizing WC product edit pages.
Initially, classes will take care of everything as you add new tabs and panels to product meta within the edit pages. Additionally, we are developing classes to manage and alter existent tabs and fields.
The easier way of using this package is by requiring it using Composer.
In the plugin's main file, use the classes and autoload them with Composer.
use Wooletthedevsout\Product\Admin\{Tabs, Panels};
require __DIR__ . '/vendor/autoload.php';
$tabs = new Tabs('New Tab', $fields);
The class Tabs needs two parameters: the first is the name (not the slug) of the new tab, and the second an array of fields to be added. The array admits any number of fields, each one of them as a new array.
// Once the tab is created, we need to inject the panels dependency, using the method getPanel()
$tabs->getPanel();
// Also, a title can be added if you want so
$tabs->addTitle('The title');
Ohh... of course. As shown, the fields and firstly passed to the Tabs instance as an array. For this moment, we cover all field types with native support by Woocommerce: text, number, textarea, checkbox, select, radio (needs a CSS fix, as the WC native function is defective for the product edit area).
So, we need an array of arrays. Each element is a field, and for each of these, the first element will be the field type:
* [{{FIELD TYPE}}, {{SLUG}}, {{LABEL}}, {{DESCRIPTION}}]*
For the select type, an additional element (another array) will include the options to be added. The same happens for the radio field, although for this latter we just cut the description, as it generates a lot of bugs within the backend. So, for the SELECT field and the RADIO field, respectivelly, we need to register like this:
* [{{FIELD TYPE}}, {{SLUG}}, {{LABEL}}, {{DESCRIPTION}}, {{ARRAY OF OPTIONS}}]* * [{{FIELD TYPE}}, {{SLUG}}, {{LABEL}}, {{ARRAY OF OPTIONS}}]*
Thus, imagine that we want two text fields, one checkbox, one select field and one radio, considering the previous code. The array to be passed would look like this:
$forms = [
[
'text',
'user_message',
'Cool Label',
'Description for the tooltip with question mark.'
],
[
'text',
'capacity',
'Another Label',
'Description for the tooltip with question mark.'
],
[
'checkbox',
'confirm',
'Confirmation',
'Description for the tooltip with question mark.'
],
[
'select',
'choices',
'Select Title',
'Description for the tooltip with question mark.',
[
'Choice 1',
'Choice 2',
'Choice 3'
]
],
[
'radio',
'choices',
'Select Title',
[
'Choice 1',
'Choice 2'
]
];
Well, this is one of the first libraries and modules for the new Woo Let The Devs Out framework. So I imagine you guys have a lot of questions. Let's try to answer some of them.
No, the Panels class is already equipped with the methods to do so.
Honestly? We are working at... we are not pretty satisfied with WC's native validation, so we should eventually come up with something more sophisticated.
Definitely, the point with the WLTDO framework is to provide, ultimately, an easy and OO way of extending Woocommerce. Although some implementations and extensions for WC are really well-developed, like those for payment gateways, when developing complex integrations and entire packages, they require us to be really repetitive.
Files |
File | Role | Description | ||
---|---|---|---|---|
src (2 files) | ||||
composer.json | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
User Comments (1) | |||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.