-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.php
More file actions
22 lines (21 loc) · 1.23 KB
/
config.php
File metadata and controls
22 lines (21 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* [ADMIN] PetitCustomField
*
* @link http://www.materializing.net/
* @author arata
* @package PetitCustomField
* @license MIT
*/
$title = 'プチ・カスタムフィールドプラグイン';
$description = 'ブログ記事に入力欄を設定できます。';
$author = 'arata';
$url = 'http://www.materializing.net/';
$adminLink = array('plugin' => 'petit_custom_field', 'controller' => 'petit_custom_field_configs', 'action' => 'index');
$installMessage = 'ブログ記事の投稿画面に入力欄が追加されます。';
$installMessage .= '<br />インストール直後は、各ブログコンテンツのカスタムフィールドは無効状態です。カスタムフィールド設定画面より、利用するブログを有効に変更したのち利用してください。';
$installMessage .= '<br />また、1つのフィールドに大量の文字列を追加する可能性がある場合は、<br />データベース内の以下のテーブル内のカラム「value」の型を「LONGTEXT」に変更してください。';
$installMessage .= '<ul>';
$installMessage .= '<li>petit_custom_field_config_fields</li>';
$installMessage .= '<li>petit_custom_fields</li>';
$installMessage .= '</ul>';