Download the PHP package technote/wordpress-plugin-base without Composer

On this page you can find all versions of the php package technote/wordpress-plugin-base. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wordpress-plugin-base

This repository is no longer maintained.

Moved to
https://github.com/wp-content-framework/core

Wordpress plugin base

Wordpress plugin 開発用のライブラリです。
管理画面やAPIなどの追加や設定値の読み書き等を容易にする機能が用意されています。

要件

手順

プラグインフォルダの作成

wp-content/plugins フォルダに プラグイン用のフォルダを作成

プラグインファイルの作成

作成したプラグインフォルダに「プラグイン名.php」(例:example.php) を作成
標準プラグイン情報
を参考にプラグインの情報を入力

このライブラリのインストール

composer を使用してインストールします。
作成したプラグインフォルダで以下のコマンドを実行します。

 
複数のプラグインでこのライブラリを使用する場合、最新のものが自動的に使用されます。

このライブラリの使用

作成したプラグインファイルにライブラリを使用する記述を追記します。
プラグインファイルはおおよそ以下のようなものになります。

このプラグインファイルと同じフォルダに「functions.php」を作成すると、いろいろな準備ができた後に自動的に読み込まれます。
プラグインの構成は以下のようなものになります。

基本設定

設定値 説明
main_menu_title 管理画面のメニュー名になります
db_version DBの設定を変更したら更新します
twitter ツイッターのアカウントを指定します(ダッシュボードでヘルプに表示されます。空で未使用)
github Githubのアカウントを指定します(ダッシュボードでヘルプに表示されます。空で未使用)
contact_url プラグインのお問い合わせ用のページのURLを指定します(ダッシュボードでヘルプに表示されます)
menu_image 管理画面のメニューアイコンを指定します
update_info_file_url 開発バージョンチェック情報用のURLを指定します

設定例:

設定を更新したら configs/config.php の db_version も更新します。
自動でテーブルの追加・更新が行われます。
データの取得・挿入・更新・削除は以下のように行います。

select 以外は 内部でWordPress標準の関数を使用しているため、
条件の指定の仕方は 'key' => 'value' (key = value) のみ可能です。
select の条件指定はライブラリ側で構築しており、
key = value

key in ( val1, val2, val3 )

key like '%value%'

などが指定可能です。

設定例:

設定ページで設定可能になります。
プログラムで使用するには以下のようにします。

画面の追加

POST の時に行う動作は事前にnonce checkが行われます。

API の追加

今後ドキュメント追加予定

filter の追加

今後ドキュメント追加予定

cron の追加

今後ドキュメント追加予定

テストの追加

test1 test2

Author

technote-space


All versions of wordpress-plugin-base with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
matthiasmullie/minify Version ^1.3
yahnis-elsts/plugin-update-checker Version ^4.4
mobiledetect/mobiledetectlib Version ^2.8
tijsverkoyen/css-to-inline-styles Version ^2.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package technote/wordpress-plugin-base contains the following files

Loading the files please wait ....