5 Star 17 Fork 17

NextApp / wp-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.82 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
Winter Lau 提交于 2014-09-11 07:09 . initial commit
<?php
/**
* @package Nextapp
*/
/*
Plugin Name: Nextapp
Description: Nextapp interface is blogging web site to provide mobile phone client used to access the blog classification, the article and comment data interface.
Version: 1.0.5
Author: Daye
License: GPLv2 or later
*/
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
define('NEXTAPP_VERSION', '1.0.5');
define('NEXTAPP_PATH', dirname(__FILE__));
require NEXTAPP_PATH . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'Nextapp.php';
if (is_admin()) {
function nextapp_menu() {
if (function_exists('add_plugins_page')) {
add_plugins_page('Nextapp Manage', Nextapp::__('Nextapp Settings'), 'edit_plugins', 'nextapp', 'nextapp_options');
}else {
add_pages_page('Nextapp Manage', Nextapp::__('Nextapp Settings'), 'edit_plugins', 'nextapp', 'nextapp_options');
}
}
function nextapp_options() {
if (!current_user_can('edit_plugins')) {
wp_die(__('You do not have sufficient permissions to access this page.'));
}
include NEXTAPP_PATH . DIRECTORY_SEPARATOR . 'adminhtml' . DIRECTORY_SEPARATOR . 'render.phtml';
}
add_action('admin_menu', 'nextapp_menu');
# before save options.
function nextapp_whitelist_options($whitelist_options) {
return array_merge($whitelist_options, array(
'nextapp' => array_keys(Nextapp::options())
));
}
add_filter('whitelist_options', 'nextapp_whitelist_options');
}else {
Nextapp::singleton()->run();
}
PHP
1
https://gitee.com/nextapp/wp-plugin.git
git@gitee.com:nextapp/wp-plugin.git
nextapp
wp-plugin
wp-plugin
master

搜索帮助

14c37bed 8189591 565d56ea 8189591