內容簡介
使用分類或單獨地創建可選下載連結的媒體播放器。
我是一個Barbershop和聲合唱團的成員和網站管理員,我們非常依賴于學習和複習歌曲的學習曲目。在網站上,我創建了四個頁面:Bari、Bass、Lead和Tenor,並且使用一個shortcode顯示所有該部分的學習曲目。它也適用於mp4視頻。
功能包括:
* 升級安全的自定義
自定義
此插件幾乎完全使用PHP對象構建。除了dmcmedia.php之外的所有對象都可以繼承以進行自定義。
這有一些規則:
自定義對象必須位於自定義目錄中。
文件名必須為_custom.php,例如gd_admin_custom.php
類必須以_custom命名,並繼承gd_core,例如class gd_core_custom inherits gd_core {。
它應包括一個調用父類構造函數的構造函數:
function __construct() {
parent::__construct();
}
外掛標籤
開發者團隊
原文外掛簡介
Create media players with optional download link by category or singly.
I am a member and webmaster for a Barbershop Chorus and we rely heavily on learning
tracks to learn and review songs. On the website, I created four pages, Bari, Bass, Lead, and Tenor
and with one shortcode, display all the learning tracks for that part. It also works with mp4 videos.
Features include:
* Upgrade Safe customization
Customization
This plugin is built almost completely with PHP Objects. All of the obhects except dmcmedia.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();
}
