內容簡介
Resell GD Plugin – 允許 GoDaddy 經銷商透過其經銷商進行產品銷售重定向和進行網域名稱搜尋。
此外掛程式幫助 Resell GD 設定一個商店前端,使他們的使用者可以執行網域搜尋和購買其他託管和網域產品。
功能包括:
* 升級安全的自訂化
* 匯入匯出的 GoDaddy 價目表
* 用於匯入 GoDaddy 的價目表匯出
自訂化
此外掛程式完全是用 PHP 物件構建的。除 gd_reseller.php 以外的所有物件都可以繼承以進行自訂化。以下是一些規則:
自訂物件必須在自訂目錄中。
檔名必須為 _custom.php,例如 gd_admin_custom.php。
類別的名稱必須以 _custom 命名,並繼承 gd_core,例如:class gd_core_custom inherits gd_core {。
應該包含一個呼叫父類別建構子的建構子:
function __construct() {
parent::__construct();
}
也可以自訂化 javascript 和 css 檔案。自訂項目放置在自訂資料夾中,並命名為 custom.js 和 custom.css。預設的 scripts 和 css 檔案會在自訂 scripts 之前併入程式碼。
外掛標籤
開發者團隊
原文外掛簡介
Resell GD Plugin – Allow GoDaddy Resellers to redirect product sales and perform domain name search through their reseller.
This plugin helps Resell GDs set up a store front on their own site that allows their users to perform Domain searched
and purchase other hosting and domain products.
Features include:
* Upgrade Safe customization
* Importing of exported GoDaddy Price Lists
* Exporting of Price Lists for importing into GoDaddy
Customization
This plugin is built completely with PHP Objects. All of the obhects except godaddyreseller.php can be inherited for customiztion.
There are some rules for this:
The customized object must be in the custom directory.
The filename must be _custom.php, i.e. gd_admin_custom.php
The class must be named _custom and inherit , i.e class gd_core_custom inherits gd_core {.
It should include a constructor that calls the parent constructor:
function __construct() {
parent::__construct();
}
javascript and css files may be customized also. The custom items are placed in the custom folder and named custom.js and
custom.css. The default scripts and css files are enqueued before the custom scripts.
