mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]升级框架到Think.Admin 2.0
This commit is contained in:
parent
715de9518b
commit
b58f6115a5
@ -67,15 +67,12 @@ class Auth extends BasicAdmin
|
||||
protected function _apply_getnode($auth_id)
|
||||
{
|
||||
$nodes = NodeService::get();
|
||||
$checked = Db::name('SystemAuthNode')->where('auth', $auth_id)->column('node');
|
||||
$checked = Db::name('SystemAuthNode')->where(['auth' => $auth_id])->column('node');
|
||||
foreach ($nodes as $key => &$node) {
|
||||
$node['checked'] = in_array($node['node'], $checked);
|
||||
if (empty($node['is_auth']) && substr_count($node['node'], '/') > 1) {
|
||||
unset($nodes[$key]);
|
||||
}
|
||||
}
|
||||
$allnode = $this->_apply_filter(ToolsService::arr2tree($nodes, 'node', 'pnode', '_sub_'));
|
||||
$this->success('获取节点成功!', '', $allnode);
|
||||
$all = $this->_apply_filter(ToolsService::arr2tree($nodes, 'node', 'pnode', '_sub_'));
|
||||
$this->success('获取节点成功!', '', $all);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -84,14 +81,13 @@ class Auth extends BasicAdmin
|
||||
*/
|
||||
protected function _apply_save($auth_id)
|
||||
{
|
||||
$data = [];
|
||||
$post = $this->request->post();
|
||||
list($data, $post) = [[], $this->request->post()];
|
||||
foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
|
||||
$data[] = ['auth' => $auth_id, 'node' => $node];
|
||||
}
|
||||
Db::name('SystemAuthNode')->where('auth', $auth_id)->delete();
|
||||
Db::name('SystemAuthNode')->where(['auth' => $auth_id])->delete();
|
||||
Db::name('SystemAuthNode')->insertAll($data);
|
||||
$this->success('节点授权更新成功!', '');
|
||||
$this->success('节点授权更新成功!', '');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -105,8 +101,6 @@ class Auth extends BasicAdmin
|
||||
foreach ($nodes as $key => &$node) {
|
||||
if (!empty($node['_sub_']) && is_array($node['_sub_'])) {
|
||||
$node['_sub_'] = $this->_apply_filter($node['_sub_'], $level + 1);
|
||||
} elseif ($level < 3) {
|
||||
unset($nodes[$key]);
|
||||
}
|
||||
}
|
||||
return $nodes;
|
||||
@ -134,9 +128,9 @@ class Auth extends BasicAdmin
|
||||
public function forbid()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("权限禁用成功!", '');
|
||||
$this->success("权限禁用成功!", '');
|
||||
}
|
||||
$this->error("权限禁用失败, 请稍候再试!");
|
||||
$this->error("权限禁用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -145,9 +139,9 @@ class Auth extends BasicAdmin
|
||||
public function resume()
|
||||
{
|
||||
if (DataService::update($this->table)) {
|
||||
$this->success("权限启用成功!", '');
|
||||
$this->success("权限启用成功!", '');
|
||||
}
|
||||
$this->error("权限启用失败, 请稍候再试!");
|
||||
$this->error("权限启用失败,请稍候再试!");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -158,9 +152,9 @@ class Auth extends BasicAdmin
|
||||
if (DataService::update($this->table)) {
|
||||
$id = $this->request->post('id');
|
||||
Db::name('SystemAuthNode')->where('auth', $id)->delete();
|
||||
$this->success("权限删除成功!", '');
|
||||
$this->success("权限删除成功!", '');
|
||||
}
|
||||
$this->error("权限删除失败, 请稍候再试!");
|
||||
$this->error("权限删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -45,8 +45,7 @@ class Config extends BasicAdmin
|
||||
public function index()
|
||||
{
|
||||
if (!$this->request->isPost()) {
|
||||
$this->assign('title', $this->title);
|
||||
return view();
|
||||
return view('', ['title' => $this->title]);
|
||||
}
|
||||
foreach ($this->request->post() as $key => $vo) {
|
||||
sysconf($key, $vo);
|
||||
@ -61,7 +60,7 @@ class Config extends BasicAdmin
|
||||
public function file()
|
||||
{
|
||||
$this->title = '文件存储配置';
|
||||
$alert = ['type' => 'success', 'title' => '操作提示', 'content' => '文件引擎参数影响全局文件上传功能,请勿随意修改!'];
|
||||
$alert = ['type' => 'success', 'title' => '操作提示', 'content' => '文件引擎参数影响全局文件上传功能,请勿随意修改!'];
|
||||
$this->assign('alert', $alert);
|
||||
return $this->index();
|
||||
}
|
||||
|
@ -38,31 +38,44 @@ class Index extends BasicAdmin
|
||||
public function index()
|
||||
{
|
||||
NodeService::applyAuthNode();
|
||||
$list = Db::name('SystemMenu')->where('status', '1')->order('sort asc,id asc')->select();
|
||||
$menus = $this->_filterMenu(ToolsService::arr2tree($list));
|
||||
$list = (array) Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select();
|
||||
$menus = $this->_filterMenu(ToolsService::arr2tree($list), NodeService::get());
|
||||
return view('', ['title' => '系统管理', 'menus' => $menus]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 后台主菜单权限过滤
|
||||
* @param array $menus
|
||||
* @param array $nodes
|
||||
* @return array
|
||||
*/
|
||||
private function _filterMenu($menus)
|
||||
private function _filterMenu($menus, $nodes)
|
||||
{
|
||||
foreach ($menus as $key => &$menu) {
|
||||
if (!empty($menu['sub'])) {
|
||||
$menu['sub'] = $this->_filterMenu($menu['sub']);
|
||||
}
|
||||
if (!empty($menu['sub'])) {
|
||||
// 存在子菜单时,直接使用递归处理
|
||||
if (!empty($menu['sub'])):
|
||||
$menu['sub'] = $this->_filterMenu($menu['sub'], $nodes);
|
||||
endif;
|
||||
if (!empty($menu['sub'])):
|
||||
$menu['url'] = '#';
|
||||
} elseif (stripos($menu['url'], 'http') === 0) {
|
||||
// 菜单链接以http开头时,不做处理
|
||||
elseif (preg_match('/^https?\:/i', $menu['url'])) :
|
||||
continue;
|
||||
} elseif ($menu['url'] !== '#' && auth(join('/', array_slice(explode('/', $menu['url']), 0, 3)))) {
|
||||
// 菜单链接不为空时,判断登录状态及权限验证
|
||||
elseif ($menu['url'] !== '#') :
|
||||
$node = join('/', array_slice(explode('/', preg_replace('/[\W^_]/', '/', $menu['url'])), 0, 3));
|
||||
$menu['url'] = url($menu['url']);
|
||||
} else {
|
||||
// 节点需要验证验证,未登录时移除此菜单
|
||||
if (isset($nodes[$node]) && $nodes[$node]['is_login'] && !session('user')) :
|
||||
unset($menus[$key]);
|
||||
// 节点需要权限验证,无权限时移除此菜单
|
||||
elseif (isset($nodes[$node]) && $nodes[$node]['is_auth'] && session('user') && !auth($node)) :
|
||||
unset($menus[$key]);
|
||||
endif;
|
||||
// 非以上情况时,移除此菜单
|
||||
else :
|
||||
unset($menus[$key]);
|
||||
}
|
||||
endif;
|
||||
}
|
||||
return $menus;
|
||||
}
|
||||
@ -73,15 +86,13 @@ class Index extends BasicAdmin
|
||||
*/
|
||||
public function main()
|
||||
{
|
||||
if (session('user.username') === 'admin' && session('user.password') === '21232f297a57a5a743894a0e4a801fc3') {
|
||||
if (session('user.password') === '21232f297a57a5a743894a0e4a801fc3') {
|
||||
$url = url('admin/index/pass') . '?id=' . session('user.id');
|
||||
$alert = ['type' => 'danger', 'title' => '安全提示', 'content' => "超级管理员默认密码未修改,建议马上<a href='javascript:void(0)' data-modal='{$url}'>修改</a>!",];
|
||||
$this->assign('alert', $alert);
|
||||
$this->assign('title', '后台首页');
|
||||
}
|
||||
$_version = Db::query('select version() as ver');
|
||||
$version = array_pop($_version);
|
||||
return view('', ['mysql_ver' => $version['ver']]);
|
||||
return view('', ['mysql_ver' => array_pop($_version)['ver'], 'title' => '后台首页']);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -95,21 +106,19 @@ class Index extends BasicAdmin
|
||||
if ($this->request->isGet()) {
|
||||
$this->assign('verify', true);
|
||||
return $this->_form('SystemUser', 'user/pass');
|
||||
} else {
|
||||
$data = $this->request->post();
|
||||
if ($data['password'] !== $data['repassword']) {
|
||||
$this->error('两次输入的密码不一致,请重新输入!');
|
||||
}
|
||||
$user = Db::name('SystemUser')->where('id', session('user.id'))->find();
|
||||
if (md5($data['oldpassword']) !== $user['password']) {
|
||||
$this->error('旧密码验证失败,请重新输入!');
|
||||
}
|
||||
if (DataService::save('SystemUser', ['id' => session('user.id'), 'password' => md5($data['password'])])) {
|
||||
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
||||
} else {
|
||||
$this->error('密码修改失败,请稍候再试!');
|
||||
}
|
||||
}
|
||||
$data = $this->request->post();
|
||||
if ($data['password'] !== $data['repassword']) {
|
||||
$this->error('两次输入的密码不一致,请重新输入!');
|
||||
}
|
||||
$user = Db::name('SystemUser')->where('id', session('user.id'))->find();
|
||||
if (md5($data['oldpassword']) !== $user['password']) {
|
||||
$this->error('旧密码验证失败,请重新输入!');
|
||||
}
|
||||
if (DataService::save('SystemUser', ['id' => session('user.id'), 'password' => md5($data['password'])])) {
|
||||
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
||||
}
|
||||
$this->error('密码修改失败,请稍候再试!');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -36,25 +36,28 @@ class Log extends BasicAdmin
|
||||
|
||||
/**
|
||||
* 日志列表
|
||||
* @return array|string
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '系统操作日志';
|
||||
$get = $this->request->get();
|
||||
// 日志行为类别
|
||||
$actions = Db::name($this->table)->group('action')->column('action');
|
||||
$this->assign('actions', $actions);
|
||||
// 日志数据库对象
|
||||
$db = Db::name($this->table)->order('id desc');
|
||||
foreach (['action', 'content', 'username'] as $key) {
|
||||
if (isset($get[$key]) && $get[$key] !== '') {
|
||||
$db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
}
|
||||
$this->assign('actions', $actions);
|
||||
return parent::_list($db);
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param $data
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_data_filter(&$data)
|
||||
{
|
||||
|
@ -29,18 +29,6 @@ use think\Db;
|
||||
class Login extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 默认检查用户登录状态
|
||||
* @var bool
|
||||
*/
|
||||
public $checkLogin = false;
|
||||
|
||||
/**
|
||||
* 默认检查节点访问权限
|
||||
* @var bool
|
||||
*/
|
||||
public $checkAuth = false;
|
||||
|
||||
/**
|
||||
* 控制器基础方法
|
||||
*/
|
||||
@ -59,25 +47,24 @@ class Login extends BasicAdmin
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
return $this->fetch('', ['title' => '用户登录']);
|
||||
} else {
|
||||
// 输入数据效验
|
||||
$username = $this->request->post('username', '', 'trim');
|
||||
$password = $this->request->post('password', '', 'trim');
|
||||
strlen($username) < 4 && $this->error('登录账号长度不能少于4位有效字符!');
|
||||
strlen($password) < 4 && $this->error('登录密码长度不能少于4位有效字符!');
|
||||
// 用户信息验证
|
||||
$user = Db::name('SystemUser')->where('username', $username)->find();
|
||||
empty($user) && $this->error('登录账号不存在,请重新输入!');
|
||||
($user['password'] !== md5($password)) && $this->error('登录密码与账号不匹配,请重新输入!');
|
||||
empty($user['status']) && $this->error('账号已经被禁用,请联系管理!');
|
||||
// 更新登录信息
|
||||
$data = ['login_at' => ['exp', 'now()'], 'login_num' => ['exp', 'login_num+1']];
|
||||
Db::name('SystemUser')->where('id', $user['id'])->update($data);
|
||||
session('user', $user);
|
||||
!empty($user['authorize']) && NodeService::applyAuthNode();
|
||||
LogService::write('系统管理', '用户登录系统成功');
|
||||
$this->success('登录成功,正在进入系统...', '@admin');
|
||||
}
|
||||
// 输入数据效验
|
||||
$username = $this->request->post('username', '', 'trim');
|
||||
$password = $this->request->post('password', '', 'trim');
|
||||
strlen($username) < 4 && $this->error('登录账号长度不能少于4位有效字符!');
|
||||
strlen($password) < 4 && $this->error('登录密码长度不能少于4位有效字符!');
|
||||
// 用户信息验证
|
||||
$user = Db::name('SystemUser')->where('username', $username)->find();
|
||||
empty($user) && $this->error('登录账号不存在,请重新输入!');
|
||||
($user['password'] !== md5($password)) && $this->error('登录密码与账号不匹配,请重新输入!');
|
||||
empty($user['status']) && $this->error('账号已经被禁用,请联系管理!');
|
||||
// 更新登录信息
|
||||
$data = ['login_at' => ['exp', 'now()'], 'login_num' => ['exp', 'login_num+1']];
|
||||
Db::name('SystemUser')->where(['id' => $user['id']])->update($data);
|
||||
session('user', $user);
|
||||
!empty($user['authorize']) && NodeService::applyAuthNode();
|
||||
LogService::write('系统管理', '用户登录系统成功');
|
||||
$this->success('登录成功,正在进入系统...', '@admin');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -40,8 +40,8 @@ class Node extends BasicAdmin
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$alert = ['type' => 'danger', 'title' => '安全警告', 'content' => '结构为系统自动生成, 状态数据请勿随意修改!'];
|
||||
$nodes = ToolsService::arr2table(NodeService::get(), 'node', 'pnode');
|
||||
$alert = ['type' => 'danger', 'title' => '安全警告', 'content' => '结构为系统自动生成, 状态数据请勿随意修改!'];
|
||||
return view('', ['title' => '系统节点管理', 'nodes' => $nodes, 'alert' => $alert]);
|
||||
}
|
||||
|
||||
@ -52,11 +52,13 @@ class Node extends BasicAdmin
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
$post = $this->request->post();
|
||||
if (isset($post['name']) && isset($post['value'])) {
|
||||
$nameattr = explode('.', $post['name']);
|
||||
$field = array_shift($nameattr);
|
||||
$data = ['node' => join(',', $nameattr), $field => $post['value']];
|
||||
DataService::save($this->table, $data, 'node');
|
||||
if (isset($post['list'])) {
|
||||
$data = [];
|
||||
foreach ($post['list'] as $vo) {
|
||||
$data['node'] = $vo['node'];
|
||||
$data[$vo['name']] = $vo['value'];
|
||||
}
|
||||
!empty($data) && DataService::save($this->table, $data, 'node');
|
||||
$this->success('参数保存成功!', '');
|
||||
}
|
||||
} else {
|
||||
|
@ -16,7 +16,6 @@ namespace app\admin\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use service\FileService;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 插件助手控制器
|
||||
@ -28,29 +27,18 @@ use think\Db;
|
||||
class Plugs extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 默认检查用户登录状态
|
||||
* @var bool
|
||||
*/
|
||||
public $checkLogin = false;
|
||||
|
||||
/**
|
||||
* 默认检查节点访问权限
|
||||
* @var bool
|
||||
*/
|
||||
public $checkAuth = false;
|
||||
|
||||
/**
|
||||
* 文件上传
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function upfile()
|
||||
{
|
||||
if (!in_array(($uptype = $this->request->get('uptype')), ['local', 'qiniu', 'oss'])) {
|
||||
$uptype = $this->request->get('uptype');
|
||||
if (!in_array($uptype, ['local', 'qiniu', 'oss'])) {
|
||||
$uptype = sysconf('storage_type');
|
||||
}
|
||||
$types = $this->request->get('type', 'jpg,png');
|
||||
$mode = $this->request->get('mode', 'one');
|
||||
$types = $this->request->get('type', 'jpg,png');
|
||||
$this->assign('mimes', FileService::getFileMine($types));
|
||||
$this->assign('field', $this->request->get('field', 'file'));
|
||||
return view('', ['mode' => $mode, 'types' => $types, 'uptype' => $uptype]);
|
||||
@ -63,15 +51,15 @@ class Plugs extends BasicAdmin
|
||||
public function upload()
|
||||
{
|
||||
$file = $this->request->file('file');
|
||||
$md5s = str_split($this->request->post('md5'), 16);
|
||||
$ext = pathinfo($file->getInfo('name'), 4);
|
||||
$filename = join('/', $md5s) . ".{$ext}";
|
||||
$md5 = str_split($this->request->post('md5'), 16);
|
||||
$filename = join('/', $md5) . ".{$ext}";
|
||||
// 文件上传Token验证
|
||||
if ($this->request->post('token') !== md5($filename . session_id())) {
|
||||
return json(['code' => 'ERROR', '文件上传验证失败']);
|
||||
}
|
||||
// 文件上传处理
|
||||
if (($info = $file->move('static' . DS . 'upload' . DS . $md5s[0], $md5s[1], true))) {
|
||||
if (($info = $file->move('static' . DS . 'upload' . DS . $md5[0], $md5[1], true))) {
|
||||
if (($site_url = FileService::getFileUrl($filename, 'local'))) {
|
||||
return json(['data' => ['site_url' => $site_url], 'code' => 'SUCCESS', 'msg' => '文件上传成功']);
|
||||
}
|
||||
@ -85,7 +73,7 @@ class Plugs extends BasicAdmin
|
||||
public function upstate()
|
||||
{
|
||||
$post = $this->request->post();
|
||||
$filename = join('/', str_split($post['md5'], 16)) . '.' . pathinfo($post['filename'], PATHINFO_EXTENSION);
|
||||
$filename = join('/', str_split($post['md5'], 16)) . '.' . pathinfo($post['filename'], 4);
|
||||
// 检查文件是否已上传
|
||||
if (($site_url = FileService::getFileUrl($filename))) {
|
||||
$this->result(['site_url' => $site_url], 'IS_FOUND');
|
||||
@ -123,14 +111,13 @@ class Plugs extends BasicAdmin
|
||||
*/
|
||||
protected function _getQiniuToken($key)
|
||||
{
|
||||
$host = sysconf('storage_qiniu_domain');
|
||||
$bucket = sysconf('storage_qiniu_bucket');
|
||||
$accessKey = sysconf('storage_qiniu_access_key');
|
||||
$secretKey = sysconf('storage_qiniu_secret_key');
|
||||
$bucket = sysconf('storage_qiniu_bucket');
|
||||
$host = sysconf('storage_qiniu_domain');
|
||||
$protocol = sysconf('storage_qiniu_is_https') ? 'https' : 'http';
|
||||
$params = [
|
||||
"scope" => "{$bucket}:{$key}",
|
||||
"deadline" => 3600 + time(),
|
||||
"scope" => "{$bucket}:{$key}", "deadline" => 3600 + time(),
|
||||
"returnBody" => "{\"data\":{\"site_url\":\"{$protocol}://{$host}/$(key)\",\"file_url\":\"$(key)\"}, \"code\": \"SUCCESS\"}",
|
||||
];
|
||||
$data = str_replace(['+', '/'], ['-', '_'], base64_encode(json_encode($params)));
|
||||
@ -147,13 +134,4 @@ class Plugs extends BasicAdmin
|
||||
return view('', ['field' => $field]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 区域数据
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function region()
|
||||
{
|
||||
return json(Db::name('DataRegion')->where('status', '1')->column('code,name'));
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -39,19 +39,14 @@ class User extends BasicAdmin
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
// 设置页面标题
|
||||
$this->title = '系统用户管理';
|
||||
// 获取到所有GET参数
|
||||
$get = $this->request->get();
|
||||
// 实例Query对象
|
||||
$db = Db::name($this->table)->where('is_deleted', '0');
|
||||
// 应用搜索条件
|
||||
$db = Db::name($this->table)->where(['is_deleted' => '0']);
|
||||
foreach (['username', 'phone'] as $key) {
|
||||
if (isset($get[$key]) && $get[$key] !== '') {
|
||||
$db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
}
|
||||
// 实例化并显示
|
||||
return parent::_list($db);
|
||||
}
|
||||
|
||||
@ -111,7 +106,7 @@ class User extends BasicAdmin
|
||||
}
|
||||
if (isset($data['id'])) {
|
||||
unset($data['username']);
|
||||
} elseif (Db::name($this->table)->where('username', $data['username'])->find()) {
|
||||
} elseif (Db::name($this->table)->where(['username' => $data['username']])->find()) {
|
||||
$this->error('用户账号已经存在,请使用其它账号!');
|
||||
}
|
||||
} else {
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;" data-auto="true" method="post">
|
||||
{if !empty($list)}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
@ -74,5 +75,8 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
{else}
|
||||
<p class="help-blok">暂时无记录</p>
|
||||
{/if}
|
||||
</form>
|
||||
{/block}
|
@ -4,6 +4,6 @@
|
||||
{include file="extra@admin/main/top"}
|
||||
<div class="framework-body framework-sidebar-mini">
|
||||
{include file="extra@admin/main/left"}
|
||||
<div class="framework-container layer-main-container"></div>
|
||||
<div class="framework-container" style="left:0"></div>
|
||||
</div>
|
||||
{/block}
|
@ -1,11 +1,11 @@
|
||||
{extend name="extra@admin/main"}
|
||||
|
||||
{block name="style"}
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/theme/default/css/login.css">
|
||||
<link rel="stylesheet" href="__STATIC__/theme/default/css/login.css">
|
||||
{/block}
|
||||
|
||||
{block name="body"}
|
||||
<div class="login-container" style="height:100%">
|
||||
<div class="login-container full-height">
|
||||
|
||||
<!-- 动态云层动画 开始 -->
|
||||
<div class="clouds clouds-footer"></div>
|
||||
@ -15,26 +15,24 @@
|
||||
|
||||
<!-- 顶部导航条 开始 -->
|
||||
<div class="header">
|
||||
<span>欢迎登录后台管理界面平台</span>
|
||||
<span class="title notselect">
|
||||
欢迎登录 {:sysconf('app_name')} 后台管理 <sup>{:sysconf('app_version')}</sup>
|
||||
</span>
|
||||
<ul>
|
||||
<li><a href="{:url('@')}">回首页</a></li>
|
||||
<li>
|
||||
<a href="javascript:void(0)" target="_blank"><b style="color:#fff">帮助</b></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://sw.bos.baidu.com/sw-search-sp/software/4bcf5e4f1835b/ChromeStandalone_54.0.2840.99_Setup.exe" target="_blank">
|
||||
<b style="color:#fff">推荐谷歌浏览器</b>
|
||||
<!--<li class="notselect"><a href="javascript:void(0)" target="_blank">帮助</a></li>-->
|
||||
<li class="notselect">
|
||||
<a href="http://sw.bos.baidu.com/sw-search-sp/software/4bcf5e4f1835b/ChromeStandalone_54.0.2840.99_Setup.exe">
|
||||
<b>推荐使用谷歌浏览器</b>
|
||||
</a>
|
||||
</li>
|
||||
<li><a target="_blank" href="http://www.cuci.cc">楚才官网</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- 顶部导航条 结束 -->
|
||||
|
||||
<!-- 页面表单主体 开始 -->
|
||||
<div class="container" style="top:50%;margin-top:-300px">
|
||||
|
||||
<form onsubmit="return false;" data-time="0.001" data-auto="true" method="post" class="content layui-form">
|
||||
<form onsubmit="return false;" data-time="0.001" data-auto="true" method="post"
|
||||
class="content layui-form animated fadeInDown">
|
||||
<div class="people">
|
||||
<div class="tou"></div>
|
||||
<div id="left-hander" class="initial_left_hand transition"></div>
|
||||
@ -42,33 +40,20 @@
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<input name='username' style='display:none'/>
|
||||
<input required="required"
|
||||
pattern="^\S{4,}$"
|
||||
title="请输入4位及以上的字符"
|
||||
type="text"
|
||||
name="username"
|
||||
value="admin"
|
||||
autocomplete="off"
|
||||
autofocus="autofocus"
|
||||
class="login-input username"
|
||||
placeholder="请输入用户名/手机号码"/>
|
||||
<input name='username' class="hide"/>
|
||||
<input required="required" pattern="^\S{4,}$" value="" name="username"
|
||||
autofocus="autofocus" autocomplete="off" class="login-input username"
|
||||
title="请输入4位及以上的字符" placeholder="请输入用户名/手机号码"/>
|
||||
</li>
|
||||
<li>
|
||||
<input name='password' style='display:none'/>
|
||||
<input required="required"
|
||||
pattern="^\S{4,}$"
|
||||
title="请输入4位及以上的字符"
|
||||
type="password"
|
||||
name="password"
|
||||
value="admin"
|
||||
autocomplete="off"
|
||||
class="login-input password"
|
||||
placeholder="请输入密码"/>
|
||||
<input name='password' class="hide"/>
|
||||
<input required="required" pattern="^\S{4,}$" value="" name="password"
|
||||
type="password" autocomplete="off" class="login-input password"
|
||||
title="请输入4位及以上的字符" placeholder="请输入密码"/>
|
||||
</li>
|
||||
<li class="text-center">
|
||||
<button type="submit" class="layui-btn layui-disabled" data-form-loaded="立 即 登 入">正 在 载 入</button>
|
||||
<a style="position:absolute;display:block;right:0" href="javascript:void(0)">忘记密码?</a>
|
||||
<!--<a style="position:absolute;display:block;right:0" href="javascript:void(0)">忘记密码?</a>-->
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
||||
@ -77,7 +62,7 @@
|
||||
|
||||
<!-- 底部版权信息 开始 -->
|
||||
{if sysconf('site_copy')}
|
||||
<div class="footer">{:sysconf('site_copy')}</div>
|
||||
<div class="footer notselect">{:sysconf('site_copy')}</div>
|
||||
{/if}
|
||||
<!-- 底部版本信息 结束 -->
|
||||
|
||||
|
@ -3,63 +3,100 @@
|
||||
{block name="content"}
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:20px"></th>
|
||||
<th class='text-left'>系统节点结构</th>
|
||||
<th class='text-left'></th>
|
||||
<th> </th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th style="width:20px"></th>
|
||||
<th class='text-left'>系统节点结构</th>
|
||||
<th class='text-left'></th>
|
||||
<th> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $nodes as $key=>$vo}
|
||||
<tr>
|
||||
<td style="width:20px"></td>
|
||||
<td class='text-left nowrap'>
|
||||
{$vo.spl}{$vo.node}
|
||||
{if auth("$classuri/save")}
|
||||
<input class='layui-input layui-input-inline title-input' style='height:28px;line-height:28px;width:auto' name='title.{$vo.node}' value="{$vo.title}"/>
|
||||
{foreach $nodes as $key=>$vo}
|
||||
<tr>
|
||||
<td style="width:20px"></td>
|
||||
<td class='text-left nowrap'>
|
||||
{$vo.spl}{$vo.node}
|
||||
{if auth("$classuri/save")}
|
||||
<input class='layui-input layui-input-inline title-input' name='title' data-node="{$vo.node}"
|
||||
value="{$vo.title}" style='height:28px;line-height:28px;width:auto'/>
|
||||
{/if}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
{if auth("$classuri/save")}
|
||||
<label data-tips-text="勾选后需要登录后才能访问">
|
||||
{if substr_count($vo['node'],'/')==2}
|
||||
{notempty name='vo.is_login'}
|
||||
<input checked='checked' class="check-box login_{$key}"
|
||||
type='checkbox' value='1' name='is_login' data-node="{$vo.node}"
|
||||
onclick="!this.checked&&($('.auth_{$key}')[0].checked=!!this.checked)"/>
|
||||
{else}
|
||||
<input class="check-box login_{$key}" type='checkbox' value='1' name='is_login' data-node="{$vo.node}"
|
||||
onclick="!this.checked&&($('.auth_{$key}')[0].checked=!!this.checked)"/>
|
||||
{/notempty}
|
||||
加入登录控制
|
||||
{/if}
|
||||
</td>
|
||||
<td class='text-left nowrap'>
|
||||
{if auth("$classuri/save")}
|
||||
<label>
|
||||
{if substr_count($vo['node'],'/')==2}
|
||||
{notempty name='vo.is_auth'}
|
||||
<input name='is_auth.{$vo.node}' checked='checked' class="check-box" type='checkbox' value='1'/>
|
||||
{else}
|
||||
<input name='is_auth.{$vo.node}' class="check-box" type='checkbox' value='1'/>
|
||||
{/notempty}
|
||||
加入权限控制
|
||||
{/if}
|
||||
</label>
|
||||
|
||||
<label>
|
||||
{if substr_count($vo['node'],'/')==2}
|
||||
{notempty name='vo.is_menu'}
|
||||
<input name='is_menu.{$vo.node}' checked='checked' class='check-box' type='checkbox' value='1'/>
|
||||
{else}
|
||||
<input name='is_menu.{$vo.node}' class='check-box' type='checkbox' value='1'/>
|
||||
{/notempty}
|
||||
可设为菜单
|
||||
{/if}
|
||||
</label>
|
||||
</label>
|
||||
|
||||
<label data-tips-text="勾选后需配置用户权限后才能访问">
|
||||
{if substr_count($vo['node'],'/')==2}
|
||||
{notempty name='vo.is_auth'}
|
||||
<input name='is_auth' data-node="{$vo.node}" checked='checked' class="check-box auth_{$key}"
|
||||
type='checkbox' onclick="this.checked&&($('.login_{$key}')[0].checked=!!this.checked)"
|
||||
value='1'/>
|
||||
{else}
|
||||
<input name='is_auth' data-node="{$vo.node}" class="check-box auth_{$key}" type='checkbox' value='1'
|
||||
onclick="this.checked&&($('.login_{$key}')[0].checked=!!this.checked)"
|
||||
/>
|
||||
{/notempty}
|
||||
加入权限控制
|
||||
{/if}
|
||||
</td>
|
||||
<td style="width:100%"></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</label>
|
||||
|
||||
<label data-tips-text="勾选后配置菜单时节点可自动选择">
|
||||
{if substr_count($vo['node'],'/')==2}
|
||||
{notempty name='vo.is_menu'}
|
||||
<input name='is_menu' data-node="{$vo.node}" checked='checked' class='check-box menu_{$key}'
|
||||
type='checkbox' value='1'/>
|
||||
{else}
|
||||
<input name='is_menu' data-node="{$vo.node}" class='check-box menu_{$key}' type='checkbox' value='1'/>
|
||||
{/notempty}
|
||||
加入菜单节点选择器
|
||||
{/if}
|
||||
</label>
|
||||
{/if}
|
||||
</td>
|
||||
<td style="width:100%"></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if auth("$classuri/save")}
|
||||
<script>
|
||||
$(function () {
|
||||
$('input.title-input').on('blur', function () {
|
||||
$.form.load('{:url("save")}', {name: this.name, value: this.value}, 'POST', function (ret) {
|
||||
var data = {list: [{name: this.name, value: this.value, node: this.getAttribute('data-node')}]};
|
||||
$.form.load('{:url("save")}', data, 'POST', function (ret) {
|
||||
if(ret.code===0){
|
||||
setTimeout(function(){
|
||||
$.form.reload();
|
||||
},3000);
|
||||
$.msg.auto(ret);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
});
|
||||
$('input.check-box').on('click', function () {
|
||||
$.form.load('{:url("save")}', {name: this.name, value: this.checked ? 1 : 0}, 'POST', function (ret) {
|
||||
var data = {list: []};
|
||||
$(this).parent().parent().find('input').map(function () {
|
||||
data.list.push({name: this.name, value: this.checked ? 1 : 0, node: this.getAttribute('data-node')});
|
||||
});
|
||||
$.form.load('{:url("save")}', data, 'POST', function (ret) {
|
||||
if(ret.code===0){
|
||||
setTimeout(function(){
|
||||
$.form.reload();
|
||||
},3000);
|
||||
$.msg.auto(ret);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
@ -5,9 +5,9 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0">
|
||||
<link href="__PUBLIC__/static/plugs/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="//cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="__PUBLIC__/static/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
<link href="__STATIC__/plugs/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="__STATIC__/plugs/awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="__STATIC__/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.bs-glyphicons-list { padding-left: 0; list-style: none}
|
||||
.bs-glyphicons li { float: left; width: 20%; padding: 10px; font-size: 10px; line-height: 1.4; text-align: center; background-color: #f9f9f9; border: 1px solid #fff;cursor: pointer}
|
||||
@ -502,7 +502,6 @@
|
||||
<li><span class="fa fa-cog" aria-hidden="true"></span><span class="glyphicon-class">fa fa-cog</span></li>
|
||||
<li><span class="fa fa-gear" aria-hidden="true"></span><span class="glyphicon-class">fa fa-gear</span></li>
|
||||
<li><span class="fa fa-refresh" aria-hidden="true"></span><span class="glyphicon-class">fa fa-refresh</span></li>
|
||||
<li><span class="faner" aria-hidden="true"></span><span class="glyphicon-class">faner</span></li>
|
||||
<li><span class="fa fa-check-square" aria-hidden="true"></span><span class="glyphicon-class">fa fa-check-square</span></li>
|
||||
<li><span class="fa fa-check-square-o" aria-hidden="true"></span><span class="glyphicon-class">fa fa-check-square-o</span></li>
|
||||
<li><span class="fa fa-circle" aria-hidden="true"></span><span class="glyphicon-class">fa fa-circle</span></li>
|
||||
|
@ -6,11 +6,11 @@
|
||||
<link rel="icon" href="../image/favicon.ico">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0">
|
||||
<link href="__PUBLIC__/static/plugs/uploader/webuploader.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="__PUBLIC__/static/plugs/uploader/theme/uploader.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="__PUBLIC__/static/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
<script src="__PUBLIC__/static/plugs/uploader/webuploader.min.js" type="text/javascript"></script>
|
||||
<script src="__PUBLIC__/static/plugs/uploader/theme/upload.js" type="text/javascript"></script>
|
||||
<link href="__STATIC__/plugs/uploader/webuploader.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="__STATIC__/plugs/uploader/theme/uploader.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="__STATIC__/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
<script src="__STATIC__/plugs/uploader/webuploader.min.js" type="text/javascript"></script>
|
||||
<script src="__STATIC__/plugs/uploader/theme/upload.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="uploader">
|
||||
@ -155,7 +155,7 @@
|
||||
}
|
||||
delete window['expressinstallcallback'];
|
||||
};
|
||||
var swf = '__PUBLIC__/static/plugs/uploader/expressInstall.swf';
|
||||
var swf = '__STATIC__/plugs/uploader/expressInstall.swf';
|
||||
var html = '<object type="application/' + 'x-shockwave-flash" data="' + swf + '" ';
|
||||
if (WebUploader.browser.ie) {
|
||||
html += 'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
|
||||
@ -234,7 +234,7 @@
|
||||
fileNumLimit: 300,
|
||||
/*{/if}*/
|
||||
server: '{:url("admin/plugs/upload")}',
|
||||
swf: '__PUBLIC__/static/plugs/uploader/Uploader.swf',
|
||||
swf: '__STATIC__/plugs/uploader/Uploader.swf',
|
||||
chunked: false,
|
||||
dnd: '#dndArea',
|
||||
paste: document.body,
|
||||
|
@ -21,6 +21,9 @@
|
||||
<input type="checkbox" name="authorize[]" value="{$authorize.id}" title="{$authorize.title}">
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if empty($authorizes)}
|
||||
<span style="color:#999;line-height:36px">尚未配置权限</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -36,6 +36,9 @@
|
||||
<input type="checkbox" name="authorize[]" value="{$authorize.id}" title="{$authorize.title}">
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if empty($authorizes)}
|
||||
<span style="color:#999;line-height:36px">尚未配置权限</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
|
||||
use service\DataService;
|
||||
use service\FileService;
|
||||
use service\NodeService;
|
||||
use Wechat\Loader;
|
||||
use think\Db;
|
||||
@ -64,12 +65,11 @@ function & load_wechat($type = '')
|
||||
*/
|
||||
function encode($string)
|
||||
{
|
||||
$chars = '';
|
||||
$len = strlen($string = iconv('utf-8', 'gbk', $string));
|
||||
for ($i = 0; $i < $len; $i++) {
|
||||
list($chars, $length) = ['', strlen($string = iconv('utf-8', 'gbk', $string))];
|
||||
for ($i = 0; $i < $length; $i++) {
|
||||
$chars .= str_pad(base_convert(ord($string[$i]), 10, 36), 2, 0, 0);
|
||||
}
|
||||
return strtoupper($chars);
|
||||
return $chars;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -87,13 +87,16 @@ function decode($string)
|
||||
}
|
||||
|
||||
/**
|
||||
* RBAC节点权限验证
|
||||
* @param string $node
|
||||
* @return bool
|
||||
* 本地化网络图片
|
||||
* @param string $url
|
||||
* @return string
|
||||
*/
|
||||
function auth($node)
|
||||
function local_image($url)
|
||||
{
|
||||
return NodeService::checkAuthNode($node);
|
||||
if (is_array(($result = FileService::download($url)))) {
|
||||
return $result['url'];
|
||||
}
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -106,18 +109,25 @@ function sysconf($name, $value = false)
|
||||
{
|
||||
static $config = [];
|
||||
if ($value !== false) {
|
||||
$config = [];
|
||||
$data = ['name' => $name, 'value' => $value];
|
||||
list($config, $data) = [[], ['name' => $name, 'value' => $value]];
|
||||
return DataService::save('SystemConfig', $data, 'name');
|
||||
}
|
||||
if (empty($config)) {
|
||||
foreach (Db::name('SystemConfig')->select() as $vo) {
|
||||
$config[$vo['name']] = $vo['value'];
|
||||
}
|
||||
$config = Db::name('SystemConfig')->column('name,value');
|
||||
}
|
||||
return isset($config[$name]) ? $config[$name] : '';
|
||||
}
|
||||
|
||||
/**
|
||||
* RBAC节点权限验证
|
||||
* @param string $node
|
||||
* @return bool
|
||||
*/
|
||||
function auth($node)
|
||||
{
|
||||
return NodeService::checkAuthNode($node);
|
||||
}
|
||||
|
||||
/**
|
||||
* array_column 函数兼容
|
||||
*/
|
||||
|
@ -22,7 +22,7 @@ return [
|
||||
// 用户名
|
||||
'username' => 'think.admin',
|
||||
// 密码
|
||||
'password' => '',
|
||||
'password' => 'think.admin',
|
||||
// 端口
|
||||
'hostport' => '3306',
|
||||
// 连接dsn
|
||||
|
@ -1,39 +0,0 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\demo\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 系统权限管理控制器
|
||||
* Class Plugs
|
||||
* @package app\demo\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/07/10 18:13
|
||||
*/
|
||||
class Inter extends BasicAdmin
|
||||
{
|
||||
|
||||
/**
|
||||
* 省市区插件
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function file()
|
||||
{
|
||||
$this->title = '文件上传';
|
||||
return view('', ['title' => $this->title]);
|
||||
}
|
||||
|
||||
}
|
@ -14,7 +14,7 @@
|
||||
|
||||
namespace app\demo\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use think\Controller;
|
||||
|
||||
/**
|
||||
* 系统权限管理控制器
|
||||
@ -23,27 +23,34 @@ use controller\BasicAdmin;
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/07/10 18:13
|
||||
*/
|
||||
class Plugs extends BasicAdmin
|
||||
class Plugs extends Controller
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* 文件上传
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function file()
|
||||
{
|
||||
return view('', ['title' => '文件上传']);
|
||||
}
|
||||
|
||||
/**
|
||||
* 省市区插件
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function region()
|
||||
{
|
||||
$this->title = '省市区插件';
|
||||
return view('', ['title' => $this->title]);
|
||||
return view('', ['title' => '省市区插件']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 省市区插件
|
||||
* 富文本编辑器
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function pcasunzip()
|
||||
public function editor()
|
||||
{
|
||||
$this->title = '省市区插件';
|
||||
return view('', ['title' => $this->title]);
|
||||
return view('', ['title' => '富文本编辑器']);
|
||||
}
|
||||
}
|
||||
|
47
application/demo/view/plugs.editor.html
Normal file
47
application/demo/view/plugs.editor.html
Normal file
@ -0,0 +1,47 @@
|
||||
{extend name='extra@admin/content'}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<!--<div class="code">-->
|
||||
<!--<blockquote class="site-text layui-elem-quote">-->
|
||||
<!--富文本编辑器-->
|
||||
<!--</blockquote>-->
|
||||
<div style="position:relative">
|
||||
<textarea name="content">这里可以放默认值</textarea>
|
||||
<script>
|
||||
require(['ckeditor'], function () {
|
||||
var editor = window.createEditor('[name="content"]');
|
||||
// 设置内容
|
||||
editor.setData('修改内容');
|
||||
// 获取内容
|
||||
var content = editor.getData();
|
||||
console.log(content);
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<pre class="layui-code" lay-title="HTML代码">
|
||||
|
||||
<textarea name="content">这里可以放默认值</textarea>
|
||||
</pre>
|
||||
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['ckeditor'], function () {
|
||||
var editor = window.createEditor('[name="content"]');
|
||||
// 设置内容
|
||||
editor.setData('修改内容');
|
||||
// 获取内容
|
||||
var content = editor.getData();
|
||||
console.log(content);
|
||||
});
|
||||
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
layui.use('code', function () {
|
||||
layui.code({encode: true});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -2,14 +2,10 @@
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<style>
|
||||
.uploadbutton {line-height: 50px;display: inline-block;position: absolute;margin-left: 10px;top: 20px;}
|
||||
</style>
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
单图片上传
|
||||
<hr />
|
||||
<hr/>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
1. data-file 指定上传文件模式,可选择 ( one | mut ),one : 表示单文件上传, mut : 表示多文件上传。
|
||||
</p>
|
||||
@ -17,7 +13,8 @@
|
||||
2. data-type 指定上传文件后缀,多种后缀时使用英文逗号分割,如:jpg,png。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss : 文件存储在阿里云OSS。
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
|
||||
文件存储在阿里云OSS。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
4. data-field 绑定上传成功后返回URL地址的 input,同时会触发 input 的 change 事件,可以监听并进行处理。
|
||||
@ -25,7 +22,8 @@
|
||||
</blockquote>
|
||||
<div style="position:relative">
|
||||
<div class="uploadimage transition"><input type="hidden" name="file_1"/></div>
|
||||
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)" class="uploadbutton">上传图片</a>
|
||||
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)"
|
||||
class="uploadbutton">上传图片</a>
|
||||
</div>
|
||||
<script>
|
||||
require(['jquery'], function () {
|
||||
@ -39,7 +37,8 @@
|
||||
|
||||
<div style="position:relative">
|
||||
<div class="uploadimage"><input type="hidden" name="file_1"/></div>
|
||||
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)" class="uploadbutton">上传图片</a>
|
||||
<a data-file="one" data-field="file_1" data-type="png,jpg" data-uptype="local" href="javascript:void(0)"
|
||||
class="uploadbutton">上传图片</a>
|
||||
</div>
|
||||
</pre>
|
||||
|
||||
@ -58,7 +57,7 @@ require(['jquery'], function () {
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
多图片上传
|
||||
<hr />
|
||||
<hr/>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
1. data-file 指定上传文件模式,可选择 ( one | mut ),one : 表示单文件上传, mut : 表示多文件上传。
|
||||
</p>
|
||||
@ -66,7 +65,8 @@ require(['jquery'], function () {
|
||||
2. data-type 指定上传文件后缀,多种后缀时使用英文逗号分割,如:jpg,png。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss : 文件存储在阿里云OSS。
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
|
||||
文件存储在阿里云OSS。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
4. data-field 绑定上传成功后返回URL地址的 input,同时会触发 input 的 change 事件,可以监听并进行处理。
|
||||
@ -74,11 +74,27 @@ require(['jquery'], function () {
|
||||
</blockquote>
|
||||
<div style="position:relative">
|
||||
<style>
|
||||
.upload-option-button{float:right;background:rgba(0,0,0,0.5);color:#fff;width:20px;height:20px;line-height:20px;text-align:center;display:none}
|
||||
.upload-option-button:hover{text-decoration:none;color:#fff}
|
||||
.uploadimagemtl:hover a{display:inline-block}
|
||||
.upload-option-button {
|
||||
float: right;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: #fff;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
display: none
|
||||
}
|
||||
|
||||
.upload-option-button:hover {
|
||||
text-decoration: none;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.uploadimagemtl:hover a {
|
||||
display: inline-block
|
||||
}
|
||||
</style>
|
||||
<input type='hidden' name='file_2' />
|
||||
<input type='hidden' name='file_2'/>
|
||||
<p>
|
||||
<a data-file="mut" data-field="file_2" data-type="png,jpg" data-uptype="local" href="javascript:void(0)">上传图片</a>
|
||||
</p>
|
||||
@ -119,25 +135,27 @@ require(['jquery'], function () {
|
||||
|
||||
<div style="position:relative">
|
||||
<style>
|
||||
.upload-option-button{
|
||||
float:right;
|
||||
background:rgba(0,0,0,0.5);
|
||||
color:#fff;
|
||||
width:20px;
|
||||
height:20px;
|
||||
line-height:20px;
|
||||
text-align:center;
|
||||
display:none
|
||||
}
|
||||
.upload-option-button:hover{
|
||||
text-decoration:none;
|
||||
color:#fff
|
||||
}
|
||||
.uploadimagemtl:hover a{
|
||||
display:inline-block
|
||||
}
|
||||
.upload-option-button {
|
||||
float: right;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: #fff;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
display: none
|
||||
}
|
||||
|
||||
.upload-option-button:hover {
|
||||
text-decoration: none;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.uploadimagemtl:hover a {
|
||||
display: inline-block
|
||||
}
|
||||
</style>
|
||||
<input type='hidden' name='file_2' />
|
||||
<input type='hidden' name='file_2'/>
|
||||
<a data-file="mut" data-field="file_2" data-type="png,jpg" data-uptype="local" href="javascript:void(0)">上传图片</a>
|
||||
</div>
|
||||
</pre>
|
||||
@ -145,7 +163,8 @@ require(['jquery'], function () {
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['jquery'], function () {
|
||||
var tpl = '<div class="uploadimage transition uploadimagemtl"><a href="javascript:void(0)" class="layui-icon upload-option-button">ဆ</a></div>';
|
||||
var tpl = '<div class="uploadimage transition uploadimagemtl"><a href="javascript:void(0)"
|
||||
class="layui-icon upload-option-button">ဆ</a></div>';
|
||||
$('[name="file_2"]').on('change', function () {
|
||||
var input = this, values = [], srcs = this.value.split('|');
|
||||
$(this).prevAll('.uploadimage').map(function () {
|
||||
@ -179,7 +198,7 @@ require(['jquery'], function () {
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
单文件上传
|
||||
<hr />
|
||||
<hr/>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
1. data-file 指定上传文件模式,可选择 ( one | mut ),one : 表示单文件上传, mut : 表示多文件上传。
|
||||
</p>
|
||||
@ -187,7 +206,8 @@ require(['jquery'], function () {
|
||||
2. data-type 指定上传文件后缀,多种后缀时使用英文逗号分割,如:zip,rar。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss : 文件存储在阿里云OSS。
|
||||
3. data-uptype 指定上传文件存储方式,可选择( local | qiniu | oss )。local : 文件存储在本地服务器, qiniu : 文件存储在七牛云, oss :
|
||||
文件存储在阿里云OSS。
|
||||
</p>
|
||||
<p style='font-size:12px;line-height:26px'>
|
||||
4. data-field 绑定上传成功后返回URL地址的 input,同时会触发 input 的 change 事件,可以监听并进行处理。
|
||||
@ -237,9 +257,7 @@ require(['jquery'], function () {
|
||||
|
||||
<script>
|
||||
layui.use('code', function () {
|
||||
layui.code({
|
||||
encode: true
|
||||
});
|
||||
layui.code({encode: true});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -1,67 +0,0 @@
|
||||
{extend name='extra@admin/content'}
|
||||
|
||||
{block name="content"}
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
PCAS 单文件JS省市区插件(也适用于Wap端)
|
||||
</blockquote>
|
||||
<div id="demo" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
</div>
|
||||
<pre class="layui-code" lay-title="HTML代码">
|
||||
|
||||
<div class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
</div>
|
||||
</pre>
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['pcasunzips'], function () {
|
||||
/** // 省市联动
|
||||
* new PCAS("Province","City")
|
||||
* new PCAS("Province","City","吉林省")
|
||||
* new PCAS("Province","City","吉林省","吉林市")
|
||||
* // 省市地区联动
|
||||
* new PCAS("Province","City","Area")
|
||||
* new PCAS("Province","City","Area","吉林省")
|
||||
* new PCAS("Province","City","Area","吉林省","松原市")
|
||||
* new PCAS("Province","City","Area","吉林省","松原市","宁江区")
|
||||
* // 省、市、地区对象取得的值均为实际值。
|
||||
* // 注:省、市、地区提示信息选项的值为""(空字符串)
|
||||
*/
|
||||
// 实例化PCAS插件
|
||||
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
|
||||
});
|
||||
</pre>
|
||||
<script>
|
||||
require(['pcasunzips'], function () {
|
||||
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
layui.use('code', function () {
|
||||
layui.code({
|
||||
encode: true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -4,7 +4,7 @@
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
通过地区编码初始化设置
|
||||
PCAS 单文件JS省市区插件(也适用于Wap端)
|
||||
</blockquote>
|
||||
<div id="demo" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
@ -19,7 +19,7 @@
|
||||
</div>
|
||||
<pre class="layui-code" lay-title="HTML代码">
|
||||
|
||||
<div id="demo" class="citys">
|
||||
<div class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
@ -33,322 +33,33 @@
|
||||
</pre>
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['citys'], function () {
|
||||
$('#demo').citys({code: 350206});
|
||||
require(['pcasunzips'], function () {
|
||||
/** // 省市联动
|
||||
* new PCAS("Province","City")
|
||||
* new PCAS("Province","City","吉林省")
|
||||
* new PCAS("Province","City","吉林省","吉林市")
|
||||
* // 省市地区联动
|
||||
* new PCAS("Province","City","Area")
|
||||
* new PCAS("Province","City","Area","吉林省")
|
||||
* new PCAS("Province","City","Area","吉林省","松原市")
|
||||
* new PCAS("Province","City","Area","吉林省","松原市","宁江区")
|
||||
* // 省、市、地区对象取得的值均为实际值。
|
||||
* // 注:省、市、地区提示信息选项的值为""(空字符串)
|
||||
*/
|
||||
// 实例化PCAS插件
|
||||
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
|
||||
});
|
||||
</pre>
|
||||
<script>
|
||||
require(['citys'], function () {
|
||||
$('#demo').citys({code: 350206});
|
||||
require(['pcasunzips'], function () {
|
||||
new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
通过地区名称初始化设置,并且下拉框值为地区名称
|
||||
</blockquote>
|
||||
<div id="demo1" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
</div>
|
||||
<pre class="layui-code" lay-title="HTML代码">
|
||||
|
||||
<div id="demo1" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
</div>
|
||||
</pre>
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['citys'], function () {
|
||||
$('#demo1').citys({valueType: 'name', province: '福建', city: '厦门', area: '思明'});
|
||||
});
|
||||
</pre>
|
||||
<script>
|
||||
require(['citys'], function () {
|
||||
$('#demo1').citys({valueType: 'name', province: '福建', city: '厦门', area: '思明'});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
事件处理,并且下拉框值为地区名称
|
||||
</blockquote>
|
||||
<div id="demo2" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
<p id="place">请选择地区</p>
|
||||
</div>
|
||||
<pre class="layui-code" lay-title="HTML代码">
|
||||
|
||||
<div id="demo2" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
<p id="place">请选择地区</p>
|
||||
</div>
|
||||
</pre>
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['citys'], function (ret) {
|
||||
$('#demo2').citys({
|
||||
required: false,
|
||||
nodata: 'disabled',
|
||||
onChange: function (data) {
|
||||
var text = data['direct'] ? '(直辖市)' : '';
|
||||
$('#place').text('当前选中地区:' + data['province'] + text + ' ' + data['city'] + ' ' + data['area']);
|
||||
}
|
||||
});
|
||||
});
|
||||
</pre>
|
||||
<script>
|
||||
require(['citys'], function (ret) {
|
||||
$('#demo2').citys({
|
||||
required: false,
|
||||
nodata: 'disabled',
|
||||
onChange: function (data) {
|
||||
var text = data['direct'] ? '(直辖市)' : '';
|
||||
$('#place').text('当前选中地区:' + data['province'] + text + ' ' + data['city'] + ' ' + data['area']);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="code">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
扩展显示行政区划第四级(街道)信息
|
||||
</blockquote>
|
||||
<div id="demo3" class="citys">
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="province"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="city"></select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" name="area"></select>
|
||||
</div>
|
||||
</div>
|
||||
<pre class="layui-code" lay-title="javascript代码">
|
||||
|
||||
require(['citys'], function () {
|
||||
var $town = $('#demo3 select[name="town"]');
|
||||
var townFormat = function (info) {
|
||||
$town.hide().empty();
|
||||
if (info['code'] % 1e4 && info['code'] < 7e5) {
|
||||
//是否为“区”且不是港澳台地区
|
||||
$.ajax({
|
||||
url: 'http://passer-by.com/data_location/town/' + info['code'] + '.json',
|
||||
dataType: 'json',
|
||||
success: function (town) {
|
||||
$town.show();
|
||||
for (i in town) {
|
||||
$town.append('<option value="' + i + '">' + town[i] + '</option>');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
$('#demo3').citys({
|
||||
province: '福建',
|
||||
city: '厦门',
|
||||
area: '思明',
|
||||
onChange: function (info) {
|
||||
townFormat(info);
|
||||
}
|
||||
}, function (api) {
|
||||
var info = api.getInfo();
|
||||
townFormat(info);
|
||||
});
|
||||
});
|
||||
</pre>
|
||||
<script>
|
||||
require(['citys'], function () {
|
||||
var $town = $('#demo3 select[name="town"]');
|
||||
var townFormat = function (info) {
|
||||
$town.hide().empty();
|
||||
if (info['code'] % 1e4 && info['code'] < 7e5) { //是否为“区”且不是港澳台地区
|
||||
$.ajax({
|
||||
url: 'http://passer-by.com/data_location/town/' + info['code'] + '.json',
|
||||
dataType: 'json',
|
||||
success: function (town) {
|
||||
$town.show();
|
||||
for (i in town) {
|
||||
$town.append('<option value="' + i + '">' + town[i] + '</option>');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
$('#demo3').citys({
|
||||
province: '福建',
|
||||
city: '厦门',
|
||||
area: '思明',
|
||||
onChange: function (info) {
|
||||
townFormat(info);
|
||||
}
|
||||
}, function (api) {
|
||||
var info = api.getInfo();
|
||||
townFormat(info);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div class="example">
|
||||
<blockquote class="site-text layui-elem-quote">
|
||||
调用方法:$(selector).citys(options,callback);
|
||||
</blockquote>
|
||||
<p style="font-size:18px;line-height:30px;">Options</p>
|
||||
<table class="layui-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="150">参数</th>
|
||||
<th width="120">默认值</th>
|
||||
<th>说明</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>dataUrl</td>
|
||||
<td>[数据库地址]</td>
|
||||
<td>
|
||||
<p>最新数据库(
|
||||
<script src="http://passer-by.com/data_location/version.js"></script>
|
||||
):
|
||||
<a href="http://passer-by.com/data_location/list.json" target="_blank">JSON格式</a>
|
||||
<a href="http://passer-by.com/data_location/list.jsonp" target="_blank">JSONP格式</a></p>
|
||||
<p>数据库项目:<a href="https://github.com/mumuy/data_location" target="_blank">中国行政区划(省、市、区、街道)</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>dataType</td>
|
||||
<td>'json'</td>
|
||||
<td>
|
||||
<p>数据库类型:'json'或'jsonp'</p>
|
||||
<p class="warning">IE9-由于默认安全设置,需开启“通过域访问数据源”才能跨域访问json,此类情况建议使用jsonp格式</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>crossDomain</td>
|
||||
<td>true</td>
|
||||
<td>
|
||||
<p>是否开启跨域</p>
|
||||
<p class="warning">IE9-如果设置开启跨域而实际未跨域,造成请求异常</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>provinceField</td>
|
||||
<td>'province'</td>
|
||||
<td>省份(省级)字段名</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>cityField</td>
|
||||
<td>'city'</td>
|
||||
<td>城市(地级)字段名</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>areaField</td>
|
||||
<td>'area'</td>
|
||||
<td>地区(县区级)字段名</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>valueType</td>
|
||||
<td>'code'</td>
|
||||
<td>下拉框值的类型,code行政区划代码,name地名</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>code</td>
|
||||
<td>0</td>
|
||||
<td>地区编码</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>province</td>
|
||||
<td>[无]</td>
|
||||
<td>省份(省级),可以为地区编码或者名称</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>city</td>
|
||||
<td>[无]</td>
|
||||
<td>城市(地级),可以为地区编码或者名称</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>area</td>
|
||||
<td>[无]</td>
|
||||
<td>地区(县区级),可以为地区编码或者名称</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>required</td>
|
||||
<td>true</td>
|
||||
<td>是否必须选中(是否自动选择地区)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>nodata</td>
|
||||
<td>'hidden'</td>
|
||||
<td>当无数据时的表现形式:'hidden'隐藏,'disabled'禁用,为空不做任何处理</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>onChange(info)</td>
|
||||
<td>[无]</td>
|
||||
<td>地区切换时触发,回调函数传入地区信息:direct是否为直辖市,province省份(省级)名称,city城市(地级)名称,area地区(县区级)名称,code地区编码</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<p style="font-size:18px;line-height:30px;">callback(api)参数</p>
|
||||
<table class="layui-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="200">方法</th>
|
||||
<th>说明</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>getInfo(data)</td>
|
||||
<td>获取当前选中的地区信息:direct是否为直辖市,province省份(省级)名称,city城市(地级)名称,area地区(县区级)名称,code地区编码</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<script>
|
||||
layui.use('code', function () {
|
||||
layui.code({
|
||||
encode: true
|
||||
});
|
||||
});
|
||||
layui.use('code', function () {
|
||||
layui.code({encode: true});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
@ -1,12 +1,12 @@
|
||||
<div class="ibox">
|
||||
{block name="style"}{/block}
|
||||
{if isset($title)}
|
||||
<div class="ibox-title">
|
||||
<div class="ibox-title notselect">
|
||||
<h5>{$title}</h5>
|
||||
{block name="button"}{/block}
|
||||
</div>
|
||||
{/if}
|
||||
<div class="ibox-content fadeInUp animated">
|
||||
<div class="ibox-content">
|
||||
{if isset($alert)}
|
||||
<div class="alert alert-{$alert.type} alert-dismissible" role="alert" style="border-radius:0">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
|
@ -3,16 +3,16 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="renderer" content="webkit"/>
|
||||
<title>{block name="title"}{$title|default=''}{if !empty($title)} · {/if}{:sysconf('site_name')}{/block}</title>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<link rel="shortcut icon" href="{:sysconf('browser_icon')}" />
|
||||
<title>{block name="title"}{$title|default=''} {if !empty($title)}·{/if} {:sysconf('site_name')}{/block}</title>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/plugs/bootstrap/css/bootstrap.min.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/plugs/layui/css/layui.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/theme/default/css/console.css?ver={:date('ymd')}">
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/theme/default/css/animate.css?ver={:date('ymd')}">{block name="style"}{/block}
|
||||
<script>window.ROOT_URL = '__PUBLIC__';</script>
|
||||
<script src="__PUBLIC__/static/plugs/require/require.js?ver={:date('ymd')}"></script>
|
||||
<script src="__PUBLIC__/static/admin/app.js?ver={:date('ymd')}"></script>
|
||||
<link rel="stylesheet" href="__STATIC__/plugs/bootstrap/css/bootstrap.min.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__STATIC__/plugs/layui/css/layui.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__STATIC__/theme/default/css/console.css?ver={:date('ymd')}">
|
||||
<link rel="stylesheet" href="__STATIC__/theme/default/css/animate.css?ver={:date('ymd')}">{block name="style"}{/block}
|
||||
<script src="__STATIC__/plugs/require/require.js?ver={:date('ymd')}"></script>
|
||||
<script src="__STATIC__/admin/app.js?ver={:date('ymd')}"></script>
|
||||
<script>window.ROOT_URL='__PUBLIC__';</script>
|
||||
</head>
|
||||
{block name="bodyTag"}
|
||||
<body>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div class="framework-sidebar">
|
||||
<div class="framework-sidebar hide">
|
||||
<div class="sidebar-content">
|
||||
<div class="sidebar-inner">
|
||||
<div class="sidebar-fold">
|
||||
|
@ -3,7 +3,9 @@
|
||||
<div class="topbar-wrap topbar-clearfix">
|
||||
<div class="topbar-head topbar-left">
|
||||
<a href="{:url('@admin')}" class="topbar-logo topbar-left">
|
||||
<span class="icon-logo">{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup></span>
|
||||
<span class="icon-logo">
|
||||
{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
{volist name='menus' id='pmenu'}
|
||||
@ -18,23 +20,13 @@
|
||||
</a>
|
||||
{/empty}
|
||||
{/volist}
|
||||
|
||||
<div class="topbar-info topbar-right">
|
||||
<a data-reload data-tips-text='刷新'
|
||||
class=" topbar-btn topbar-left topbar-info-item text-center"
|
||||
style='width:50px;'>
|
||||
<a data-reload data-tips-text='刷新' style='width:50px'
|
||||
class=" topbar-btn topbar-left topbar-info-item text-center">
|
||||
<span class='glyphicon glyphicon-refresh'></span>
|
||||
</a>
|
||||
<script>
|
||||
require(['jquery'], function () {
|
||||
$('[data-reload]').hover(function () {
|
||||
$(this).find('.glyphicon').addClass('fa-spin');
|
||||
}, function () {
|
||||
$(this).find('.glyphicon').removeClass('fa-spin');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="topbar-left topbar-user">
|
||||
{if session('user')}
|
||||
<div class="dropdown topbar-info-item">
|
||||
<a href="#" class="dropdown-toggle topbar-btn text-center" data-toggle="dropdown">
|
||||
<span class='glyphicon glyphicon-user'></span> {:session('user.username')} </span>
|
||||
@ -58,6 +50,13 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{else}
|
||||
<div class=" topbar-info-item">
|
||||
<a data-href="{:url('@admin/login')}" data-toggle="dropdown" class=" topbar-btn text-center">
|
||||
<span class='glyphicon glyphicon-user'></span> 立即登录 </span>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -14,12 +14,7 @@
|
||||
|
||||
namespace app\index\controller;
|
||||
|
||||
use service\HttpService;
|
||||
use service\ToolsService;
|
||||
use think\Controller;
|
||||
use think\Db;
|
||||
use think\Request;
|
||||
use Wechat\Lib\Tools;
|
||||
|
||||
/**
|
||||
* 网站入口控制器
|
||||
@ -39,19 +34,14 @@ class Index extends Controller
|
||||
$this->redirect('@admin');
|
||||
}
|
||||
|
||||
public function test()
|
||||
public function qrc()
|
||||
{
|
||||
$json = json_decode(file_get_contents('citys.json'), true);
|
||||
// dump($json);
|
||||
foreach ($json as $key => $vo) {
|
||||
dump(Db::name('DataRegion')->insert(['code' => $key, 'name' => $vo]));
|
||||
$wechat = load_wechat('Extends');
|
||||
for ($i = 10; $i < 90; $i++) {
|
||||
$qrc = $wechat->getQRCode($i, 1);
|
||||
print_r($qrc);
|
||||
}
|
||||
}
|
||||
|
||||
public function wuliu()
|
||||
{
|
||||
$order = '444500528707';
|
||||
dump(ToolsService::express($order));
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -21,20 +21,13 @@ use service\PayService;
|
||||
class Wap extends BasicWechat
|
||||
{
|
||||
|
||||
/**
|
||||
* 禁用自动网页授权
|
||||
* @var bool
|
||||
*/
|
||||
protected $checkAuth = false;
|
||||
|
||||
/**
|
||||
* 网页授权DEMO
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
// dump($this->oAuth(false)); // 仅获取用户openid
|
||||
dump($this->oAuth()); // 获取用户详情信息
|
||||
dump($this->fansinfo); // 打
|
||||
dump($this->oAuth(true)); // 获取用户详情信息
|
||||
dump($this->fansinfo); // 输出用户信息
|
||||
}
|
||||
|
||||
/**
|
||||
@ -43,29 +36,40 @@ class Wap extends BasicWechat
|
||||
*/
|
||||
public function payqrc()
|
||||
{
|
||||
switch ($this->request->get('action')) {
|
||||
case 'payqrc':
|
||||
$pay = &load_wechat('pay');
|
||||
$order_no = session('pay-test-order-no');
|
||||
if (empty($order_no)) {
|
||||
$order_no = DataService::createSequence(10, 'wechat-pay-test');
|
||||
session('pay-test-order-no', $order_no);
|
||||
}
|
||||
if (PayService::isPay($order_no)) {
|
||||
return json(['code' => 2, 'order_no' => $order_no]);
|
||||
}
|
||||
$url = PayService::createWechatPayQrc($pay, $order_no, 1, '微信扫码支付测试!');
|
||||
if ($url !== false) {
|
||||
return json(['code' => 1, 'url' => $url, 'order_no' => $order_no]);
|
||||
}
|
||||
$this->error("生成支付二维码失败,{$pay->errMsg}[{$pay->errCode}]");
|
||||
break;
|
||||
case 'reset':
|
||||
session('pay-test-order-no', null);
|
||||
break;
|
||||
default:
|
||||
return view();
|
||||
$method = '_payqrc_' . strtolower($this->request->get('action'));
|
||||
if (method_exists($this, $method)) {
|
||||
return $this->$method();
|
||||
}
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取二维码支付
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
protected function _payqrc_payqrc()
|
||||
{
|
||||
list($pay, $order_no) = [load_wechat('pay'), session('pay-test-order-no')];
|
||||
if (empty($order_no)) {
|
||||
$order_no = DataService::createSequence(10, 'wechat-pay-test');
|
||||
session('pay-test-order-no', $order_no);
|
||||
}
|
||||
if (PayService::isPay($order_no)) {
|
||||
return json(['code' => 2, 'order_no' => $order_no]);
|
||||
}
|
||||
$url = PayService::createWechatPayQrc($pay, $order_no, 1, '微信扫码支付测试!');
|
||||
if ($url !== false) {
|
||||
return json(['code' => 1, 'url' => $url, 'order_no' => $order_no]);
|
||||
}
|
||||
$this->error("生成支付二维码失败,{$pay->errMsg}[{$pay->errCode}]");
|
||||
}
|
||||
|
||||
/**
|
||||
* 重置测试订单号
|
||||
*/
|
||||
protected function _payqrc_reset()
|
||||
{
|
||||
session('pay-test-order-no', null);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -75,29 +79,42 @@ class Wap extends BasicWechat
|
||||
public function payjs()
|
||||
{
|
||||
$this->openid = $this->oAuth(false);
|
||||
switch ($this->request->get('action')) {
|
||||
case 'options':
|
||||
$order_no = session('pay-test-order-no');
|
||||
if (empty($order_no)) {
|
||||
$order_no = DataService::createSequence(10, 'wechat-pay-test');
|
||||
session('pay-test-order-no', $order_no);
|
||||
}
|
||||
if (PayService::isPay($order_no)) {
|
||||
return json(['code' => 2, 'order_no' => $order_no]);
|
||||
}
|
||||
$pay = &load_wechat('pay');
|
||||
$options = PayService::createWechatPayJsPicker($pay, $this->openid, $order_no, 1, 'JSAPI支付测试');
|
||||
if ($options === false) {
|
||||
$options = ['code' => 3, 'msg' => "创建支付失败,{$pay->errMsg}[$pay->errCode]"];
|
||||
}
|
||||
$options['order_no'] = $order_no;
|
||||
return json($options);
|
||||
case 'reset':
|
||||
session('pay-test-order-no', null);
|
||||
break;
|
||||
default:
|
||||
return view();
|
||||
$method = '_payjs_' . strtolower($this->request->get('action'));
|
||||
if (method_exists($this, $method)) {
|
||||
return $this->$method();
|
||||
}
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取JSAPI支付参数
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
protected function _payjs_options()
|
||||
{
|
||||
$order_no = session('pay-test-order-no');
|
||||
if (empty($order_no)) {
|
||||
$order_no = DataService::createSequence(10, 'wechat-pay-test');
|
||||
session('pay-test-order-no', $order_no);
|
||||
}
|
||||
if (PayService::isPay($order_no)) {
|
||||
return json(['code' => 2, 'order_no' => $order_no]);
|
||||
}
|
||||
$pay = load_wechat('pay');
|
||||
$options = PayService::createWechatPayJsPicker($pay, $this->openid, $order_no, 1, 'JSAPI支付测试');
|
||||
if ($options === false) {
|
||||
$options = ['code' => 3, 'msg' => "创建支付失败,{$pay->errMsg}[$pay->errCode]"];
|
||||
}
|
||||
$options['order_no'] = $order_no;
|
||||
return json($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* 重置测试订单号
|
||||
*/
|
||||
protected function _payjs_reset()
|
||||
{
|
||||
session('pay-test-order-no', null);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -11,67 +11,45 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
return [];
|
||||
/* 测试环境禁止操作路由绑定 */
|
||||
think\Route::post([
|
||||
// 禁止修改用户资料
|
||||
'admin/index/info' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改用户资料<br>请修改路由配置文件!']);
|
||||
},
|
||||
// 禁止修改用户密码
|
||||
'admin/index/pass' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码<br>请修改路由配置文件!']);
|
||||
},
|
||||
// 禁止修改用户密码
|
||||
'admin/user/pass' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码<br>请修改路由配置文件!']);
|
||||
},
|
||||
// 禁止修改系统配置
|
||||
'admin/config/index' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改系统配置操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改系统配置操作!']);
|
||||
},
|
||||
// 禁止修改文件上传
|
||||
'admin/config/file' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改文件配置操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁修改文件配置操作!']);
|
||||
},
|
||||
// 禁止添加系统菜单
|
||||
'admin/menu/add' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁添加菜单操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁添加菜单操作!']);
|
||||
},
|
||||
// 禁止编辑系统菜单
|
||||
'admin/menu/edit' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁编辑菜单操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁编辑菜单操作!']);
|
||||
},
|
||||
// 禁止禁用系统菜单
|
||||
'admin/menu/forbid' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止禁用菜单操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止禁用菜单操作!']);
|
||||
},
|
||||
// 禁止删除系统菜单
|
||||
'admin/menu/del' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止删除菜单操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止删除菜单操作!']);
|
||||
},
|
||||
// 禁止排序系统菜单
|
||||
'admin/menu/index' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止菜单列表排序操作<br>请修改路由配置文件!']);
|
||||
},
|
||||
// 禁止配置微信参数
|
||||
'wechat/config/index' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信配置操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信配置操作!']);
|
||||
},
|
||||
// 禁止配置微信支付
|
||||
'wechat/config/pay' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信支付操作<br>请修改路由配置文件!']);
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信支付操作!']);
|
||||
},
|
||||
'admin/node/save' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改节点数据操作!']);
|
||||
},
|
||||
// 禁止编辑及发布微信菜单
|
||||
'wechat/menu/edit' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作<br>请修改路由配置文件!']);
|
||||
},
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
|
||||
}
|
||||
]);
|
||||
|
||||
think\Route::get([
|
||||
'wechat/menu/cancel' => function () {
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作<br>请修改路由配置文件!']);
|
||||
},
|
||||
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
|
||||
}
|
||||
]);
|
||||
|
||||
return [];
|
||||
|
@ -14,12 +14,8 @@
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use service\DataService;
|
||||
use service\WechatService;
|
||||
use handler\WechatHandler;
|
||||
use think\Controller;
|
||||
use think\Db;
|
||||
use think\Log;
|
||||
use Wechat\WechatReceive;
|
||||
|
||||
/**
|
||||
* 微信接口控制器
|
||||
@ -30,234 +26,21 @@ use Wechat\WechatReceive;
|
||||
class Api extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* 微信openid
|
||||
* @var string
|
||||
*/
|
||||
protected $openid;
|
||||
|
||||
/**
|
||||
* 微信消息对象
|
||||
* @var WechatReceive
|
||||
*/
|
||||
protected $wechat;
|
||||
|
||||
/**
|
||||
* 微信消息接口
|
||||
* @return string
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
// 实例接口对象
|
||||
$this->wechat = &load_wechat('Receive');
|
||||
// 验证接口请求
|
||||
if ($this->wechat->valid() === false) {
|
||||
$msg = "{$this->wechat->errMsg}[{$this->wechat->errCode}]";
|
||||
Log::error($msg);
|
||||
return $msg;
|
||||
}
|
||||
// 获取消息来源用户OPENID
|
||||
$this->openid = $this->wechat->getRev()->getRevFrom();
|
||||
// 获取并同步粉丝信息到数据库
|
||||
$this->_updateFansInfo(true);
|
||||
// 分别执行对应类型的操作
|
||||
switch ($this->wechat->getRev()->getRevType()) {
|
||||
case WechatReceive::MSGTYPE_TEXT:
|
||||
return $this->_keys("WechatKeys#keys#" . $this->wechat->getRevContent());
|
||||
case WechatReceive::MSGTYPE_EVENT:
|
||||
return $this->_event();
|
||||
case WechatReceive::MSGTYPE_IMAGE:
|
||||
return $this->_image();
|
||||
case WechatReceive::MSGTYPE_LOCATION:
|
||||
return $this->_location();
|
||||
default:
|
||||
return 'success';
|
||||
if (!extension_loaded('soap')) {
|
||||
throw new \Exception('Not support soap.');
|
||||
}
|
||||
$handler = new WechatHandler();
|
||||
$service = new \SoapServer(null, ['uri' => 'api', 'trace' => 0]);
|
||||
$service->setObject($handler);
|
||||
$service->handle();
|
||||
}
|
||||
|
||||
/**
|
||||
* 关键字处理
|
||||
* @param string $keys
|
||||
* @param bool $isForce
|
||||
* @return string
|
||||
*/
|
||||
private function _keys($keys, $isForce = false)
|
||||
{
|
||||
list($table, $field, $value) = explode('#', $keys . '##');
|
||||
if (is_array($info = Db::name($table)->where($field, $value)->find()) && isset($info['type'])) {
|
||||
// 数据状态检查
|
||||
if (array_key_exists('status', $info) && empty($info['status'])) {
|
||||
return 'success';
|
||||
}
|
||||
switch ($info['type']) {
|
||||
case 'customservice': // 多客服
|
||||
$this->wechat->sendCustomMessage(['touser' => $this->openid, 'msgtype' => 'text', 'text' => ['content' => $info['content']]]);
|
||||
return $this->wechat->transfer_customer_service()->reply(false, true);
|
||||
case 'keys': // 关键字
|
||||
if (empty($info['content']) && empty($info['name'])) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->_keys('wechat_keys#keys#' . (empty($info['content']) ? $info['name'] : $info['content']));
|
||||
case 'text': // 文本消息
|
||||
if (empty($info['content']) && empty($info['name'])) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->wechat->text($info['content'])->reply(false, true);
|
||||
case 'news': // 图文消息
|
||||
if (empty($info['news_id'])) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->_news($info['news_id']);
|
||||
case 'music': // 音频消息
|
||||
if (empty($info['music_url']) || empty($info['music_title']) || empty($info['music_desc'])) {
|
||||
return 'success';
|
||||
}
|
||||
$media_id = empty($info['music_image']) ? '' : WechatService::uploadForeverMedia($info['music_image'], 'image');
|
||||
if (empty($media_id)) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->wechat->music($info['music_title'], $info['music_desc'], $info['music_url'], $info['music_url'], $media_id)->reply(false, true);
|
||||
case 'voice': // 语音消息
|
||||
if (empty($info['voice_url'])) {
|
||||
return 'success';
|
||||
}
|
||||
$media_id = WechatService::uploadForeverMedia($info['voice_url'], 'voice');
|
||||
if (empty($media_id)) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->wechat->voice($media_id)->reply(false, true);
|
||||
case 'image': // 图文消息
|
||||
if (empty($info['image_url'])) {
|
||||
return 'success';
|
||||
}
|
||||
$media_id = WechatService::uploadForeverMedia($info['image_url'], 'image');
|
||||
if (empty($media_id)) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->wechat->image($media_id)->reply(false, true);
|
||||
case 'video': // 视频消息
|
||||
if (empty($info['video_url']) || empty($info['video_desc']) || empty($info['video_title'])) {
|
||||
return 'success';
|
||||
}
|
||||
$data = ['title' => $info['video_title'], 'introduction' => $info['video_desc']];
|
||||
$media_id = WechatService::uploadForeverMedia($info['video_url'], 'video', true, $data);
|
||||
return $this->wechat->video($media_id, $info['video_title'], $info['video_desc'])->reply(false, true);
|
||||
}
|
||||
}
|
||||
if ($isForce) {
|
||||
return 'success';
|
||||
}
|
||||
return $this->_keys('wechat_keys#keys#default', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 回复图文
|
||||
* @param int $news_id
|
||||
* @return bool|string
|
||||
*/
|
||||
protected function _news($news_id = 0)
|
||||
{
|
||||
if (is_array($newsinfo = WechatService::getNewsById($news_id)) && !empty($newsinfo['articles'])) {
|
||||
$newsdata = [];
|
||||
foreach ($newsinfo['articles'] as $vo) {
|
||||
$newsdata[] = [
|
||||
'Title' => $vo['title'],
|
||||
'Description' => $vo['digest'],
|
||||
'PicUrl' => $vo['local_url'],
|
||||
'Url' => url("@wechat/review", '', true, true) . "?content={$vo['id']}&type=article",
|
||||
];
|
||||
}
|
||||
return $this->wechat->news($newsdata)->reply(false, true);
|
||||
}
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 事件处理
|
||||
*/
|
||||
protected function _event()
|
||||
{
|
||||
$event = $this->wechat->getRevEvent();
|
||||
switch (strtolower($event['event'])) {
|
||||
case 'subscribe': // 粉丝关注事件
|
||||
$this->_updateFansInfo(true);
|
||||
$this->_spread($event['key']);
|
||||
return $this->_keys('wechat_keys#keys#subscribe', true);
|
||||
case 'unsubscribe':// 粉丝取消关注
|
||||
$this->_updateFansInfo(false);
|
||||
return 'success';
|
||||
case 'click': // 点击菜单事件
|
||||
return $this->_keys($event['key']);
|
||||
case 'scancode_push':
|
||||
case 'scancode_waitmsg': // 扫码推事件
|
||||
$scanInfo = $this->wechat->getRev()->getRevScanInfo();
|
||||
if (isset($scanInfo['ScanResult'])) {
|
||||
return $this->_keys($scanInfo['ScanResult']);
|
||||
}
|
||||
return 'success';
|
||||
case 'scan':
|
||||
if (!empty($event['key'])) {
|
||||
return $this->_spread($event['key']);
|
||||
}
|
||||
return 'success';
|
||||
}
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 推荐好友扫码关注
|
||||
* @param string $event
|
||||
* @return mixed
|
||||
*/
|
||||
private function _spread($event)
|
||||
{
|
||||
$key = preg_replace('|^.*?(\d+).*?$|', '$1', "{$event}");
|
||||
// 检测推荐是否有效
|
||||
$fans = Db::name('WechatFans')->where('id', $key)->find();
|
||||
if (!is_array($fans) || !isset($fans['openid']) || $fans['openid'] === $this->openid) {
|
||||
return false;
|
||||
}
|
||||
// 标识推荐关系
|
||||
$data = ['spread_by' => $fans['openid'], 'spread_at' => date('Y-m-d H:i:s')];
|
||||
Db::name('WechatFans')->where("openid='{$this->openid}' and (spread_openid is null or spread_openid='')")->setField($data);
|
||||
// @todo 推荐成功的奖励
|
||||
}
|
||||
|
||||
/**
|
||||
* 位置事情回复
|
||||
* @return string
|
||||
*/
|
||||
private function _location()
|
||||
{
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 图片事件处理
|
||||
*/
|
||||
private function _image()
|
||||
{
|
||||
return 'success';
|
||||
}
|
||||
|
||||
/**
|
||||
* 同步粉丝状态
|
||||
* @param bool $subscribe 关注状态
|
||||
*/
|
||||
protected function _updateFansInfo($subscribe = true)
|
||||
{
|
||||
if ($subscribe) {
|
||||
$fans = WechatService::getFansInfo($this->openid);
|
||||
if (empty($fans) || empty($fans['subscribe'])) {
|
||||
$wechat = &load_wechat('User');
|
||||
$userInfo = $wechat->getUserInfo($this->openid);
|
||||
$userInfo['subscribe'] = intval($subscribe);
|
||||
WechatService::setFansInfo($userInfo, $wechat->appid);
|
||||
}
|
||||
} else {
|
||||
$data = ['subscribe' => '0', 'appid' => $this->wechat->appid, 'openid' => $this->openid];
|
||||
DataService::save('wechat_fans', $data, ['appid', 'openid']);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -43,13 +43,11 @@ class Fans extends BasicAdmin
|
||||
public function index()
|
||||
{
|
||||
$this->title = '微信粉丝管理';
|
||||
$db = Db::name($this->table)->where('is_back', '0')->order('subscribe_time desc');
|
||||
$get = $this->request->get();
|
||||
!empty($get['sex']) && $db->where('sex', $get['sex']);
|
||||
$db = Db::name($this->table)->where('is_back', '0')->order('subscribe_time desc');
|
||||
(isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']);
|
||||
foreach (['nickname', 'country', 'province', 'city'] as $key) {
|
||||
if (isset($get[$key]) && $get[$key] !== '') {
|
||||
$db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
(isset($get[$key]) && $get[$key] !== '') && $db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
if (isset($get['tag']) && $get['tag'] !== '') {
|
||||
$db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]);
|
||||
@ -65,8 +63,7 @@ class Fans extends BasicAdmin
|
||||
{
|
||||
$tags = Db::name('WechatFansTags')->column('id,name');
|
||||
foreach ($list as &$vo) {
|
||||
$vo['nickname'] = ToolsService::emojiDecode($vo['nickname']);
|
||||
$vo['tags_list'] = [];
|
||||
list($vo['tags_list'], $vo['nickname']) = [[], ToolsService::emojiDecode($vo['nickname'])];
|
||||
foreach (explode(',', $vo['tagid_list']) as $tag) {
|
||||
if ($tag !== '' && isset($tags[$tag])) {
|
||||
$vo['tags_list'][$tag] = $tags[$tag];
|
||||
@ -84,13 +81,11 @@ class Fans extends BasicAdmin
|
||||
public function back()
|
||||
{
|
||||
$this->title = '微信粉丝黑名单管理';
|
||||
$db = Db::name($this->table)->where('is_back', '1')->order('subscribe_time desc');
|
||||
$get = $this->request->get();
|
||||
!empty($get['sex']) && $db->where('sex', $get['sex']);
|
||||
$db = Db::name($this->table)->where('is_back', '1')->order('subscribe_time desc');
|
||||
(isset($get['sex']) && $get['sex'] !== '') && $db->where('sex', $get['sex']);
|
||||
foreach (['nickname', 'country', 'province', 'city'] as $key) {
|
||||
if (isset($get[$key]) && $get[$key] !== '') {
|
||||
$db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
(isset($get[$key]) && $get[$key] !== '') && $db->where($key, 'like', "%{$get[$key]}%");
|
||||
}
|
||||
if (isset($get['tag']) && $get['tag'] !== '') {
|
||||
$db->where("concat(',',tagid_list,',') like :tag", ['tag' => "%,{$get['tag']},%"]);
|
||||
@ -103,7 +98,7 @@ class Fans extends BasicAdmin
|
||||
*/
|
||||
public function backadd()
|
||||
{
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
$openids = $this->_getActionOpenids();
|
||||
if (false !== $wechat->addBacklist($openids)) {
|
||||
Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '1');
|
||||
@ -121,7 +116,7 @@ class Fans extends BasicAdmin
|
||||
$fans_id = $this->request->post('fans_id', '');
|
||||
$fans = Db::name('WechatFans')->where('id', $fans_id)->find();
|
||||
empty($fans) && $this->error('需要操作的数据不存在!');
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
foreach (explode(',', $fans['tagid_list']) as $tagid) {
|
||||
is_numeric($tagid) && $wechat->batchDeleteUserTag($tagid, [$fans['openid']]);
|
||||
}
|
||||
@ -139,7 +134,7 @@ class Fans extends BasicAdmin
|
||||
*/
|
||||
public function backdel()
|
||||
{
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
$openids = $this->_getActionOpenids();
|
||||
if (false !== $wechat->delBacklist($openids)) {
|
||||
Db::name($this->table)->where('openid', 'in', $openids)->setField('is_back', '0');
|
||||
@ -156,7 +151,7 @@ class Fans extends BasicAdmin
|
||||
$tagid = $this->request->post('tag_id', 0);
|
||||
empty($tagid) && $this->error('没有可能操作的标签ID');
|
||||
$openids = $this->_getActionOpenids();
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
if (false !== $wechat->batchAddUserTag($tagid, $openids)) {
|
||||
$this->success('设置粉丝标签成功!', '');
|
||||
}
|
||||
@ -171,7 +166,7 @@ class Fans extends BasicAdmin
|
||||
$tagid = $this->request->post('tag_id', 0);
|
||||
empty($tagid) && $this->error('没有可能操作的标签ID');
|
||||
$openids = $this->_getActionOpenids();
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
if (false !== $wechat->batchDeleteUserTag($tagid, $openids)) {
|
||||
$this->success('删除粉丝标签成功!', '');
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
@ -49,8 +50,14 @@ class Keys extends BasicAdmin
|
||||
*/
|
||||
protected function _index_data_filter(&$data)
|
||||
{
|
||||
$types = ['keys' => '关键字', 'image' => '图片', 'news' => '图文', 'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音'];
|
||||
$types = [
|
||||
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
|
||||
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音'
|
||||
];
|
||||
$wechat = load_wechat('Extends');
|
||||
foreach ($data as &$vo) {
|
||||
$result = $wechat->getQRCode($vo['keys'], 1);
|
||||
$vo['qrc'] = $wechat->getQRUrl($result['ticket']);
|
||||
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ class Menu extends BasicAdmin
|
||||
* 微信菜单的类型
|
||||
* @var array
|
||||
*/
|
||||
protected $menu_type = [
|
||||
protected $menuType = [
|
||||
'view' => '跳转URL',
|
||||
'click' => '点击推事件',
|
||||
'scancode_push' => '扫码推事件',
|
||||
@ -109,11 +109,11 @@ class Menu extends BasicAdmin
|
||||
*/
|
||||
public function cancel()
|
||||
{
|
||||
$wehcat = &load_wechat('Menu');
|
||||
$wehcat = load_wechat('Menu');
|
||||
if (false !== $wehcat->deleteMenu()) {
|
||||
$this->success('菜单取消成功,重新关注可立即生效!', '');
|
||||
}
|
||||
$this->error('菜单取消失败,' . $wehcat->errMsg);
|
||||
$this->error('菜单取消失败,' . $wehcat->getError());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -121,33 +121,28 @@ class Menu extends BasicAdmin
|
||||
*/
|
||||
protected function _push()
|
||||
{
|
||||
$result = Db::name($this->table)
|
||||
->field('id,index,pindex,name,type,content')
|
||||
->where('status', '1')
|
||||
->order('sort ASC,id ASC')
|
||||
->select();
|
||||
list($map, $fields) = [['status' => '1'], 'id,index,pindex,name,type,content'];
|
||||
$result = (array)Db::name($this->table)->field($fields)->where($map)->order('sort ASC,id ASC')->select();
|
||||
foreach ($result as &$row) {
|
||||
empty($row['content']) && $row['content'] = uniqid();
|
||||
switch ($row['type']) {
|
||||
case 'miniprogram':
|
||||
list($row['appid'], $row['url'], $row['pagepath']) = explode(',', $row['content'] . ',,');
|
||||
break;
|
||||
case 'view':
|
||||
$row['url'] = preg_match('#^(\w+:)?//#i', $row['content']) ? $row['content'] : url($row['content'], '', true, true);
|
||||
break;
|
||||
case 'event':
|
||||
if (isset($this->menu_type[$row['content']])) {
|
||||
$row['type'] = $row['content'];
|
||||
$row['key'] = "wechat_menu#id#{$row['id']}";
|
||||
}
|
||||
break;
|
||||
case 'media_id':
|
||||
$row['media_id'] = $row['content'];
|
||||
break;
|
||||
default :
|
||||
(!in_array($row['type'], $this->menu_type)) && $row['type'] = 'click';
|
||||
$row['key'] = "wechat_menu#id#{$row['id']}";
|
||||
}
|
||||
if ($row['type'] === 'miniprogram') :
|
||||
list($row['appid'], $row['url'], $row['pagepath']) = explode(',', "{$row['content']},,");
|
||||
elseif ($row['type'] === 'view') :
|
||||
if (preg_match('#^(\w+:)?//#', $row['content'])) {
|
||||
$row['url'] = $row['content'];
|
||||
} else {
|
||||
$row['url'] = url($row['content'], '', true, true);
|
||||
}
|
||||
elseif ($row['type'] === 'event') :
|
||||
if (isset($this->menuType[$row['content']])) {
|
||||
list($row['type'], $row['key']) = [$row['content'], "wechat_menu#id#{$row['id']}"];
|
||||
};
|
||||
elseif ($row['type'] === 'media_id'):
|
||||
$row['media_id'] = $row['content'];
|
||||
else :
|
||||
$row['key'] = "wechat_menu#id#{$row['id']}";
|
||||
!in_array($row['type'], $this->menuType) && $row['type'] = 'click';
|
||||
endif;
|
||||
unset($row['content']);
|
||||
}
|
||||
$menus = ToolsService::arr2tree($result, 'index', 'pindex', 'sub_button');
|
||||
@ -162,11 +157,11 @@ class Menu extends BasicAdmin
|
||||
}
|
||||
unset($menu['type']);
|
||||
}
|
||||
$wechat = &load_wechat('Menu');
|
||||
$wechat = load_wechat('Menu');
|
||||
if (false !== $wechat->createMenu(['button' => $menus])) {
|
||||
return ['status' => true, 'errmsg' => ''];
|
||||
}
|
||||
return ['status' => false, 'errmsg' => $wechat->errMsg];
|
||||
return ['status' => false, 'errmsg' => $wechat->getError()];
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ class News extends BasicAdmin
|
||||
|
||||
/**
|
||||
* 推荐图文
|
||||
* @return array|void
|
||||
* @return array
|
||||
*/
|
||||
public function push()
|
||||
{
|
||||
@ -181,8 +181,7 @@ class News extends BasicAdmin
|
||||
if ('' === ($params = $this->request->post('group', ''))) {
|
||||
return ['code' => 'SUCCESS', 'data' => []];
|
||||
}
|
||||
$ids = explode(',', $params);
|
||||
$db = Db::name('WechatFans');
|
||||
list($ids, $db) = [explode(',', $params), Db::name('WechatFans')];
|
||||
!in_array('0', $ids) && $db->where("concat(',',tagid_list,',') REGEXP '," . join(',|,', $ids) . ",'");
|
||||
return ['code' => "SUCCESS", 'data' => $db->where('subscribe', '1')->limit(200)->column('nickname')];
|
||||
default :
|
||||
@ -193,8 +192,7 @@ class News extends BasicAdmin
|
||||
if ($this->request->isGet()) {
|
||||
$fans_tags = Db::name('WechatFansTags')->select();
|
||||
array_unshift($fans_tags, [
|
||||
'id' => 0,
|
||||
'name' => '全部',
|
||||
'id' => 0, 'name' => '全部',
|
||||
'count' => Db::name('WechatFans')->where('subscribe', '1')->count(),
|
||||
]);
|
||||
return view('push', ['vo' => $newsinfo, 'fans_tags' => $fans_tags]);
|
||||
@ -215,7 +213,7 @@ class News extends BasicAdmin
|
||||
$data['filter'] = ['is_to_all' => false, 'tag_id' => join(',', $post['fans_tags'])];
|
||||
$data['mpnews'] = ['media_id' => $newsinfo['media_id']];
|
||||
}
|
||||
$wechat = &load_wechat('Receive');
|
||||
$wechat = load_wechat('Receive');
|
||||
if (false !== $wechat->sendGroupMassMessage($data)) {
|
||||
LogService::write('微信管理', "图文[{$news_id}]推送成功");
|
||||
$this->success('微信图文推送成功!', '');
|
||||
@ -226,8 +224,8 @@ class News extends BasicAdmin
|
||||
|
||||
/**
|
||||
* 上传永久图文
|
||||
* @param type $newsinfo
|
||||
* @return boolean
|
||||
* @param array $newsinfo
|
||||
* @return bool
|
||||
*/
|
||||
private function _uploadWechatNews(&$newsinfo)
|
||||
{
|
||||
@ -238,7 +236,7 @@ class News extends BasicAdmin
|
||||
return "<img{$matches[1]}src=\"{$src}\"{$matches[3]}/>";
|
||||
}, htmlspecialchars_decode($article['content']));
|
||||
}
|
||||
$wechat = &load_wechat('media');
|
||||
$wechat = load_wechat('media');
|
||||
// 如果已经上传过,先删除之前的历史记录
|
||||
!empty($newsinfo['media_id']) && $wechat->delForeverMedia($newsinfo['media_id']);
|
||||
// 上传图文到微信服务器
|
||||
|
@ -31,7 +31,7 @@ class Notify extends Controller
|
||||
public function index()
|
||||
{
|
||||
// 实例支付接口
|
||||
$pay = &load_wechat('Pay');
|
||||
$pay = load_wechat('Pay');
|
||||
|
||||
// 获取支付通知
|
||||
$notifyInfo = $pay->getNotify();
|
||||
|
@ -40,6 +40,9 @@ class Review extends Controller
|
||||
// 文章预览
|
||||
if ($type === 'article' && is_numeric($content) && !empty($content)) {
|
||||
$article = Db::name('WechatNewsArticle')->where('id', $content)->find();
|
||||
if (!empty($article['content_source_url'])) {
|
||||
$this->redirect($article['content_source_url']);
|
||||
}
|
||||
$this->assign('vo', $article);
|
||||
}
|
||||
$this->assign($get);
|
||||
|
@ -64,7 +64,7 @@ class Tags extends BasicAdmin
|
||||
$name = $this->request->post('name', '');
|
||||
empty($name) && $this->error('粉丝标签名不能为空!');
|
||||
(Db::name($this->table)->where('name', $name)->count() > 0) && $this->error('粉丝标签标签名已经存在, 请使用其它标签名!');
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
if (false === ($result = $wechat->createTags($name)) && isset($result['tag'])) {
|
||||
$this->error("添加粉丝标签失败. {$wechat->errMsg}[{$wechat->errCode}]");
|
||||
}
|
||||
@ -91,7 +91,7 @@ class Tags extends BasicAdmin
|
||||
}
|
||||
$this->error('标签已经存在, 使用其它名称再试!');
|
||||
}
|
||||
$wechat = &load_wechat('User');
|
||||
$wechat = load_wechat('User');
|
||||
$data = ['id' => $id, 'name' => $name];
|
||||
if (false !== $wechat->updateTag($id, $name) && false !== DataService::save($this->table, $data, 'id')) {
|
||||
$this->success('编辑标签成功!', '');
|
||||
|
@ -70,12 +70,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-2">
|
||||
<div class="form-group">
|
||||
<input type="text" name="city" value="{$Think.get.city|default=''}" placeholder="城市" class="input-sm form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-1">
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-sm btn-white"><i class="fa fa-search"></i> 搜索</button>
|
||||
@ -87,6 +81,7 @@
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="" method="POST">
|
||||
{if !empty($list)}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
@ -133,25 +128,27 @@
|
||||
<td class='text-center'>{$vo.subscribe_at}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if empty($list)}
|
||||
<tr><td colspan="5" style="text-align:center">没 有 记 录 了 哦 !</td></tr>
|
||||
{/if}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
{else}
|
||||
<p class="help-block">暂时无记录</p>
|
||||
{/if}
|
||||
</form>
|
||||
|
||||
<div id="tags-box" class="hide">
|
||||
<form>
|
||||
<div class="row">
|
||||
<div class="row" style='max-height:230px;overflow:auto;margin-right:0'>
|
||||
{foreach $tags as $key=>$tag}
|
||||
<div class="col-xs-6">
|
||||
<label><input value="{$key}" type="checkbox" /> {$tag}</label>
|
||||
<div class="col-xs-4">
|
||||
<label style="overflow:hidden;text-overflow:ellipsis;display:block;white-space:nowrap">
|
||||
<input value="{$key}" type="checkbox" /> {$tag}
|
||||
</label>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<div class="hr-line-dashed"></div>
|
||||
<div class="text-center" style="margin-top:10px">
|
||||
<div class="hr-line-dashed" style="margin-top:0"></div>
|
||||
<button type="button" data-event="confirm" class="layui-btn layui-btn-small">保存数据</button>
|
||||
<button type="button" data-event="cancel" class="layui-btn layui-btn-danger layui-btn-small" type='button'>取消编辑</button>
|
||||
</div>
|
||||
|
@ -87,6 +87,7 @@
|
||||
<!-- 表单搜索 结束 -->
|
||||
|
||||
<form onsubmit="return false;" data-auto="" method="POST">
|
||||
{if !empty($list)}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
@ -133,12 +134,12 @@
|
||||
<td class='text-center'>{$vo.subscribe_at}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if empty($list)}
|
||||
<tr><td colspan="5" style="text-align:center">没 有 记 录 了 哦 !</td></tr>
|
||||
{/if}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
{else}
|
||||
<p class="help-block">暂时无记录</p>
|
||||
{/if}
|
||||
</form>
|
||||
|
||||
<div id="tags-box" class="hide">
|
||||
@ -146,11 +147,13 @@
|
||||
<div class="row" style='max-height:230px;overflow:auto;margin-right:0'>
|
||||
{foreach $tags as $key=>$tag}
|
||||
<div class="col-xs-4">
|
||||
<label><input value="{$key}" type="checkbox" /> {$tag}</label>
|
||||
<label style="overflow:hidden;text-overflow:ellipsis;display:block;white-space:nowrap">
|
||||
<input value="{$key}" type="checkbox" /> {$tag}
|
||||
</label>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<div class="text-center" style="margin-top:10px">
|
||||
<div class="hr-line-dashed" style="margin-top:0"></div>
|
||||
<button type="button" data-event="confirm" class="layui-btn layui-btn-small">保存数据</button>
|
||||
<button type="button" data-event="cancel" class="layui-btn layui-btn-danger layui-btn-small" type='button'>取消编辑</button>
|
||||
|
@ -3,12 +3,15 @@
|
||||
{block name="button"}
|
||||
<div class="nowrap pull-right" style="margin-top:10px">
|
||||
<button data-open="{:url('add')}" class='layui-btn layui-btn-small'>添加规则</button>
|
||||
<button data-update data-field='delete' data-action='{:url("$classuri/del")}' class='layui-btn layui-btn-small layui-btn-danger'>删除规则</button>
|
||||
<button data-update data-field='delete' data-action='{:url("$classuri/del")}'
|
||||
class='layui-btn layui-btn-small layui-btn-danger'>删除规则
|
||||
</button>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name='content'}
|
||||
<form onsubmit="return false;" data-auto="true" action="__SELF__" method="post">
|
||||
{if !empty($list)}
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
@ -19,7 +22,7 @@
|
||||
<th class='list-table-sort-td'>
|
||||
<button type="submit" class="layui-btn layui-btn-normal layui-btn-mini">排 序</button>
|
||||
</th>
|
||||
<th class="text-center">关键字</th>
|
||||
<th class="text-left">关键字</th>
|
||||
<th class="text-center">回复类型</th>
|
||||
<th class="text-center">回复内容</th>
|
||||
<th class="text-center">更新时间</th>
|
||||
@ -36,7 +39,12 @@
|
||||
<td class='list-table-sort-td'>
|
||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input"/>
|
||||
</td>
|
||||
<td class="text-center">{$vo.keys}</td>
|
||||
<td class="text-left">
|
||||
{if !empty($vo.qrc)}
|
||||
<i class="fa fa-qrcode fa-lg pointer" data-tips-image="{$vo.qrc}" data-tips-text="关键字二维码"></i>
|
||||
{/if}
|
||||
{$vo.keys}
|
||||
</td>
|
||||
<td class="text-center">{$vo.type}</td>
|
||||
<td class="text-center">
|
||||
{if $vo.type eq '音乐'}
|
||||
@ -80,15 +88,18 @@
|
||||
|
||||
{if $vo.status eq 1 and auth("$classuri/forbid")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}' href="javascript:void(0)">禁用</a>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='0' data-action='{:url("$classuri/forbid")}'
|
||||
href="javascript:void(0)">禁用</a>
|
||||
{elseif auth("$classuri/resume")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}' href="javascript:void(0)">启用</a>
|
||||
<a data-update="{$vo.id}" data-field='status' data-value='1' data-action='{:url("$classuri/resume")}'
|
||||
href="javascript:void(0)">启用</a>
|
||||
{/if}
|
||||
|
||||
{if auth("$classuri/del")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("del")}' href="javascript:void(0)">删除</a>
|
||||
<a data-update="{$vo.id}" data-field='delete' data-action='{:url("del")}'
|
||||
href="javascript:void(0)">删除</a>
|
||||
{/if}
|
||||
|
||||
</td>
|
||||
@ -97,6 +108,10 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
{else}
|
||||
<p class="help-block">暂时无记录</p>
|
||||
{/if}
|
||||
|
||||
</form>
|
||||
|
||||
{/block}
|
||||
|
@ -2,12 +2,42 @@
|
||||
|
||||
{block name="style"}
|
||||
<style>
|
||||
.mobile-preview { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -khtml-user-select: none; user-select: none;}
|
||||
.menu-editor { left: 317px; display: block; max-width: 500px; width: 500px; height: 580px; border-radius: 0; border-color: #e7e7eb; box-shadow: none}
|
||||
.menu-editor .arrow { top: auto !important; bottom: 15px}
|
||||
.menu-editor .popover-title { margin-top: 0}
|
||||
.menu-delete { font-weight: 400; font-size: 12px;}
|
||||
.menu-submit { margin-right: 10px}
|
||||
.mobile-preview {
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.menu-editor {
|
||||
left: 317px;
|
||||
display: block;
|
||||
max-width: 500px;
|
||||
width: 500px;
|
||||
height: 580px;
|
||||
border-radius: 0;
|
||||
border-color: #e7e7eb;
|
||||
box-shadow: none
|
||||
}
|
||||
|
||||
.menu-editor .arrow {
|
||||
top: auto !important;
|
||||
bottom: 15px
|
||||
}
|
||||
|
||||
.menu-editor .popover-title {
|
||||
margin-top: 0
|
||||
}
|
||||
|
||||
.menu-delete {
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.menu-submit {
|
||||
margin-right: 10px
|
||||
}
|
||||
</style>
|
||||
{/block}
|
||||
|
||||
@ -18,13 +48,18 @@
|
||||
<ul class='mobile-footer'>
|
||||
<!--{foreach $list as $menu}-->
|
||||
<li class="parent-menu">
|
||||
<a><i class="icon-sub hide"></i> <span data-type="{$menu.type}" data-content="{$menu.content}">{$menu.name}</span></a>
|
||||
<a>
|
||||
<i class="icon-sub hide"></i>
|
||||
<span data-type="{$menu.type}" data-content="{$menu.content}">{$menu.name}</span>
|
||||
</a>
|
||||
<div class="sub-menu text-center hide">
|
||||
<ul>
|
||||
<!--{if empty($menu['sub']) eq false}-->
|
||||
<!--{foreach $menu.sub as $submenu}-->
|
||||
<li>
|
||||
<a class="bottom-border"><span data-type="{$submenu.type}" data-content="{$submenu.content}">{$submenu.name}</span></a>
|
||||
<a class="bottom-border">
|
||||
<span data-type="{$submenu.type}" data-content="{$submenu.content}">{$submenu.name}</span>
|
||||
</a>
|
||||
</li>
|
||||
<!--{/foreach}-->
|
||||
<!--{/if}-->
|
||||
@ -117,19 +152,12 @@
|
||||
{block name="script"}
|
||||
<script>
|
||||
$(function () {
|
||||
/**
|
||||
* 菜单事件构造方法
|
||||
* @returns {menu.index_L2.menu}
|
||||
*/
|
||||
|
||||
var menu = function () {
|
||||
this.version = '1.0';
|
||||
this.$btn;
|
||||
this.listen();
|
||||
};
|
||||
/**
|
||||
* 控件默认事件
|
||||
* @returns {undefined}
|
||||
*/
|
||||
|
||||
menu.prototype.listen = function () {
|
||||
var self = this;
|
||||
$('.mobile-footer').on('click', 'li a', function () {
|
||||
@ -145,10 +173,7 @@
|
||||
self.submit();
|
||||
});
|
||||
};
|
||||
/**
|
||||
* 添加一个菜单
|
||||
* @returns {undefined}
|
||||
*/
|
||||
|
||||
menu.prototype.add = function () {
|
||||
var $add = this.$btn.parent('li'), $ul = $add.parent('ul');
|
||||
if ($ul.hasClass('mobile-footer')) { /* 添加一级菜单 */
|
||||
@ -160,10 +185,7 @@
|
||||
}
|
||||
this.checkShow();
|
||||
};
|
||||
/**
|
||||
* 数据校验显示
|
||||
* @returns {unresolved}
|
||||
*/
|
||||
|
||||
menu.prototype.checkShow = function () {
|
||||
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
|
||||
/* 选中一级菜单时显示二级菜单 */
|
||||
@ -190,10 +212,7 @@
|
||||
this.renderEdit();
|
||||
return $ul;
|
||||
};
|
||||
/**
|
||||
* 删除当前菜单
|
||||
* @returns {undefined}
|
||||
*/
|
||||
|
||||
menu.prototype.del = function () {
|
||||
var $li = this.$btn.parent('li'), $ul = $li.parent('ul');
|
||||
var $default = function () {
|
||||
@ -212,13 +231,9 @@
|
||||
this.$btn = $default.find('a:first');
|
||||
this.checkShow();
|
||||
};
|
||||
/**
|
||||
* 显示当前菜单的属性值
|
||||
* @returns {undefined}
|
||||
*/
|
||||
|
||||
menu.prototype.renderEdit = function () {
|
||||
var $span = this.$btn.find('span'), $li = this.$btn.parent('li'), $ul = $li.parent('ul');
|
||||
var $html = '';
|
||||
var $span = this.$btn.find('span'), $li = this.$btn.parent('li'), $ul = $li.parent('ul'), $html = '';
|
||||
if ($li.find('ul li').size() > 1) { /*父菜单*/
|
||||
$html = $($('.menu-editor-parent-tpl').html());
|
||||
$html.find('input[name="menu-name"]').val($span.text()).on('change keyup', function () {
|
||||
@ -234,16 +249,16 @@
|
||||
var type = $span.attr('data-type') || 'text';
|
||||
$html.find('input[name="menu-type"]').on('click', function () {
|
||||
$span.attr('data-type', this.value || 'text');
|
||||
var content = $span.data('content') || '';
|
||||
var type = this.value;
|
||||
var type = this.value, content = $span.data('content') || '请输入内容';
|
||||
var html = function () {
|
||||
switch (type) {
|
||||
case 'miniprogram':
|
||||
var tpl = '<div>\
|
||||
<div>appid<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{appid}" name="appid"></div>\
|
||||
<div>url<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{url}" name="url"></div>\
|
||||
<div>pagepath<input style="display:block" name="pagepath" class="form-control input-sm" value={pagepath}></div>\
|
||||
</div>';
|
||||
var tpl = '\
|
||||
<div>\
|
||||
<div>appid<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{appid}" name="appid"></div>\
|
||||
<div>url<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{url}" name="url"></div>\
|
||||
<div>pagepath<input style="display:block" name="pagepath" class="form-control input-sm" value={pagepath}></div>\
|
||||
</div>';
|
||||
var _appid = '', _pagepath = '', _url = '';
|
||||
if (content.indexOf(',') > 0) {
|
||||
_appid = content.split(',')[0] || '';
|
||||
@ -266,8 +281,10 @@
|
||||
'pic_sysphoto': '弹出系统拍照发图',
|
||||
'pic_photo_or_album': '弹出拍照或者相册发图',
|
||||
'pic_weixin': '弹出微信相册发图器',
|
||||
'location_select': '弹出地理位置选择器'};
|
||||
var select = [], tpl = '<div><label class="font-noraml"><input class="cuci-radio" name="content" type="radio" {checked} value="{value}"> {title}</label></div>';
|
||||
'location_select': '弹出地理位置选择器'
|
||||
};
|
||||
var select = [],
|
||||
tpl = '<div><label class="font-noraml"><input class="cuci-radio" name="content" type="radio" {checked} value="{value}"> {title}</label></div>';
|
||||
if (!(options[content] || false)) {
|
||||
content = 'scancode_push';
|
||||
$span.data('content', content);
|
||||
@ -291,20 +308,9 @@
|
||||
}).filter('input[value="{type}"]'.replace('{type}', type)).trigger('click');
|
||||
}
|
||||
};
|
||||
/**
|
||||
* 提交数据
|
||||
* @returns {undefined}
|
||||
*/
|
||||
|
||||
menu.prototype.submit = function () {
|
||||
var data = [];
|
||||
function getdata($span) {
|
||||
var menudata = {};
|
||||
menudata.name = $span.text();
|
||||
menudata.type = $span.attr('data-type');
|
||||
menudata.content = $span.data('content') || '';
|
||||
return menudata;
|
||||
}
|
||||
|
||||
$('li.parent-menu').map(function (index, item) {
|
||||
if (!$(item).hasClass('menu-add')) {
|
||||
var menudata = getdata($(item).find('a:first span'));
|
||||
@ -322,11 +328,19 @@
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
$.form.load('{:url("$classuri/edit")}', {data: data}, 'POST');
|
||||
|
||||
function getdata($span) {
|
||||
var menudata = {};
|
||||
menudata.name = $span.text();
|
||||
menudata.type = $span.attr('data-type');
|
||||
menudata.content = $span.data('content') || '';
|
||||
return menudata;
|
||||
}
|
||||
|
||||
};
|
||||
/**
|
||||
* 实例菜单控件
|
||||
*/
|
||||
|
||||
new menu();
|
||||
});
|
||||
</script>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<hr/>
|
||||
{/foreach}
|
||||
{else}
|
||||
<div class="news-item transition active news-image" style="background-image:url('__PUBLIC__/static/plugs/uploader/theme/image.png')">
|
||||
<div class="news-item transition active news-image" style="background-image:url('__STATIC__/plugs/uploader/theme/image.png')">
|
||||
<a class="upload-multiple-close fa fa-close hide"></a>
|
||||
<span class="news-title"></span>
|
||||
</div>
|
||||
@ -58,7 +58,7 @@
|
||||
<div class="row nowrap">
|
||||
<div class="col-xs-3" style="width:160px">
|
||||
<div class="upload-image-box transition">
|
||||
<input value="__PUBLIC__/static/plugs/uploader/theme/image.png" type="hidden" name="local_url">
|
||||
<input value="__STATIC__/plugs/uploader/theme/image.png" type="hidden" name="local_url">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
@ -126,134 +126,134 @@
|
||||
$(this).parent('.upload-image-box').css('background-image', 'url(' + this.value + ')');
|
||||
});
|
||||
|
||||
require(['ueditor'], function () {
|
||||
|
||||
|
||||
/*! 实例富文本编辑器 */
|
||||
var editor, $item;
|
||||
/*! 实例富文本编辑器 */
|
||||
var editor, $item;
|
||||
|
||||
/*! 默认编辑第一篇图文 */
|
||||
editor = window.createEditor('[name="content"]', 'basic');
|
||||
/*! 默认编辑第一篇图文 */
|
||||
editor = window.createEditor('[name="content"]');
|
||||
|
||||
/*! 编辑器初始化成功 */
|
||||
editor.ready(function () {
|
||||
|
||||
var $form = $('form[name="news"]'), $body = $('body');
|
||||
|
||||
$form.validate();
|
||||
var $form = $('form[name="news"]'), $body = $('body');
|
||||
|
||||
/*! 数据提交 */
|
||||
$form.find('button[data-submit]').on('click', function () {
|
||||
var data = [];
|
||||
$form.submit();
|
||||
if (!syncEditor($('.news-item.active'))) {
|
||||
editor.setContent('文章内容不能留空,请输入内容!');
|
||||
return false;
|
||||
}
|
||||
$('.news-item').map(function () {
|
||||
var item = $(this).data('item');
|
||||
item.content = item.content || '文章内容不能留空,请输入内容!';
|
||||
data.push(item);
|
||||
});
|
||||
$.form.load('__SELF__', {data: data}, "post");
|
||||
});
|
||||
$form.validate();
|
||||
|
||||
/*! 输入标题显示 */
|
||||
$form.find('[name="title"]').on('keyup', function () {
|
||||
if ($item) {
|
||||
$item.find('.news-title').html(this.value).show();
|
||||
}
|
||||
});
|
||||
/*! 数据提交 */
|
||||
$form.find('button[data-submit]').on('click', function () {
|
||||
var data = [];
|
||||
$form.submit();
|
||||
if (!syncEditor($('.news-item.active'))) {
|
||||
editor.setData('文章内容不能留空,请输入内容!');
|
||||
return false;
|
||||
}
|
||||
$('.news-item').map(function () {
|
||||
var item = $(this).data('item');
|
||||
item.content = item.content || '文章内容不能留空,请输入内容!';
|
||||
data.push(item);
|
||||
});
|
||||
$.form.load('__SELF__', {data: data}, "post");
|
||||
});
|
||||
|
||||
/*! 同步编辑器 */
|
||||
function syncEditor($pItem) {
|
||||
// 处理上一个编辑器
|
||||
if ($form && $pItem && $pItem.size() > 0) {
|
||||
var data = {};
|
||||
data.id = $form.find('[name=id]').val();
|
||||
data.title = $form.find('[name=title]').val();
|
||||
data.local_url = $form.find('[name=local_url]').val();
|
||||
data.content = editor.getContent() || '';
|
||||
data.author = $form.find('[name=author]').val();
|
||||
data.digest = $form.find('[name=digest]').val();
|
||||
data.show_cover_pic = $form.find('[name="show_cover_pic"]').get(0).checked ? 1 : 0;
|
||||
$form.find('[name=local_url]').trigger('change');
|
||||
$pItem.data('item', data), $form.submit();
|
||||
if ($form.find('input.validate-error').size() > 0 || data.content.length < 1) {
|
||||
((data.content || '').length < 1) && editor.setContent('文章内容不能留空,请输入内容!');
|
||||
$pItem.addClass('active').siblings().removeClass('active');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
/*! 输入标题显示 */
|
||||
$form.find('[name="title"]').on('keyup', function () {
|
||||
if ($item) {
|
||||
$item.find('.news-title').html(this.value).show();
|
||||
}
|
||||
});
|
||||
|
||||
/*! 显示编辑器 */
|
||||
function showEditor() {
|
||||
// 读取对象数据
|
||||
$item = $('.news-item.active');
|
||||
this.get = function () {
|
||||
var data = $item.data('item') || {};
|
||||
data.id = data.id || 0;
|
||||
data.title = data.title || '';
|
||||
data.local_url = data.local_url || '__PUBLIC__/static/plugs/uploader/theme/image.png';
|
||||
data.content = data.content || '';
|
||||
data.author = data.author || '';
|
||||
data.digest = data.digest || '';
|
||||
data.show_cover_pic = data.show_cover_pic || 0;
|
||||
return data;
|
||||
};
|
||||
// 重置表单
|
||||
$form.get(0).reset();
|
||||
// 获取当前数据
|
||||
var data = this.get();
|
||||
for (var i in data) {
|
||||
if (i !== 'content' && i !== 'show_cover_pic') {
|
||||
$form.find('[name="' + i + '"]').val(data[i]).trigger('change');
|
||||
}
|
||||
}
|
||||
if (parseInt(data.show_cover_pic) === 1) {
|
||||
$form.find('[name="show_cover_pic"]').get(0).checked = true;
|
||||
}
|
||||
editor.setContent(data.content);
|
||||
}
|
||||
/*! 同步编辑器 */
|
||||
function syncEditor($pItem) {
|
||||
// 处理上一个编辑器
|
||||
if ($form && $pItem && $pItem.size() > 0) {
|
||||
var data = {};
|
||||
data.id = $form.find('[name=id]').val();
|
||||
data.title = $form.find('[name=title]').val();
|
||||
data.local_url = $form.find('[name=local_url]').val();
|
||||
data.content = editor.getData() || '';
|
||||
data.author = $form.find('[name=author]').val();
|
||||
data.digest = $form.find('[name=digest]').val();
|
||||
data.show_cover_pic = $form.find('[name="show_cover_pic"]').get(0).checked ? 1 : 0;
|
||||
data.content_source_url = $form.find('[name="content_source_url"]').val();
|
||||
$form.find('[name=local_url]').trigger('change');
|
||||
$pItem.data('item', data), $form.submit();
|
||||
if ($form.find('input.validate-error').size() > 0 || data.content.length < 1) {
|
||||
((data.content || '').length < 1) && editor.setData('文章内容不能留空,请输入内容!');
|
||||
$pItem.addClass('active').siblings().removeClass('active');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/*! 添加新图文 */
|
||||
$body.off('click', '.news-box .article-add').on('click', '.news-box .article-add', function () {
|
||||
var $html = $('<div class="news-item transition" style="background-image:url(__PUBLIC__/static/plugs/uploader/theme/image.png)"><a class="upload-multiple-close fa fa-close hide"></a><span class="news-title"></span></div><hr />');
|
||||
$html.insertBefore(this).trigger('click');
|
||||
$('.news-item').size() >= 7 && $(this).hide();
|
||||
});
|
||||
/*! 显示编辑器 */
|
||||
function showEditor() {
|
||||
// 读取对象数据
|
||||
$item = $('.news-item.active');
|
||||
this.get = function () {
|
||||
var data = $item.data('item') || {};
|
||||
data.id = data.id || 0;
|
||||
data.title = data.title || '';
|
||||
data.local_url = data.local_url || '__STATIC__/plugs/uploader/theme/image.png';
|
||||
data.content = data.content || '';
|
||||
data.author = data.author || '';
|
||||
data.digest = data.digest || '';
|
||||
data.content_source_url = data.content_source_url||'';
|
||||
data.show_cover_pic = data.show_cover_pic || 0;
|
||||
return data;
|
||||
};
|
||||
// 重置表单
|
||||
$form.get(0).reset();
|
||||
// 获取当前数据
|
||||
var data = this.get();
|
||||
for (var i in data) {
|
||||
if (i !== 'content' && i !== 'show_cover_pic') {
|
||||
$form.find('[name="' + i + '"]').val(data[i]).trigger('change');
|
||||
}
|
||||
}
|
||||
if (parseInt(data.show_cover_pic) === 1) {
|
||||
$form.find('[name="show_cover_pic"]').get(0).checked = true;
|
||||
}
|
||||
editor.setData(data.content);
|
||||
}
|
||||
|
||||
/*! 列表选择 */
|
||||
$body.off('click', '.news-item').on('click', '.news-item', function () {
|
||||
if (syncEditor($('.news-item.active'))) {
|
||||
$(this).addClass('active').siblings().removeClass('active');
|
||||
showEditor($item);
|
||||
}
|
||||
});
|
||||
/*! 添加新图文 */
|
||||
$body.off('click', '.news-box .article-add').on('click', '.news-box .article-add', function () {
|
||||
var $html = $('<div class="news-item transition" style="background-image:url(__STATIC__/plugs/uploader/theme/image.png)"><a class="upload-multiple-close fa fa-close hide"></a><span class="news-title"></span></div><hr />');
|
||||
$html.insertBefore(this).trigger('click');
|
||||
$('.news-item').size() >= 7 && $(this).hide();
|
||||
});
|
||||
|
||||
/*! 隐藏删除按钮 */
|
||||
$body.off('mouseleave').on('mouseleave', '.news-item', function () {
|
||||
$(this).find('.upload-multiple-close').addClass('hide');
|
||||
});
|
||||
/*! 列表选择 */
|
||||
$body.off('click', '.news-item').on('click', '.news-item', function () {
|
||||
if (syncEditor($('.news-item.active'))) {
|
||||
$(this).addClass('active').siblings().removeClass('active');
|
||||
showEditor($item);
|
||||
}
|
||||
});
|
||||
|
||||
/*! 显示删除按钮 */
|
||||
$body.off('mouseenter', '.news-item').on('mouseenter', '.news-item', function () {
|
||||
$('.upload-multiple-close').addClass('hide');
|
||||
$(this).find('.upload-multiple-close').removeClass('hide');
|
||||
});
|
||||
/*! 隐藏删除按钮 */
|
||||
$body.off('mouseleave').on('mouseleave', '.news-item', function () {
|
||||
$(this).find('.upload-multiple-close').addClass('hide');
|
||||
});
|
||||
|
||||
/*! 删除操作图文 */
|
||||
$body.off('click', '.upload-multiple-close').on('click', '.upload-multiple-close', function () {
|
||||
var $box = $(this).parents('.news-item');
|
||||
$box.add($box.next('hr')).remove();
|
||||
$('.news-item').size() < 7 && $('.news-box .article-add').show();
|
||||
});
|
||||
/*! 显示删除按钮 */
|
||||
$body.off('mouseenter', '.news-item').on('mouseenter', '.news-item', function () {
|
||||
$('.upload-multiple-close').addClass('hide');
|
||||
$(this).find('.upload-multiple-close').removeClass('hide');
|
||||
});
|
||||
|
||||
/*! 默认显示第一个 */
|
||||
$('.news-box .news-item:first').trigger('click');
|
||||
});
|
||||
});
|
||||
/*! 删除操作图文 */
|
||||
$body.off('click', '.upload-multiple-close').on('click', '.upload-multiple-close', function () {
|
||||
var $box = $(this).parents('.news-item');
|
||||
$box.add($box.next('hr')).remove();
|
||||
$('.news-item').size() < 7 && $('.news-box .article-add').show();
|
||||
});
|
||||
|
||||
/*! 默认显示第一个 */
|
||||
$('.news-box .news-item:first').trigger('click');
|
||||
|
||||
});
|
||||
</script>
|
||||
{/block}
|
||||
@ -262,7 +262,7 @@
|
||||
<style>
|
||||
.panel{border-radius:0}
|
||||
.news-left {left:20px;width:300px;position:absolute;}
|
||||
.news-right {position:absolute;left:335px;right:20px;}
|
||||
.news-right {position:absolute;left:330px;right:20px;}
|
||||
.news-left .news-item {position:relative;width:280px;height:150px;max-width:270px;overflow:hidden;border:1px solid #ccc;background-size:cover;background-position:center center;}
|
||||
.news-left .news-item.active {border:1px solid #44b549 !important;}
|
||||
.news-left .article-add {font-size:22px;text-align:center;display:block;color:#999;}
|
||||
@ -272,8 +272,7 @@
|
||||
.news-right .layui-input:hover, .news-right .layui-input:focus{border-color:#e5e6e7!important;}
|
||||
.news-right .input-group-addon{background:#fff;border-radius:0;border-color:#e5e6e7;}
|
||||
.news-right .upload-image-box{width:130px;height:90px;background-size:cover;background-position:center center;border:1px solid rgba(125,125,125,0.1);margin:5px}
|
||||
.news-item .upload-multiple-close{width:30px;height:30px;line-height:30px;text-align:center;background-color:rgba(0,0,0,.5);color:#fff;float:right;}
|
||||
.news-item .upload-multiple-close{width:30px;height:30px;line-height:30px;text-align:center;background-color:rgba(0,0,0,.5);color:#fff;float:right;margin-right:-1px;margin-top:-1px}
|
||||
.news-item .upload-multiple-close:hover{text-decoration:none}
|
||||
.edui-default .edui-editor{border-radius:0!important}
|
||||
</style>
|
||||
{/block}
|
@ -2,9 +2,24 @@
|
||||
|
||||
{block name="body"}
|
||||
<style>
|
||||
body{min-width:100px!important}
|
||||
.pagination{padding:0 10px}
|
||||
.news-image{cursor:pointer;width:111px;height:120px;background-size:cover;background-position:center center;float:left;margin:10px;border:1px solid rgba(125,125,125,0.3)}
|
||||
body {
|
||||
min-width: 100px !important
|
||||
}
|
||||
|
||||
.pagination {
|
||||
padding: 0 10px
|
||||
}
|
||||
|
||||
.news-image {
|
||||
cursor: pointer;
|
||||
width: 111px;
|
||||
height: 120px;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
float: left;
|
||||
margin: 10px;
|
||||
border: 1px solid rgba(125, 125, 125, 0.3)
|
||||
}
|
||||
</style>
|
||||
<div class="news-container" id='news_box'>
|
||||
{foreach $list as $key=>$vo}
|
||||
|
@ -26,7 +26,8 @@
|
||||
{else}
|
||||
<div class='news_articel_item other'>
|
||||
<div class='right-text'>{$v.title}</div>
|
||||
<div data-tips-image='{$v.local_url}' class='left-image' style='background-image:url("{$v.local_url}");'></div>
|
||||
<div data-tips-image='{$v.local_url}' class='left-image' style='background-image:url("{$v.local_url}");'>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
{/if}
|
||||
@ -34,6 +35,9 @@
|
||||
</div>
|
||||
{/foreach}
|
||||
<div style="clear:both"></div>
|
||||
{if empty($list)}
|
||||
<p class="help-block">暂时无记录</p>
|
||||
{/if}
|
||||
</div>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
|
||||
@ -55,7 +59,11 @@
|
||||
$('body').on('click', '[data-news-del]', function () {
|
||||
var self = this;
|
||||
$.msg.confirm('确定要删除图文吗?', function () {
|
||||
$.form.load('{:url("del")}', {field: 'delete', value: 0, id: self.getAttribute('data-news-del')}, 'post', function (ret) {
|
||||
$.form.load('{:url("del")}', {
|
||||
field: 'delete',
|
||||
value: 0,
|
||||
id: self.getAttribute('data-news-del')
|
||||
}, 'post', function (ret) {
|
||||
if (ret.code) {
|
||||
$(self).parents('.news_item').remove();
|
||||
return $.msg.success(ret.msg), msnry.layout(), false;
|
||||
@ -72,17 +80,91 @@
|
||||
{block name="style"}
|
||||
<style>
|
||||
|
||||
#news_box {position:relative;}
|
||||
#news_box .news_item {position:relative;left:0;top:0;padding:5px;border:1px solid #ccc;box-sizing:content-box;margin:10px;width:300px}
|
||||
#news_box .news_item .news_articel_item{background-position:center center;background-size:100%;position:relative;height:150px;width:100%;overflow:hidden;}
|
||||
#news_box .news_item .news_articel_item p {padding:5px;max-height:5em;font-size:12px;color:#fff;overflow:hidden;text-overflow:ellipsis;background:rgba(0,0,0,0.7);position:absolute;width:100%;bottom:0}
|
||||
#news_box .news_item .news_articel_item.other{height:50px;padding:5px 0;}
|
||||
#news_box .news_item .news_articel_item .left-image{width:50px;height:50px;position:relative;float:left;background-position:center center;background-size:100%;overflow:hidden;}
|
||||
#news_box .news_item .news_articel_item .right-text{float:left;width:250px;padding-right:10px;overflow:hidden;text-overflow:ellipsis;}
|
||||
#news_box .news_item .hr-line-dashed:last-child{display:none}
|
||||
#news_box .hr-line-dashed{margin:6px 0 1px 0}
|
||||
#news_box .news_tools{top:0;z-index:80;color:#fff;width:312px;margin-left:-6px;position:absolute;background:rgba(0,0,0,0.7);text-align:right;padding:0 5px;line-height:38px;}
|
||||
#news_box .news_tools a{color:#fff;margin-left:10px}
|
||||
#news_box {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#news_box .news_item {
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 5px;
|
||||
margin: 10px;
|
||||
width: 300px;
|
||||
position: relative;
|
||||
border: 1px solid #ccc;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#news_box .news_item .news_articel_item {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background-size: 100%;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
#news_box .news_item .news_articel_item p {
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
max-height: 5em;
|
||||
font-size: 12px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
text-overflow: ellipsis;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
#news_box .news_item .news_articel_item.other {
|
||||
height: 50px;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
#news_box .news_item .news_articel_item .left-image {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background-size: 100%;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
#news_box .news_item .news_articel_item .right-text {
|
||||
float: left;
|
||||
width: 250px;
|
||||
padding-right: 10px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
#news_box .news_item .hr-line-dashed:last-child {
|
||||
display: none
|
||||
}
|
||||
|
||||
#news_box .hr-line-dashed {
|
||||
margin: 6px 0 1px 0
|
||||
}
|
||||
|
||||
#news_box .news_tools {
|
||||
top: 0;
|
||||
z-index: 80;
|
||||
color: #fff;
|
||||
width: 312px;
|
||||
padding: 0 5px;
|
||||
margin-left: -6px;
|
||||
line-height: 38px;
|
||||
text-align: right;
|
||||
position: absolute;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
#news_box .news_tools a {
|
||||
color: #fff;
|
||||
margin-left: 10px
|
||||
}
|
||||
|
||||
</style>
|
||||
{/block}
|
@ -7,7 +7,7 @@
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="viewport" content="initial-scale=1,maximum-scale=1">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/plugs/aui/aui.css">
|
||||
<link rel="stylesheet" href="__STATIC__/plugs/aui/aui.css">
|
||||
</head>
|
||||
<body class='aui-scroll-x'>
|
||||
<style>
|
||||
@ -21,13 +21,13 @@
|
||||
.aui-chat .aui-chat-content .aui-chat-arrow.one {top:.7rem!important;background:#f5f5f5!important;border:1px solid #ccc!important;left:-0.28rem!important;}
|
||||
.aui-card-list-content-padded img {max-width: 100% !important;}
|
||||
</style>
|
||||
<script src="__PUBLIC__/static/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
<script src="__STATIC__/plugs/jquery/jquery.min.js" type="text/javascript"></script>
|
||||
{if ($type eq 'text') or ($type eq 'image') or ($type eq 'music')}
|
||||
<section class="aui-chat">
|
||||
<div class="aui-chat-header"><span class="time">{:date('H:i')}</span></div>
|
||||
<div class="aui-chat-item aui-chat-left">
|
||||
<div class="aui-chat-media">
|
||||
<img src="__PUBLIC__/static/theme/default/img/head.gif"/>
|
||||
<img src="__STATIC__/theme/default/img/head.gif"/>
|
||||
</div>
|
||||
<div class="aui-chat-inner">
|
||||
{if $type eq 'text'}
|
||||
@ -40,7 +40,7 @@
|
||||
<div class="aui-chat-content bg-white">
|
||||
<div class="aui-chat-arrow one"></div>
|
||||
<div class="aui-chat-arrow two"></div>
|
||||
<img src='{$content|default="__PUBLIC__/static/theme/default/img/image.png"}'/>
|
||||
<img src='{$content|default="__STATIC__/theme/default/img/image.png"}'/>
|
||||
</div>
|
||||
{elseif $type eq 'music'}
|
||||
<div class="aui-chat-content" style='background:#080'>
|
||||
|
@ -1,13 +1,13 @@
|
||||
:: Composer 安装更新脚本
|
||||
@echo off
|
||||
title Composer Plugs Install And Optimize
|
||||
echo.
|
||||
echo ========= 1. 清理已安装插件 =========
|
||||
rmdir /s/q vendor thinkphp runtime
|
||||
echo.
|
||||
echo ========= 2. 下载并安装插件 =========
|
||||
composer update --profile --prefer-dist --optimize-autoloader
|
||||
echo.
|
||||
echo ========= 3. 压缩并发布插件 =========
|
||||
composer dump-autoload --optimize
|
||||
:: Composer 安装更新脚本
|
||||
@echo off
|
||||
title Composer Plugs Install And Optimize
|
||||
echo.
|
||||
echo ========= 1. 清理已安装插件 =========
|
||||
rmdir /s/q vendor thinkphp runtime
|
||||
echo.
|
||||
echo ========= 2. 下载并安装插件 =========
|
||||
composer update --profile --prefer-dist --optimize-autoloader
|
||||
echo.
|
||||
echo ========= 3. 压缩并发布插件 =========
|
||||
composer dump-autoload --optimize
|
||||
exit
|
@ -39,18 +39,6 @@ class BasicAdmin extends Controller
|
||||
*/
|
||||
public $table;
|
||||
|
||||
/**
|
||||
* 默认检查用户登录状态
|
||||
* @var bool
|
||||
*/
|
||||
public $checkLogin = true;
|
||||
|
||||
/**
|
||||
* 默认检查节点访问权限
|
||||
* @var bool
|
||||
*/
|
||||
public $checkAuth = true;
|
||||
|
||||
/**
|
||||
* 表单默认操作
|
||||
* @param Query $dbQuery 数据库查询对象
|
||||
@ -79,7 +67,10 @@ class BasicAdmin extends Controller
|
||||
if (false !== $this->_callback('_form_filter', $data)) {
|
||||
$result = DataService::save($db, $data, $pk, $where);
|
||||
if (false !== $this->_callback('_form_result', $result)) {
|
||||
$result !== false ? $this->success('恭喜, 数据保存成功!', '') : $this->error('数据保存失败, 请稍候再试!');
|
||||
if ($result !== false) {
|
||||
$this->success('恭喜, 数据保存成功!', '');
|
||||
}
|
||||
$this->error('数据保存失败, 请稍候再试!');
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -113,11 +104,13 @@ class BasicAdmin extends Controller
|
||||
}
|
||||
$result = [];
|
||||
if ($isPage) {
|
||||
$rowPage = intval($this->request->get('rows', cookie('rows')));
|
||||
cookie('rows', $rowPage >= 10 ? $rowPage : 20);
|
||||
$page = $db->paginate($rowPage, $total, ['query' => $this->request->get()]);
|
||||
$rows = intval($this->request->get('rows', cookie('rows')));
|
||||
cookie('rows', $rows >= 10 ? $rows : 20);
|
||||
$page = $db->paginate($rows, $total, ['query' => $this->request->get()]);
|
||||
$result['list'] = $page->all();
|
||||
$result['page'] = preg_replace(['|href="(.*?)"|', '|pagination|'], ['data-open="$1" href="javascript:void(0);"', 'pagination pull-right'], $page->render());
|
||||
$pattern = ['|href="(.*?)"|', '|pagination|'];
|
||||
$replacement = ['data-open="$1" href="javascript:void(0);"', 'pagination pull-right'];
|
||||
$result['page'] = preg_replace($pattern, $replacement, $page->render());
|
||||
} else {
|
||||
$result['list'] = $db->select();
|
||||
}
|
||||
|
@ -15,7 +15,6 @@
|
||||
namespace controller;
|
||||
|
||||
use service\ToolsService;
|
||||
use think\Cache;
|
||||
use think\Request;
|
||||
use think\Response;
|
||||
|
||||
@ -47,17 +46,8 @@ class BasicApi
|
||||
{
|
||||
// CORS 跨域 Options 检测响应
|
||||
ToolsService::corsOptionsHandler();
|
||||
// 获取当前 Request 对象
|
||||
// 输入对象
|
||||
$this->request = is_null($request) ? Request::instance() : $request;
|
||||
// 安全方法请求过滤
|
||||
if (in_array(strtolower($this->request->action()), ['response', 'setcache', 'getcache', 'delcache', '_empty'])) {
|
||||
exit($this->response('禁止访问接口安全方法!', 'ACCESS_NOT_ALLOWED')->send());
|
||||
}
|
||||
// 访问 Token 检测处理
|
||||
$this->token = $this->request->param('token', $this->request->header('token', false));
|
||||
if (empty($this->token) && !method_exists($this, $this->request->action())) {
|
||||
exit($this->response('访问TOKEN失效,请重新授权!', 'ACCESS_TOKEN_FAILD')->send());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -70,59 +60,8 @@ class BasicApi
|
||||
*/
|
||||
public function response($msg, $code = 'SUCCESS', $data = [], $type = 'json')
|
||||
{
|
||||
$result = ['msg' => $msg, 'code' => $code, 'data' => $data, 'token' => $this->token, 'dataType' => strtolower($type)];
|
||||
$result = ['msg' => $msg, 'code' => $code, 'data' => $data, 'type' => strtolower($type)];
|
||||
return Response::create($result, $type)->header(ToolsService::corsRequestHander())->code(200);
|
||||
}
|
||||
|
||||
/**
|
||||
* 写入缓存
|
||||
* @param string $name 缓存标识
|
||||
* @param mixed $value 存储数据
|
||||
* @param int|null $expire 有效时间 0为永久
|
||||
* @return bool
|
||||
*/
|
||||
public function setCache($name, $value, $expire = null)
|
||||
{
|
||||
return Cache::set("{$this->token}_{$name}", $value, $expire);
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取缓存
|
||||
* @param string $name 缓存标识
|
||||
* @param mixed $default 默认值
|
||||
* @return mixed
|
||||
*/
|
||||
public function getCache($name, $default = false)
|
||||
{
|
||||
return Cache::get("{$this->token}_{$name}", $default);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除缓存
|
||||
* @param string $name 缓存标识
|
||||
* @return bool
|
||||
*/
|
||||
public function delCache($name)
|
||||
{
|
||||
return Cache::rm("{$this->token}_{$name}");
|
||||
}
|
||||
|
||||
/**
|
||||
* API接口调度
|
||||
* @return Response
|
||||
*/
|
||||
public function _empty()
|
||||
{
|
||||
list($module, $controller, $action, $method) = explode('/', $this->request->path() . '///');
|
||||
if (!empty($module) && !empty($controller) && !empty($action) && !empty($method)) {
|
||||
$action = ucfirst($action);
|
||||
$Api = config('app_namespace') . "\\{$module}\\{$controller}\\{$action}Api";
|
||||
if (method_exists($Api, $method)) {
|
||||
return $Api::$method($this);
|
||||
}
|
||||
return $this->response('访问的接口不存在!', 'API_NOT_FOUND');
|
||||
}
|
||||
return $this->response('不符合标准的接口!', 'API_ERROR');
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -14,9 +14,7 @@
|
||||
|
||||
namespace controller;
|
||||
|
||||
use service\WechatService;
|
||||
use think\Controller;
|
||||
use think\Log;
|
||||
|
||||
/**
|
||||
* 微信基础控制器
|
||||
@ -38,92 +36,30 @@ class BasicWechat extends Controller
|
||||
*/
|
||||
protected $fansinfo;
|
||||
|
||||
/**
|
||||
* 当前访问网址
|
||||
* @var string
|
||||
*/
|
||||
protected $url;
|
||||
|
||||
/**
|
||||
* 是否默认开启网页授权
|
||||
* @var bool
|
||||
*/
|
||||
protected $checkAuth = true;
|
||||
|
||||
/**
|
||||
* 初始化方法
|
||||
*/
|
||||
public function _initialize()
|
||||
{
|
||||
// 当前完整URL地址
|
||||
$this->url = $this->request->url(true);
|
||||
// 网页授权,并获粉丝信息
|
||||
$this->assign('jsSign', load_wechat('script')->getJsSign($this->url));
|
||||
// 检查启用网页授权
|
||||
$this->checkAuth && $this->oAuth();
|
||||
}
|
||||
|
||||
/**
|
||||
* 微信网页授权
|
||||
* @param bool $fullMode 获取完整
|
||||
* @param bool $mode 获取完整
|
||||
* @return string
|
||||
*/
|
||||
protected function oAuth($fullMode = true)
|
||||
protected function oauth($mode = true)
|
||||
{
|
||||
// 本地开发调试用户 openid
|
||||
if (in_array($this->request->host(), ['127.0.0.1', 'localhost'])) {
|
||||
session('openid', 'oBWB3wWVNujb-PJlmPmxC5CBTNF0');
|
||||
$this->openid = session('openid');
|
||||
if (!empty($this->openid) && empty($mode)) {
|
||||
return $this->openid;
|
||||
} elseif (!empty($this->openid) && session('fansinfo')) {
|
||||
$this->fansinfo = session('fansinfo');
|
||||
return $this->openid;
|
||||
}
|
||||
// 检查缓存中 openid 信息是否完整
|
||||
if (($this->openid = session('openid'))) {
|
||||
if (!$fullMode) {
|
||||
return $this->openid;
|
||||
}
|
||||
$this->fansinfo = WechatService::getFansInfo($this->openid);
|
||||
if (!empty($this->fansinfo) && $this->fansinfo['expires_in'] > time()) {
|
||||
$this->assign('fansinfo', $this->fansinfo);
|
||||
return $this->openid;
|
||||
}
|
||||
list($sessionid, $location) = [session_id(), $this->request->url(true)];
|
||||
$result = load_wechat('wechat')->oauth($sessionid, $location, intval($mode));
|
||||
!empty($result['url']) && $this->redirect($result['url']);
|
||||
if (!empty($result['openid'])) {
|
||||
list($this->openid, $this->fansinfo) = [$result['openid'], $result['fans']];
|
||||
session('openid', $this->openid);
|
||||
session('fansinfo', $this->fansinfo);
|
||||
return $this->openid;
|
||||
}
|
||||
// 发起微信网页授权
|
||||
$wxoauth_url = $this->url;
|
||||
if (!($redirect_url = $this->request->get('redirectcode', false, 'decode'))) {
|
||||
$split = stripos($this->url, '?') === false ? '?' : '&';
|
||||
$wxoauth_url = "{$this->url}{$split}redirectcode=" . encode($this->url);
|
||||
}
|
||||
// 微信网页授权处理
|
||||
$wechat = &load_wechat('Oauth');
|
||||
if (!$this->request->get('code', false)) {
|
||||
$this->redirect($wechat->getOauthRedirect($wxoauth_url, 'webOauth', 'snsapi_base'));
|
||||
}
|
||||
if (false === ($result = $wechat->getOauthAccessToken()) || empty($result['openid'])) {
|
||||
Log::error("微信网页授权失败, {$wechat->errMsg}[{$wechat->errCode}]");
|
||||
$this->error("微信网页授权失败, {$wechat->errMsg}[{$wechat->errCode}]");
|
||||
}
|
||||
session('openid', $this->openid = $result['openid']);
|
||||
empty($fullMode) && $this->redirect($redirect_url);
|
||||
// 微信粉丝信息处理
|
||||
$this->fansinfo = WechatService::getFansInfo($this->openid);
|
||||
if (empty($this->fansinfo['expires_in']) || intval($this->fansinfo['expires_in']) < time()) {
|
||||
/* 使用普通授权, 获取用户资料; 未关注时重新使用高级授权 */
|
||||
if ($result['scope'] === 'snsapi_base') :
|
||||
$user = load_wechat('User')->getUserInfo($this->openid);
|
||||
empty($user['subscribe']) && $this->redirect($wechat->getOauthRedirect($wxoauth_url, 'webOauth', 'snsapi_userinfo'));
|
||||
/* 使用高级授权, 获取完整用户资料 */
|
||||
elseif ($result['scope'] === 'snsapi_userinfo') :
|
||||
$user = $wechat->getOauthUserinfo($result['access_token'], $this->openid);
|
||||
endif;
|
||||
/* 授权结果处理, 更新粉丝信息 */
|
||||
if ((empty($user) || !array_key_exists('nickname', $user))) :
|
||||
Log::error("微信网页授权获取用户信息失败, {$wechat->errMsg}[{$wechat->errCode}]");
|
||||
$this->error("微信网页授权获取用户信息失败, {$wechat->errMsg}[{$wechat->errCode}]");
|
||||
endif;
|
||||
$user['expires_in'] = $result['expires_in'] + time() - 100;
|
||||
$user['refresh_token'] = $result['refresh_token'];
|
||||
$user['access_token'] = $result['access_token'];
|
||||
WechatService::setFansInfo($user, $wechat->appid) or $this->error('微信网页授权用户保存失败!');
|
||||
}
|
||||
$this->redirect($redirect_url);
|
||||
$this->error('网页授权失败,请稍候再试!');
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
namespace hook;
|
||||
|
||||
use think\Config;
|
||||
use think\Db;
|
||||
use think\exception\HttpResponseException;
|
||||
use think\Request;
|
||||
use think\View;
|
||||
@ -43,23 +44,41 @@ class AccessAuth
|
||||
{
|
||||
$this->request = Request::instance();
|
||||
list($module, $controller, $action) = [$this->request->module(), $this->request->controller(), $this->request->action()];
|
||||
$vars = get_class_vars(config('app_namespace') . "\\{$module}\\controller\\{$controller}");
|
||||
$node = strtolower("{$module}/{$controller}/{$action}");
|
||||
$info = Db::name('SystemNode')->where('node', $node)->find();
|
||||
$access = [
|
||||
'is_menu' => intval(!empty($info['is_menu'])),
|
||||
'is_auth' => intval(!empty($info['is_auth'])),
|
||||
'is_login' => empty($info['is_auth']) ? intval(!empty($info['is_login'])) : 1
|
||||
];
|
||||
// 用户登录状态检查
|
||||
if ((!empty($vars['checkAuth']) || !empty($vars['checkLogin'])) && !session('user')) {
|
||||
if (!empty($access['is_login']) && !session('user')) {
|
||||
if ($this->request->isAjax()) {
|
||||
$result = ['code' => 0, 'msg' => '抱歉, 您还没有登录获取访问权限!', 'data' => '', 'url' => url('@admin/login'), 'wait' => 3];
|
||||
throw new HttpResponseException(json($result));
|
||||
$this->response('抱歉,您还没有登录获取访问权限!', 0, url('@admin/login'));
|
||||
}
|
||||
throw new HttpResponseException(redirect('@admin/login'));
|
||||
}
|
||||
// 访问权限节点检查
|
||||
if (!empty($vars['checkLogin']) && !auth("{$module}/{$controller}/{$action}")) {
|
||||
$result = ['code' => 0, 'msg' => '抱歉, 您没有访问该模块的权限!', 'data' => '', 'url' => '', 'wait' => 3];
|
||||
throw new HttpResponseException(json($result));
|
||||
if (!empty($access['is_auth']) && !auth($node)) {
|
||||
$this->response('抱歉,您没有访问该模块的权限!', 0);
|
||||
}
|
||||
// 权限正常, 默认赋值
|
||||
$view = View::instance(Config::get('template'), Config::get('view_replace_str'));
|
||||
$view->assign('classuri', strtolower("{$module}/{$controller}"));
|
||||
}
|
||||
|
||||
/**
|
||||
* 返回消息对象
|
||||
* @param string $msg 消息内容
|
||||
* @param int $code 返回状态码
|
||||
* @param string $url 跳转URL地址
|
||||
* @param array $data 数据内容
|
||||
* @param int $wait
|
||||
*/
|
||||
protected function response($msg, $code = 0, $url = '', $data = [], $wait = 3)
|
||||
{
|
||||
$result = ['code' => $code, 'msg' => $msg, 'data' => $data, 'url' => $url, 'wait' => $wait];
|
||||
throw new HttpResponseException(json($result));
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -39,12 +39,11 @@ class FilterView
|
||||
public function run(&$params)
|
||||
{
|
||||
$this->request = Request::instance();
|
||||
$appRoot = $this->request->root(true);
|
||||
$replace = [
|
||||
'__APP__' => $appRoot,
|
||||
'__SELF__' => $this->request->url(true),
|
||||
'__PUBLIC__' => strpos($appRoot, EXT) ? ltrim(dirname($appRoot), DS) : $appRoot,
|
||||
];
|
||||
list($appRoot, $uriSelf) = [$this->request->root(true), $this->request->url(true)];
|
||||
$uriRoot = strpos($appRoot, EXT) ? ltrim(dirname($appRoot), DS) : $appRoot;
|
||||
$uriStatic = (Request::instance()->isSsl() ? 'https' : 'http') . "://plugs.ctolog.com";
|
||||
$uriStatic = "{$uriRoot}/static";
|
||||
$replace = ['__APP__' => $appRoot, '__SELF__' => $uriSelf, '__PUBLIC__' => $uriRoot, '__STATIC__' => $uriStatic];
|
||||
$params = str_replace(array_keys($replace), array_values($replace), $params);
|
||||
!IS_CLI && $this->baidu($params);
|
||||
}
|
||||
|
@ -27,6 +27,23 @@ use think\Request;
|
||||
class DataService
|
||||
{
|
||||
|
||||
/**
|
||||
* 数据签名
|
||||
* @param array $data
|
||||
* @param string $apikey
|
||||
* @param string $prefix
|
||||
* @return string
|
||||
*/
|
||||
public static function sign(&$data, $apikey = '', $prefix = '')
|
||||
{
|
||||
$data['_SIGNSTR_'] = strtoupper(isset($data['_SIGNSTR_']) ? $data['_SIGNSTR_'] : substr(md5(uniqid()), 22));
|
||||
ksort($data);
|
||||
foreach (array_values($data) as $string) {
|
||||
is_array($string) || ($prefix .= "{$string}");
|
||||
}
|
||||
return strtoupper(md5($prefix . $apikey . $data['_SIGNSTR_']));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除指定序号
|
||||
* @param string $sequence
|
||||
@ -49,8 +66,7 @@ class DataService
|
||||
{
|
||||
$times = 0;
|
||||
while ($times++ < 10) {
|
||||
$i = 0;
|
||||
$sequence = '';
|
||||
list($i, $sequence) = [0, ''];
|
||||
while ($i++ < $length) {
|
||||
$sequence .= ($i <= 1 ? rand(1, 9) : rand(0, 9));
|
||||
}
|
||||
|
@ -160,14 +160,14 @@ class FileService
|
||||
|
||||
/**
|
||||
* 获取文件相对名称
|
||||
* @param string $source 文件标识
|
||||
* @param string $location 文件标识
|
||||
* @param string $ext 文件后缀
|
||||
* @param string $pre 文件前缀
|
||||
* @return string
|
||||
*/
|
||||
public static function getFileName($source, $ext = '', $pre = '')
|
||||
public static function getFileName($location, $ext = '', $pre = '')
|
||||
{
|
||||
return $pre . join('/', str_split(md5($source), 16)) . '.' . $ext;
|
||||
return $pre . join('/', str_split(md5($location), 16)) . '.' . $ext;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -203,10 +203,8 @@ class FileService
|
||||
{
|
||||
switch (empty($storage) ? sysconf('storage_type') : $storage) {
|
||||
case 'local':
|
||||
$filepath = ROOT_PATH . 'static/upload/' . $filename;
|
||||
if (file_exists($filepath)) {
|
||||
return file_get_contents($filepath);
|
||||
}
|
||||
$file = ROOT_PATH . 'static/upload/' . $filename;
|
||||
return file_exists($file) ? file_get_contents($file) : '';
|
||||
case 'qiniu':
|
||||
$auth = new Auth(sysconf('storage_qiniu_access_key'), sysconf('storage_qiniu_secret_key'));
|
||||
return file_get_contents($auth->privateDownloadUrl(self::getBaseUriQiniu() . $filename));
|
||||
|
@ -41,14 +41,14 @@ class HttpService
|
||||
$url .= (is_array($data) ? http_build_query($data) : $data);
|
||||
}
|
||||
$curl = curl_init();
|
||||
curl_setopt($curl, CURLOPT_TIMEOUT, $second);
|
||||
self::applyHttp($curl, $url);
|
||||
curl_setopt($curl, CURLOPT_URL, $url);
|
||||
curl_setopt($curl, CURLOPT_TIMEOUT, $second);
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||
!empty($header) && curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
||||
self::_setSsl($curl, $url);
|
||||
$content = curl_exec($curl);
|
||||
$status = curl_getinfo($curl);
|
||||
curl_close($curl);
|
||||
if (!empty($header)) {
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
||||
}
|
||||
list($content, $status) = [curl_exec($curl), curl_getinfo($curl), curl_close($curl)];
|
||||
return (intval($status["http_code"]) === 200) ? $content : false;
|
||||
}
|
||||
|
||||
@ -62,19 +62,19 @@ class HttpService
|
||||
*/
|
||||
static public function post($url, $data = [], $second = 30, $header = [])
|
||||
{
|
||||
self::_setUploadFile($data);
|
||||
$curl = curl_init();
|
||||
self::applyData($data);
|
||||
self::applyHttp($curl, $url);
|
||||
curl_setopt($curl, CURLOPT_TIMEOUT, $second);
|
||||
curl_setopt($curl, CURLOPT_URL, $url);
|
||||
curl_setopt($curl, CURLOPT_HEADER, false);
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($curl, CURLOPT_POST, true);
|
||||
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
|
||||
!empty($header) && curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
||||
self::_setSsl($curl, $url);
|
||||
$content = curl_exec($curl);
|
||||
$status = curl_getinfo($curl);
|
||||
curl_close($curl);
|
||||
if (!empty($header)) {
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
||||
}
|
||||
list($content, $status) = [curl_exec($curl), curl_getinfo($curl), curl_close($curl)];
|
||||
return (intval($status["http_code"]) === 200) ? $content : false;
|
||||
}
|
||||
|
||||
@ -83,7 +83,7 @@ class HttpService
|
||||
* @param $curl
|
||||
* @param string $url
|
||||
*/
|
||||
private static function _setSsl(&$curl, $url)
|
||||
private static function applyHttp(&$curl, $url)
|
||||
{
|
||||
if (stripos($url, "https") === 0) {
|
||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
||||
@ -93,23 +93,32 @@ class HttpService
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置POST文件上传兼容
|
||||
* Post 数据过滤处理
|
||||
* @param array $data
|
||||
* @param bool $isBuild
|
||||
* @return string
|
||||
*/
|
||||
private static function _setUploadFile(&$data)
|
||||
private static function applyData(&$data, $isBuild = true)
|
||||
{
|
||||
if (!is_array($data)) {
|
||||
return null;
|
||||
}
|
||||
foreach ($data as &$value) {
|
||||
is_array($value) && $isBuild = true;
|
||||
if (!(is_string($value) && strlen($value) > 0 && $value[0] === '@')) {
|
||||
continue;
|
||||
}
|
||||
$filename = realpath(trim($value, '@'));
|
||||
$filemime = FileService::getFileMine(strtolower(pathinfo($filename, PATHINFO_EXTENSION)));
|
||||
$value = class_exists('CURLFile', false) ? new CURLFile($filename, $filemime) : "{$value};type={$filemime}";
|
||||
if (!file_exists(($file = realpath(trim($value, '@'))))) {
|
||||
continue;
|
||||
}
|
||||
list($isBuild, $mime) = [false, FileService::getFileMine(pathinfo($file, 4))];
|
||||
if (class_exists('CURLFile', false)) {
|
||||
$value = new CURLFile($file, $mime);
|
||||
} else {
|
||||
$value = "{$value};type={$mime}";
|
||||
}
|
||||
}
|
||||
$isBuild && $data = http_build_query($data);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -82,20 +82,13 @@ class NodeService
|
||||
|
||||
/**
|
||||
* 获取系统代码节点
|
||||
* @param array $nodes
|
||||
* @return array
|
||||
*/
|
||||
public static function get()
|
||||
public static function get($nodes = [])
|
||||
{
|
||||
$alias = [];
|
||||
foreach (Db::name('SystemNode')->select() as $vo) {
|
||||
$alias["{$vo['node']}"] = $vo;
|
||||
}
|
||||
$nodes = [];
|
||||
$ignore = [
|
||||
'index',
|
||||
'wechat/api', 'wechat/notify', 'wechat/review',
|
||||
'admin/plugs', 'admin/login', 'admin/index',
|
||||
];
|
||||
$alias = Db::name('SystemNode')->column('node,is_menu,is_auth,is_login,title');
|
||||
$ignore = ['index', 'wechat/api', 'wechat/notify', 'wechat/review', 'admin/plugs', 'admin/login', 'admin/index'];
|
||||
foreach (self::getNodeTree(APP_PATH) as $thr) {
|
||||
foreach ($ignore as $str) {
|
||||
if (stripos($thr, $str) === 0) {
|
||||
@ -103,11 +96,16 @@ class NodeService
|
||||
}
|
||||
}
|
||||
$tmp = explode('/', $thr);
|
||||
$one = $tmp[0];
|
||||
$two = "{$tmp[0]}/{$tmp[1]}";
|
||||
$nodes[$one] = array_merge(isset($alias[$one]) ? $alias[$one] : ['node' => $one, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => '']);
|
||||
$nodes[$two] = array_merge(isset($alias[$two]) ? $alias[$two] : ['node' => $two, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $one]);
|
||||
$nodes[$thr] = array_merge(isset($alias[$thr]) ? $alias[$thr] : ['node' => $thr, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $two]);
|
||||
list($one, $two) = ["{$tmp[0]}", "{$tmp[0]}/{$tmp[1]}"];
|
||||
$nodes[$one] = array_merge(isset($alias[$one]) ? $alias[$one] : ['node' => $one, 'title' => '', 'is_menu' => 0, 'is_auth' => 0, 'is_login' => 0], ['pnode' => '']);
|
||||
$nodes[$two] = array_merge(isset($alias[$two]) ? $alias[$two] : ['node' => $two, 'title' => '', 'is_menu' => 0, 'is_auth' => 0, 'is_login' => 0], ['pnode' => $one]);
|
||||
$nodes[$thr] = array_merge(isset($alias[$thr]) ? $alias[$thr] : ['node' => $thr, 'title' => '', 'is_menu' => 0, 'is_auth' => 0, 'is_login' => 0], ['pnode' => $two]);
|
||||
}
|
||||
foreach ($nodes as &$node) {
|
||||
list($node['is_auth'], $node['is_menu'], $node['is_login']) = [
|
||||
intval($node['is_auth']), intval($node['is_menu']),
|
||||
empty($node['is_auth']) ? intval($node['is_login']) : 1
|
||||
];
|
||||
}
|
||||
return $nodes;
|
||||
}
|
||||
@ -150,7 +148,7 @@ class NodeService
|
||||
if ($dir[0] === '.') {
|
||||
continue;
|
||||
}
|
||||
if (($tmp = realpath($path . DS . $dir)) && (is_dir($tmp) || pathinfo($tmp, PATHINFO_EXTENSION) === $ext)) {
|
||||
if (($tmp = realpath($path . DS . $dir)) && (is_dir($tmp) || pathinfo($tmp, 4) === $ext)) {
|
||||
is_dir($tmp) ? $data = array_merge($data, self::_getFilePaths($tmp)) : $data[] = $tmp;
|
||||
}
|
||||
}
|
||||
|
@ -134,9 +134,7 @@ class PayService
|
||||
return false;
|
||||
}
|
||||
$data = ['prepayid' => $prepayid, 'order_no' => $order_no, 'out_trade_no' => $out_trade_no, 'fee' => $fee, 'trade_type' => $trade_type];
|
||||
$data['from'] = $from;
|
||||
$data['appid'] = $pay->appid;
|
||||
$data['expires_in'] = time() + 5400; //微信预支付码有效时间1.5小时(最长为2小时)
|
||||
list($data['from'], $data['appid'], $data['expires_in']) = [$from, $pay->getAppid(), time() + 5400];
|
||||
if (Db::name('WechatPayPrepayid')->insert($data) > 0) {
|
||||
Log::notice("内部订单号{$order_no}生成预支付成功,{$prepayid}");
|
||||
return $prepayid;
|
||||
|
86
extend/service/SoapService.php
Normal file
86
extend/service/SoapService.php
Normal file
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace service;
|
||||
|
||||
use think\Log;
|
||||
|
||||
/**
|
||||
* Soap服务对象
|
||||
* Class SoapService
|
||||
* @package service
|
||||
*/
|
||||
class SoapService
|
||||
{
|
||||
|
||||
/**
|
||||
* SOAP实例对象
|
||||
* @var \SoapClient
|
||||
*/
|
||||
protected $soap;
|
||||
|
||||
/**
|
||||
* 错误消息
|
||||
* @var string
|
||||
*/
|
||||
protected $error;
|
||||
|
||||
/**
|
||||
* SoapService constructor.
|
||||
* @param string|null $wsdl WSDL连接参数
|
||||
* @param array $params Params连接参数
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function __construct($wsdl, $params)
|
||||
{
|
||||
set_time_limit(3600);
|
||||
if (!extension_loaded('soap')) {
|
||||
throw new \Exception('Not support soap.');
|
||||
}
|
||||
$this->soap = new \SoapClient($wsdl, $params);
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性获取转换
|
||||
* @param $name
|
||||
* @return string
|
||||
*/
|
||||
public function __get($name)
|
||||
{
|
||||
switch (strtolower($name)) {
|
||||
case 'errmsg':
|
||||
return $this->getError();
|
||||
case 'errcode':
|
||||
return $this->getErrorCode();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name SOAP调用方法名
|
||||
* @param array|string $arguments SOAP调用参数
|
||||
* @return array|string|bool
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function __call($name, $arguments)
|
||||
{
|
||||
try {
|
||||
return $this->soap->__call($name, $arguments);
|
||||
} catch (\Exception $e) {
|
||||
Log::error("Soap Error. Call {$name} Method --- " . $e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -41,6 +41,7 @@ class ToolsService
|
||||
header('Content-Length: 0', true);
|
||||
header('status: 204');
|
||||
header('HTTP/1.0 204 No Content');
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
@ -54,8 +55,8 @@ class ToolsService
|
||||
'Access-Control-Allow-Origin' => '*',
|
||||
'Access-Control-Allow-Credentials' => true,
|
||||
'Access-Control-Allow-Methods' => 'GET,POST,OPTIONS',
|
||||
'X-Support' => 'service@cuci.cc',
|
||||
'X-Servers' => 'Guangzhou Cuci Technology Co. Ltd',
|
||||
'Access-Defined-X-Support' => 'service@cuci.cc',
|
||||
'Access-Defined-X-Servers' => 'Guangzhou Cuci Technology Co. Ltd',
|
||||
];
|
||||
}
|
||||
|
||||
@ -93,7 +94,7 @@ class ToolsService
|
||||
*/
|
||||
public static function arr2tree($list, $id = 'id', $pid = 'pid', $son = 'sub')
|
||||
{
|
||||
$tree = $map = [];
|
||||
list($tree, $map) = [[], []];
|
||||
foreach ($list as $item) {
|
||||
$map[$item[$id]] = $item;
|
||||
}
|
||||
@ -114,24 +115,21 @@ class ToolsService
|
||||
* @param string $id ID Key
|
||||
* @param string $pid 父ID Key
|
||||
* @param string $path
|
||||
* @param string $ppath
|
||||
* @return array
|
||||
*/
|
||||
public static function arr2table($list, $id = 'id', $pid = 'pid', $path = 'path', $ppath = '')
|
||||
{
|
||||
$_array_tree = self::arr2tree($list, $id, $pid);
|
||||
$tree = [];
|
||||
foreach ($_array_tree as $_tree) {
|
||||
$_tree[$path] = $ppath . '-' . $_tree[$id];
|
||||
$_tree['spl'] = str_repeat(" ├ ", substr_count($ppath, '-'));
|
||||
if (!isset($_tree['sub'])) {
|
||||
$_tree['sub'] = [];
|
||||
}
|
||||
$sub = $_tree['sub'];
|
||||
unset($_tree['sub']);
|
||||
$tree[] = $_tree;
|
||||
foreach (self::arr2tree($list, $id, $pid) as $attr) {
|
||||
$attr[$path] = "{$ppath}-{$attr[$id]}";
|
||||
$attr['sub'] = isset($attr['sub']) ? $attr['sub'] : [];
|
||||
$attr['spl'] = str_repeat(" ├ ", substr_count($ppath, '-'));
|
||||
$sub = $attr['sub'];
|
||||
unset($attr['sub']);
|
||||
$tree[] = $attr;
|
||||
if (!empty($sub)) {
|
||||
$sub_array = self::arr2table($sub, $id, $pid, $path, $_tree[$path]);
|
||||
$tree = array_merge($tree, (Array)$sub_array);
|
||||
$tree = array_merge($tree, (array)self::arr2table($sub, $id, $pid, $path, $attr[$path]));
|
||||
}
|
||||
}
|
||||
return $tree;
|
||||
@ -149,7 +147,7 @@ class ToolsService
|
||||
{
|
||||
$ids = [intval($id)];
|
||||
foreach ($list as $vo) {
|
||||
if (intval($vo[$pkey]) > 0 && intval($vo[$pkey]) == intval($id)) {
|
||||
if (intval($vo[$pkey]) > 0 && intval($vo[$pkey]) === intval($id)) {
|
||||
$ids = array_merge($ids, self::getArrSubIds($list, intval($vo[$key]), $key, $pkey));
|
||||
}
|
||||
}
|
||||
@ -163,14 +161,13 @@ class ToolsService
|
||||
*/
|
||||
public static function express($code)
|
||||
{
|
||||
$result = [];
|
||||
$client_ip = Request::instance()->ip();
|
||||
list($result, $client_ip) = [[], Request::instance()->ip()];
|
||||
$header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip];
|
||||
$autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}", [], 30, $header);
|
||||
foreach (json_decode($autoResult)->auto as $vo) {
|
||||
$microtime = microtime(true);
|
||||
$url = "http://www.kuaidi100.com/query?type={$vo->comCode}&postid={$code}&id=1&valicode=&temp={$microtime}";
|
||||
$result[$vo->comCode] = json_decode(HttpService::get($url, [], 30, $header), true);
|
||||
$location = "http://www.kuaidi100.com/query?type={$vo->comCode}&postid={$code}&id=1&valicode=&temp={$microtime}";
|
||||
$result[$vo->comCode] = json_decode(HttpService::get($location, [], 30, $header), true);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
@ -25,55 +25,51 @@ require.config({
|
||||
// 自定义插件(源码自创建或已修改源码)
|
||||
'admin.plugs': ['plugs'],
|
||||
'admin.listen': ['listen'],
|
||||
'layui': ['../plugs/layui/layui'],
|
||||
'ueditor': ['../plugs/ueditor/ueditor'],
|
||||
'template': ['../plugs/template/template'],
|
||||
'pcasunzips': ['../plugs/jquery/pcasunzips'],
|
||||
'laydate': ['../plugs/layui/laydate/laydate'],
|
||||
// 开源插件(未修改源码)
|
||||
// 开源插件(未修改源码)
|
||||
'pace': ['../plugs/jquery/pace.min'],
|
||||
'json': ['../plugs/jquery/json2.min'],
|
||||
'citys': ['../plugs/jquery/jquery.citys'],
|
||||
'print': ['../plugs/jquery/jquery.PrintArea'],
|
||||
'base64': ['../plugs/jquery/base64.min'],
|
||||
'layui': ['../plugs/layui/layui'],
|
||||
'jquery': ['../plugs/jquery/jquery.min'],
|
||||
'base64': ['../plugs/jquery/base64.min'],
|
||||
'ckeditor': ['../plugs/ckeditor/ckeditor'],
|
||||
'websocket': ['../plugs/socket/websocket'],
|
||||
'bootstrap': ['../plugs/bootstrap/js/bootstrap.min'],
|
||||
'jquery.ztree': ['../plugs/ztree/jquery.ztree.all.min'],
|
||||
'bootstrap.typeahead': ['../plugs/bootstrap/js/bootstrap3-typeahead.min'],
|
||||
'zeroclipboard': ['../plugs/ueditor/third-party/zeroclipboard/ZeroClipboard.min'],
|
||||
'jquery.cookies': ['../plugs/jquery/jquery.cookie'],
|
||||
'jquery.ztree': ['../plugs/ztree/jquery.ztree.all.min'],
|
||||
'jquery.masonry': ['../plugs/jquery/masonry.min'],
|
||||
|
||||
'jquery.cookies': ['../plugs/jquery/jquery.cookie'],
|
||||
},
|
||||
shim: {
|
||||
'citys': {deps: ['jquery']},
|
||||
'layui': {deps: ['jquery']},
|
||||
'laydate': {deps: ['jquery']},
|
||||
'bootstrap': {deps: ['jquery']},
|
||||
'ckeditor': {deps: ['jquery']},
|
||||
'websocket': {deps: [baseUrl + '../plugs/socket/swfobject.min.js']},
|
||||
'pcasunzips': {deps: ['jquery']},
|
||||
'admin.plugs': {deps: ['jquery', 'layui']},
|
||||
'admin.listen': {deps: ['jquery', 'jquery.cookies', 'admin.plugs']},
|
||||
'bootstrap': {deps: ['jquery']},
|
||||
'bootstrap.typeahead': {deps: ['bootstrap']},
|
||||
'jquery.ztree': {deps: ['jquery', 'css!' + baseUrl + '../plugs/ztree/zTreeStyle/zTreeStyle.css']},
|
||||
'jquery.cookies': {deps: ['jquery']},
|
||||
'jquery.masonry': {deps: ['jquery']},
|
||||
'admin.plugs': {deps: ['jquery', 'layui']},
|
||||
'bootstrap.typeahead': {deps: ['jquery', 'bootstrap']},
|
||||
'websocket': {deps: [baseUrl + '../plugs/socket/swfobject.min.js']},
|
||||
'admin.listen': {deps: ['jquery', 'jquery.cookies', 'admin.plugs']},
|
||||
'jquery.ztree': {deps: ['jquery', 'css!' + baseUrl + '../plugs/ztree/zTreeStyle/zTreeStyle.css']},
|
||||
},
|
||||
deps: ['css!' + baseUrl + '../plugs/awesome/css/font-awesome.min.css'],
|
||||
// 开启debug模式,不缓存资源
|
||||
urlArgs: "ver=" + (new Date()).getTime()
|
||||
// urlArgs: "ver=" + (new Date()).getTime()
|
||||
});
|
||||
|
||||
window.WEB_SOCKET_SWF_LOCATION = baseUrl + "../plugs/socket/WebSocketMain.swf";
|
||||
window.UEDITOR_HOME_URL = (window.ROOT_URL ? window.ROOT_URL + '/static/' : baseUrl) + 'plugs/ueditor/';
|
||||
|
||||
// UI框架初始化
|
||||
require(['pace', 'jquery', 'layui', 'bootstrap', 'jquery.cookies'], function () {
|
||||
layui.config({dir: baseUrl + '../plugs/layui/'});
|
||||
layui.use(['layer', 'form'], function () {
|
||||
window.layer = layui.layer;
|
||||
window.form = layui.form();
|
||||
require(['admin.listen']);
|
||||
PageLayout.call(this);
|
||||
function PageLayout(callback, custom, basic) {
|
||||
custom = custom || ['admin.listen', 'ckeditor'];
|
||||
basic = basic || ['pace', 'jquery', 'layui', 'bootstrap'];
|
||||
window.WEB_SOCKET_SWF_LOCATION = baseUrl + "../plugs/socket/WebSocketMain.swf";
|
||||
require(basic, function () {
|
||||
layui.config({dir: baseUrl + '../plugs/layui/'});
|
||||
layui.use(['layer', 'form'], function () {
|
||||
window.layer = layui.layer, window.form = layui.form;
|
||||
require(custom, callback || false);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -155,4 +155,5 @@ define(['jquery', 'admin.plugs'], function () {
|
||||
|
||||
/*! 表单监听初始化 */
|
||||
$.validate.listen(this);
|
||||
|
||||
});
|
File diff suppressed because it is too large
Load Diff
1304
static/plugs/ckeditor/CHANGES.md
Normal file
1304
static/plugs/ckeditor/CHANGES.md
Normal file
File diff suppressed because it is too large
Load Diff
1420
static/plugs/ckeditor/LICENSE.md
Normal file
1420
static/plugs/ckeditor/LICENSE.md
Normal file
File diff suppressed because it is too large
Load Diff
39
static/plugs/ckeditor/README.md
Normal file
39
static/plugs/ckeditor/README.md
Normal file
@ -0,0 +1,39 @@
|
||||
CKEditor 4
|
||||
==========
|
||||
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
http://ckeditor.com - See LICENSE.md for license information.
|
||||
|
||||
CKEditor is a text editor to be used inside web pages. It's not a replacement
|
||||
for desktop text editors like Word or OpenOffice, but a component to be used as
|
||||
part of web applications and websites.
|
||||
|
||||
## Documentation
|
||||
|
||||
The full editor documentation is available online at the following address:
|
||||
http://docs.ckeditor.com
|
||||
|
||||
## Installation
|
||||
|
||||
Installing CKEditor is an easy task. Just follow these simple steps:
|
||||
|
||||
1. **Download** the latest version from the CKEditor website:
|
||||
http://ckeditor.com. You should have already completed this step, but be
|
||||
sure you have the very latest version.
|
||||
2. **Extract** (decompress) the downloaded file into the root of your website.
|
||||
|
||||
**Note:** CKEditor is by default installed in the `ckeditor` folder. You can
|
||||
place the files in whichever you want though.
|
||||
|
||||
## Checking Your Installation
|
||||
|
||||
The editor comes with a few sample pages that can be used to verify that
|
||||
installation proceeded properly. Take a look at the `samples` directory.
|
||||
|
||||
To test your installation, just call the following page at your website:
|
||||
|
||||
http://<your site>/<CKEditor installation path>/samples/index.html
|
||||
|
||||
For example:
|
||||
|
||||
http://www.example.com/ckeditor/samples/index.html
|
10
static/plugs/ckeditor/adapters/jquery.js
vendored
Normal file
10
static/plugs/ckeditor/adapters/jquery.js
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
(function(a){if("undefined"==typeof a)throw Error("jQuery should be loaded before CKEditor jQuery adapter.");if("undefined"==typeof CKEDITOR)throw Error("CKEditor should be loaded before CKEditor jQuery adapter.");CKEDITOR.config.jqueryOverrideVal="undefined"==typeof CKEDITOR.config.jqueryOverrideVal?!0:CKEDITOR.config.jqueryOverrideVal;a.extend(a.fn,{ckeditorGet:function(){var a=this.eq(0).data("ckeditorInstance");if(!a)throw"CKEditor is not initialized yet, use ckeditor() with a callback.";return a},
|
||||
ckeditor:function(g,d){if(!CKEDITOR.env.isCompatible)throw Error("The environment is incompatible.");if(!a.isFunction(g)){var m=d;d=g;g=m}var k=[];d=d||{};this.each(function(){var b=a(this),c=b.data("ckeditorInstance"),f=b.data("_ckeditorInstanceLock"),h=this,l=new a.Deferred;k.push(l.promise());if(c&&!f)g&&g.apply(c,[this]),l.resolve();else if(f)c.once("instanceReady",function(){setTimeout(function(){c.element?(c.element.$==h&&g&&g.apply(c,[h]),l.resolve()):setTimeout(arguments.callee,100)},0)},
|
||||
null,null,9999);else{if(d.autoUpdateElement||"undefined"==typeof d.autoUpdateElement&&CKEDITOR.config.autoUpdateElement)d.autoUpdateElementJquery=!0;d.autoUpdateElement=!1;b.data("_ckeditorInstanceLock",!0);c=a(this).is("textarea")?CKEDITOR.replace(h,d):CKEDITOR.inline(h,d);b.data("ckeditorInstance",c);c.on("instanceReady",function(d){var e=d.editor;setTimeout(function(){if(e.element){d.removeListener();e.on("dataReady",function(){b.trigger("dataReady.ckeditor",[e])});e.on("setData",function(a){b.trigger("setData.ckeditor",
|
||||
[e,a.data])});e.on("getData",function(a){b.trigger("getData.ckeditor",[e,a.data])},999);e.on("destroy",function(){b.trigger("destroy.ckeditor",[e])});e.on("save",function(){a(h.form).submit();return!1},null,null,20);if(e.config.autoUpdateElementJquery&&b.is("textarea")&&a(h.form).length){var c=function(){b.ckeditor(function(){e.updateElement()})};a(h.form).submit(c);a(h.form).bind("form-pre-serialize",c);b.bind("destroy.ckeditor",function(){a(h.form).unbind("submit",c);a(h.form).unbind("form-pre-serialize",
|
||||
c)})}e.on("destroy",function(){b.removeData("ckeditorInstance")});b.removeData("_ckeditorInstanceLock");b.trigger("instanceReady.ckeditor",[e]);g&&g.apply(e,[h]);l.resolve()}else setTimeout(arguments.callee,100)},0)},null,null,9999)}});var f=new a.Deferred;this.promise=f.promise();a.when.apply(this,k).then(function(){f.resolve()});this.editor=this.eq(0).data("ckeditorInstance");return this}});CKEDITOR.config.jqueryOverrideVal&&(a.fn.val=CKEDITOR.tools.override(a.fn.val,function(g){return function(d){if(arguments.length){var m=
|
||||
this,k=[],f=this.each(function(){var b=a(this),c=b.data("ckeditorInstance");if(b.is("textarea")&&c){var f=new a.Deferred;c.setData(d,function(){f.resolve()});k.push(f.promise());return!0}return g.call(b,d)});if(k.length){var b=new a.Deferred;a.when.apply(this,k).done(function(){b.resolveWith(m)});return b.promise()}return f}var f=a(this).eq(0),c=f.data("ckeditorInstance");return f.is("textarea")&&c?c.getData():g.call(f)}}))})(window.jQuery);
|
1191
static/plugs/ckeditor/ckeditor.js
vendored
Normal file
1191
static/plugs/ckeditor/ckeditor.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
37
static/plugs/ckeditor/config.js
Normal file
37
static/plugs/ckeditor/config.js
Normal file
@ -0,0 +1,37 @@
|
||||
// 定义编辑器标准配置
|
||||
CKEDITOR.editorConfig = function (config) {
|
||||
config.language = 'zh-cn';
|
||||
config.toolbar = [
|
||||
{name: 'document', items: ['Source']},
|
||||
{name: 'clipboard', items: ['Undo', 'Redo']},
|
||||
{name: 'styles', items: ['Font', 'FontSize']},
|
||||
{name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', 'CopyFormatting', 'TextColor', 'BGColor']},
|
||||
{name: 'align', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']},
|
||||
{name: 'paragraph', items: ['NumberedList', 'BulletedList', 'Outdent', 'Indent', 'Blockquote', 'Link', 'Unlink']},
|
||||
{name: 'uimage', items: ['Table', 'UploadImage']},
|
||||
{name: 'tools', items: ['Maximize']}
|
||||
];
|
||||
config.allowedContent = true;
|
||||
config.extraPlugins = 'uimage';
|
||||
config.format_tags = 'p;h1;h2;h3;pre';
|
||||
config.removeButtons = 'Underline,Subscript,Superscript';
|
||||
config.removeDialogTabs = 'image:advanced;link:advanced';
|
||||
config.font_names = '宋体/SimSun;新宋体/NSimSun;仿宋_GB2312/FangSong_GB2312;楷体_GB2312/KaiTi_GB2312;黑体/SimHei;微软雅黑/Microsoft YaHei;' + config.font_names;
|
||||
};
|
||||
// 自定义图片上传插件
|
||||
CKEDITOR.plugins.add("uimage", {
|
||||
init: function (editor) {
|
||||
editor.ui.addButton("UploadImage", {label: "上传图片", command: 'uimage', icon: 'image', toolbar: 'insert,10'});
|
||||
editor.addCommand('uimage', {
|
||||
exec: function (editor) {
|
||||
var field = '_editor_upload_' + Math.floor(Math.random() * 100000);
|
||||
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile.html?mode=one&type=png,jpg,gif,jpeg&field=' + field;
|
||||
$('<input type="hidden">').attr('name', field).appendTo(editor.element.$).on('change', function () {
|
||||
var element = CKEDITOR.dom.element.createFromHtml('<img src="' + this.value + '" style="max-width:500px" border="0" title="image" />');
|
||||
editor.insertElement(element), $(this).remove();
|
||||
});
|
||||
$.form.iframe(url, '插入图片');
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
208
static/plugs/ckeditor/contents.css
Normal file
208
static/plugs/ckeditor/contents.css
Normal file
@ -0,0 +1,208 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
body
|
||||
{
|
||||
/* Font */
|
||||
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
|
||||
font-size: 12px;
|
||||
|
||||
/* Text color */
|
||||
color: #333;
|
||||
|
||||
/* Remove the background color to make it transparent */
|
||||
background-color: #fff;
|
||||
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.cke_editable
|
||||
{
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
|
||||
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
blockquote
|
||||
{
|
||||
font-style: italic;
|
||||
font-family: Georgia, Times, "Times New Roman", serif;
|
||||
padding: 2px 0;
|
||||
border-style: solid;
|
||||
border-color: #ccc;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.cke_contents_ltr blockquote
|
||||
{
|
||||
padding-left: 20px;
|
||||
padding-right: 8px;
|
||||
border-left-width: 5px;
|
||||
}
|
||||
|
||||
.cke_contents_rtl blockquote
|
||||
{
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
border-right-width: 5px;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
color: #0782C1;
|
||||
}
|
||||
|
||||
ol,ul,dl
|
||||
{
|
||||
/* IE7: reset rtl list margin. (#7334) */
|
||||
*margin-right: 0px;
|
||||
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6
|
||||
{
|
||||
font-weight: normal;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
hr
|
||||
{
|
||||
border: 0px;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
|
||||
img.right
|
||||
{
|
||||
border: 1px solid #ccc;
|
||||
float: right;
|
||||
margin-left: 15px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
img.left
|
||||
{
|
||||
border: 1px solid #ccc;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
pre
|
||||
{
|
||||
white-space: pre-wrap; /* CSS 2.1 */
|
||||
word-wrap: break-word; /* IE7 */
|
||||
-moz-tab-size: 4;
|
||||
tab-size: 4;
|
||||
}
|
||||
|
||||
.marker
|
||||
{
|
||||
background-color: Yellow;
|
||||
}
|
||||
|
||||
span[lang]
|
||||
{
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
figure
|
||||
{
|
||||
text-align: center;
|
||||
border: solid 1px #ccc;
|
||||
border-radius: 2px;
|
||||
background: rgba(0,0,0,0.05);
|
||||
padding: 10px;
|
||||
margin: 10px 20px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
figure > figcaption
|
||||
{
|
||||
text-align: center;
|
||||
display: block; /* For IE8 */
|
||||
}
|
||||
|
||||
a > img {
|
||||
padding: 1px;
|
||||
margin: 1px;
|
||||
border: none;
|
||||
outline: 1px solid #0782C1;
|
||||
}
|
||||
|
||||
/* Widget Styles */
|
||||
.code-featured
|
||||
{
|
||||
border: 5px solid red;
|
||||
}
|
||||
|
||||
.math-featured
|
||||
{
|
||||
padding: 20px;
|
||||
box-shadow: 0 0 2px rgba(200, 0, 0, 1);
|
||||
background-color: rgba(255, 0, 0, 0.05);
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.image-clean
|
||||
{
|
||||
border: 0;
|
||||
background: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.image-clean > figcaption
|
||||
{
|
||||
font-size: .9em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.image-grayscale
|
||||
{
|
||||
background-color: white;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.image-grayscale img, img.image-grayscale
|
||||
{
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
.embed-240p
|
||||
{
|
||||
max-width: 426px;
|
||||
max-height: 240px;
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.embed-360p
|
||||
{
|
||||
max-width: 640px;
|
||||
max-height: 360px;
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.embed-480p
|
||||
{
|
||||
max-width: 854px;
|
||||
max-height: 480px;
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.embed-720p
|
||||
{
|
||||
max-width: 1280px;
|
||||
max-height: 720px;
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.embed-1080p
|
||||
{
|
||||
max-width: 1920px;
|
||||
max-height: 1080px;
|
||||
margin:0 auto;
|
||||
}
|
5
static/plugs/ckeditor/lang/zh-cn.js
Normal file
5
static/plugs/ckeditor/lang/zh-cn.js
Normal file
File diff suppressed because one or more lines are too long
10
static/plugs/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
Normal file
10
static/plugs/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
Normal file
@ -0,0 +1,10 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.dialog.add("a11yHelp",function(e){var a=e.lang.a11yhelp,b=e.lang.common.keyboard,q=CKEDITOR.tools.getNextId(),d={8:b[8],9:a.tab,13:b[13],16:b[16],17:b[17],18:b[18],19:a.pause,20:a.capslock,27:a.escape,33:a.pageUp,34:a.pageDown,35:b[35],36:b[36],37:a.leftArrow,38:a.upArrow,39:a.rightArrow,40:a.downArrow,45:a.insert,46:b[46],91:a.leftWindowKey,92:a.rightWindowKey,93:a.selectKey,96:a.numpad0,97:a.numpad1,98:a.numpad2,99:a.numpad3,100:a.numpad4,101:a.numpad5,102:a.numpad6,103:a.numpad7,104:a.numpad8,
|
||||
105:a.numpad9,106:a.multiply,107:a.add,109:a.subtract,110:a.decimalPoint,111:a.divide,112:a.f1,113:a.f2,114:a.f3,115:a.f4,116:a.f5,117:a.f6,118:a.f7,119:a.f8,120:a.f9,121:a.f10,122:a.f11,123:a.f12,144:a.numLock,145:a.scrollLock,186:a.semiColon,187:a.equalSign,188:a.comma,189:a.dash,190:a.period,191:a.forwardSlash,192:a.graveAccent,219:a.openBracket,220:a.backSlash,221:a.closeBracket,222:a.singleQuote};d[CKEDITOR.ALT]=b[18];d[CKEDITOR.SHIFT]=b[16];d[CKEDITOR.CTRL]=CKEDITOR.env.mac?b[224]:b[17];var k=
|
||||
[CKEDITOR.ALT,CKEDITOR.SHIFT,CKEDITOR.CTRL],r=/\$\{(.*?)\}/g,t=function(a,b){var c=e.getCommandKeystroke(b);if(c){for(var l,f,h=[],g=0;g<k.length;g++)f=k[g],l=c/k[g],1<l&&2>=l&&(c-=f,h.push(d[f]));h.push(d[c]||String.fromCharCode(c));c=h.join("+")}else c=a;return c};return{title:a.title,minWidth:600,minHeight:400,contents:[{id:"info",label:e.lang.common.generalTab,expand:!0,elements:[{type:"html",id:"legends",style:"white-space:normal;",focus:function(){this.getElement().focus()},html:function(){for(var b=
|
||||
'\x3cdiv class\x3d"cke_accessibility_legend" role\x3d"document" aria-labelledby\x3d"'+q+'_arialbl" tabIndex\x3d"-1"\x3e%1\x3c/div\x3e\x3cspan id\x3d"'+q+'_arialbl" class\x3d"cke_voice_label"\x3e'+a.contents+" \x3c/span\x3e",d=[],c=a.legend,l=c.length,f=0;f<l;f++){for(var h=c[f],g=[],e=h.items,k=e.length,p=0;p<k;p++){var m=e[p],n=CKEDITOR.env.edge&&m.legendEdge?m.legendEdge:m.legend,n=n.replace(r,t);n.match(r)||g.push("\x3cdt\x3e%1\x3c/dt\x3e\x3cdd\x3e%2\x3c/dd\x3e".replace("%1",m.name).replace("%2",
|
||||
n))}d.push("\x3ch1\x3e%1\x3c/h1\x3e\x3cdl\x3e%2\x3c/dl\x3e".replace("%1",h.name).replace("%2",g.join("")))}return b.replace("%1",d.join(""))}()+'\x3cstyle type\x3d"text/css"\x3e.cke_accessibility_legend{width:600px;height:400px;padding-right:5px;overflow-y:auto;overflow-x:hidden;}.cke_browser_quirks .cke_accessibility_legend,{height:390px}.cke_accessibility_legend *{white-space:normal;}.cke_accessibility_legend h1{font-size: 20px;border-bottom: 1px solid #AAA;margin: 5px 0px 15px;}.cke_accessibility_legend dl{margin-left: 5px;}.cke_accessibility_legend dt{font-size: 13px;font-weight: bold;}.cke_accessibility_legend dd{margin:10px}\x3c/style\x3e'}]}],
|
||||
buttons:[CKEDITOR.dialog.cancelButton]}});
|
@ -0,0 +1,25 @@
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
|
||||
cs.js Found: 30 Missing: 0
|
||||
cy.js Found: 30 Missing: 0
|
||||
da.js Found: 12 Missing: 18
|
||||
de.js Found: 30 Missing: 0
|
||||
el.js Found: 25 Missing: 5
|
||||
eo.js Found: 30 Missing: 0
|
||||
fa.js Found: 30 Missing: 0
|
||||
fi.js Found: 30 Missing: 0
|
||||
fr.js Found: 30 Missing: 0
|
||||
gu.js Found: 12 Missing: 18
|
||||
he.js Found: 30 Missing: 0
|
||||
it.js Found: 30 Missing: 0
|
||||
mk.js Found: 5 Missing: 25
|
||||
nb.js Found: 30 Missing: 0
|
||||
nl.js Found: 30 Missing: 0
|
||||
no.js Found: 30 Missing: 0
|
||||
pt-br.js Found: 30 Missing: 0
|
||||
ro.js Found: 6 Missing: 24
|
||||
tr.js Found: 30 Missing: 0
|
||||
ug.js Found: 27 Missing: 3
|
||||
vi.js Found: 6 Missing: 24
|
||||
zh-cn.js Found: 30 Missing: 0
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","af",{title:"Toeganglikheid instruksies",contents:"Hulp inhoud. Druk ESC om toe te maak.",legend:[{name:"Algemeen",items:[{name:"Bewerker balk",legend:"Druk ${toolbarFocus} om op die werkbalk te land. Beweeg na die volgende en voorige wekrbalkgroep met TAB and SHIFT+TAB. Beweeg na die volgende en voorige werkbalkknop met die regter of linker pyl. Druk SPASIE of ENTER om die knop te bevestig."},{name:"Bewerker dialoog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Bewerkerinhoudmenu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pouse",capslock:"Hoofletterslot",escape:"Ontsnap",pageUp:"Blaaiop",pageDown:"Blaaiaf",leftArrow:"Linkspyl",upArrow:"Oppyl",rightArrow:"Regterpyl",downArrow:"Afpyl",insert:"Toevoeg",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Nommerblok 0",numpad1:"Nommerblok 1",
|
||||
numpad2:"Nommerblok 2",numpad3:"Nommerblok 3",numpad4:"Nommerblok 4",numpad5:"Nommerblok 5",numpad6:"Nommerblok 6",numpad7:"Nommerblok 7",numpad8:"Nommerblok 8",numpad9:"Nommerblok 9",multiply:"Maal",add:"Plus",subtract:"Minus",decimalPoint:"Desimaalepunt",divide:"Gedeeldeur",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Nommervergrendel",scrollLock:"Rolvergrendel",semiColon:"Kommapunt",equalSign:"Isgelykaan",comma:"Komma",dash:"Koppelteken",
|
||||
period:"Punt",forwardSlash:"Skuinsstreep",graveAccent:"Aksentteken",openBracket:"Oopblokhakkie",backSlash:"Trustreep",closeBracket:"Toeblokhakkie",singleQuote:"Enkelaanhaalingsteken"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","ar",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"عام",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"إضافة",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"تقسيم",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"فاصلة",dash:"Dash",period:"نقطة",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/az.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/az.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","az",{title:"Əlillərə dəstək üzrə təlimat",contents:"Kömək. Pəncərəni bağlamaq üçün ESC basın.",legend:[{name:"Əsas",items:[{name:"Düzəliş edənin alətlər çubuğu",legend:"Panelə keçmək üçün ${toolbarFocus} basın. Növbəti panelə TAB, əvvəlki panelə isə SHIFT+TAB düyməsi vasitəsi ilə keçə bilərsiz. Paneldəki düymələr arasında sol və sağ ox düyməsi ilə keçid edə bilərsiz. Seçilmiş düyməsi SPACE və ya ENTER ilə işlədə bilərsiniz."},{name:"Redaktorun pəncərəsi",legend:"Pəncərə içində növbəti element seçmək üçün TAB düyməni basın, əvvəlki isə - SHIFT+TAB. Təsdiq edilməsi üçün ENTER, imtina edilməsi isə ESC diymələri istifadə edin. Pəncərədə bir neçə vərəq olanda olnarın siyahı ALT+F10 ilə aça bilərsiz. Vərəqlərin siyahı fokus altında olanda ox düymələr vasitəsi ilə onların arasında keçid edə bilərsiz."},
|
||||
{name:"Redaktorun seçimlərin menyusu",legend:"Seçimləri redaktə etmək üçün ${contextMenu} ya da APPLICATION KEY basın. Növbəti seçimə keçmək üçün TAB ya AŞAĞI OX düyməsini basın, əvvəlki isə - SHIFT+TAB ya YUXARI OX. Seçimi arımaq SPACE ya ENTER düymələri istifadə edin. Alt menyunu açmaq üçün SPACE, ENTER ya SAĞA OX basın. ESC ya SOLA OX ilə geriyə qayıda bilərsiz. Bütün menyunu ESC ilə bağlıyın."},{name:"Düzəliş edənin siyahı qutusu",legend:"Siyahı qutusu içində növbəti bənd seçmək üçün TAB ya AŞAĞI OX, əvvəlki isə SHIFT+TAB ya YUXARI OX basın. Seçimi arımaq SPACE ya ENTER düymələri istifadə edin. Siyahı qutusu ESC ilə bağlıyın."},
|
||||
{name:"Redaktor elementin cığır paneli",legend:"Elementin cığır paneli seçmək üçün ${elementsPathFocus} basın. Növbəti element seçmək üçün TAB ya SAĞA OX, əvvəlki isə SHIFT+TAB ya SOLA OX istifadə edin. Elementi arımaq SPACE ya ENTER düymələri mövcuddur."}]},{name:"Əmrlər",items:[{name:"Əmri geri qaytar",legend:"${undo} basın"},{name:"Geri əmri",legend:"${redo} basın"},{name:"Qalın əmri",legend:"${bold} basın"},{name:"Kursiv əmri",legend:"${italic} basın"},{name:"Altdan xətt əmri",legend:"${underline} basın"},
|
||||
{name:"Link əmri",legend:"${link} basın"},{name:"Paneli gizlət əmri",legend:"${toolbarCollapse} basın"},{name:"Əvvəlki fokus sahəsi seç əmrı",legend:"Kursordan əvvəl ən yaxın əlçatmaz yerə dəymək üçün ${accessPreviousSpace} basın, misal üçün: iki dal-badal HR teg. Uzaq yerlərə dəymək üçün bir neçə dəfə basın."},{name:"Növbəti fokus sahəsi seç əmrı",legend:"Kursordan sonra ən yaxın əlçatmaz yerə dəymək üçün ${accessNextSpace} basın, misal üçün: iki dal-badal HR teg. Uzaq yerlərə dəymək üçün bir neçə dəfə basın."},
|
||||
{name:"Hərtərəfli Kömək",legend:"${a11yHelp} basın"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Sola ox işarəsi",upArrow:"Yuxarı ox işarəsi",rightArrow:"Sağa ox işarəsi",downArrow:"Aşağı ox işarəsi",insert:"Insert",leftWindowKey:"Soldaki Windows düyməsi",rightWindowKey:"Sağdaki Windows düyməsi",selectKey:"Düyməni seçin",
|
||||
numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Vurma",add:"Əlavə et",subtract:"Çıxma",decimalPoint:"Onluq kəsri tam ədəddən ayıran nöqtə",divide:"Bölüşdürmə",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Nöqtəli verqül",equalSign:"Barəbərlik işarəsi",
|
||||
comma:"Vergül",dash:"Defis",period:"Nöqtə",forwardSlash:"Çəp xətt",graveAccent:"Vurğu işarəsi",openBracket:"Açılan mötərizə",backSlash:"Tərs çəpəki xətt",closeBracket:"Bağlanan mötərizə",singleQuote:"Tək dırnaq"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","bg",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"Общо",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
Normal file
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","ca",{title:"Instruccions d'Accessibilitat",contents:"Continguts de l'Ajuda. Per tancar aquest quadre de diàleg premi ESC.",legend:[{name:"General",items:[{name:"Editor de barra d'eines",legend:"Premi ${toolbarFocus} per desplaçar-se per la barra d'eines. Vagi en el següent i anterior grup de barra d'eines amb TAB i SHIFT+TAB. Vagi en el següent i anterior botó de la barra d'eines amb RIGHT ARROW i LEFT ARROW. Premi SPACE o ENTER per activar el botó de la barra d'eines."},
|
||||
{name:"Editor de quadre de diàleg",legend:"Dins d'un quadre de diàleg, premi la tecla TAB per desplaçar-se fins al següent element del quadre de diàleg, premi la tecla Shift + TAB per desplaçar-se a l'anterior element del quadre de diàleg, premi la tecla ENTER per confirmar el quadre de diàleg, premi la tecla ESC per cancel·lar el quadre de diàleg. Quan un quadre de diàleg té diverses pestanyes, la llista de pestanyes pot ser assolit ja sigui amb ALT + F10 o TAB, com a part de l'ordre de tabulació del quadre de diàleg. Amb la llista de pestanyes seleccionada, pot anar a la fitxa següent i anterior amb la tecla FLETXA DRETA i ESQUERRA, respectivament."},
|
||||
{name:"Editor de menú contextual",legend:"Premi ${contextMenu} o APPLICATION KEY per obrir el menú contextual. Després desplacis a la següent opció del menú amb TAB o DOWN ARROW. Desplacis a l'anterior opció amb SHIFT+TAB o UP ARROW. Premi SPACE o ENTER per seleccionar l'opció del menú. Obri el submenú de l'actual opció utilitzant SPACE o ENTER o RIGHT ARROW. Pot tornar a l'opció del menú pare amb ESC o LEFT ARROW. Tanqui el menú contextual amb ESC."},{name:"Editor de caixa de llista",legend:"Dins d'un quadre de llista, desplacis al següent element de la llista amb TAB o DOWN ARROW. Desplacis a l'anterior element de la llista amb SHIFT+TAB o UP ARROW. Premi SPACE o ENTER per seleccionar l'opció de la llista. Premi ESC per tancar el quadre de llista."},
|
||||
{name:"Editor de barra de ruta de l'element",legend:"Premi ${elementsPathFocus} per anar als elements de la barra de ruta. Desplacis al botó de l'element següent amb TAB o RIGHT ARROW. Desplacis a l'anterior botó amb SHIFT+TAB o LEFT ARROW. Premi SPACE o ENTER per seleccionar l'element a l'editor."}]},{name:"Ordres",items:[{name:"Desfer ordre",legend:"Premi ${undo}"},{name:"Refer ordre",legend:"Premi ${redo}"},{name:"Ordre negreta",legend:"Premi ${bold}"},{name:"Ordre cursiva",legend:"Premi ${italic}"},
|
||||
{name:"Ordre subratllat",legend:"Premi ${underline}"},{name:"Ordre enllaç",legend:"Premi ${link}"},{name:"Ordre amagar barra d'eines",legend:"Premi ${toolbarCollapse}"},{name:"Ordre per accedir a l'anterior espai enfocat",legend:"Premi ${accessPreviousSpace} per accedir a l'enfocament d'espai més proper inabastable abans del símbol d'intercalació, per exemple: dos elements HR adjacents. Repetiu la combinació de tecles per arribar a enfocaments d'espais distants."},{name:"Ordre per accedir al següent espai enfocat",
|
||||
legend:"Premi ${accessNextSpace} per accedir a l'enfocament d'espai més proper inabastable després del símbol d'intercalació, per exemple: dos elements HR adjacents. Repetiu la combinació de tecles per arribar a enfocaments d'espais distants."},{name:"Ajuda d'accessibilitat",legend:"Premi ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabulació",pause:"Pausa",capslock:"Bloqueig de majúscules",escape:"Escape",pageUp:"Pàgina Amunt",
|
||||
pageDown:"Pàgina Avall",leftArrow:"Fletxa Esquerra",upArrow:"Fletxa Amunt",rightArrow:"Fletxa Dreta",downArrow:"Fletxa Avall",insert:"Inserir",leftWindowKey:"Tecla Windows Esquerra",rightWindowKey:"Tecla Windows Dreta",selectKey:"Tecla Seleccionar",numpad0:"Teclat Numèric 0",numpad1:"Teclat Numèric 1",numpad2:"Teclat Numèric 2",numpad3:"Teclat Numèric 3",numpad4:"Teclat Numèric 4",numpad5:"Teclat Numèric 5",numpad6:"Teclat Numèric 6",numpad7:"Teclat Numèric 7",numpad8:"Teclat Numèric 8",numpad9:"Teclat Numèric 9",
|
||||
multiply:"Multiplicació",add:"Suma",subtract:"Resta",decimalPoint:"Punt Decimal",divide:"Divisió",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Bloqueig Teclat Numèric",scrollLock:"Bloqueig de Desplaçament",semiColon:"Punt i Coma",equalSign:"Símbol Igual",comma:"Coma",dash:"Guió",period:"Punt",forwardSlash:"Barra Diagonal",graveAccent:"Accent Obert",openBracket:"Claudàtor Obert",backSlash:"Barra Invertida",closeBracket:"Claudàtor Tancat",
|
||||
singleQuote:"Cometa Simple"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","cs",{title:"Instrukce pro přístupnost",contents:"Obsah nápovědy. Pro uzavření tohoto dialogu stiskněte klávesu ESC.",legend:[{name:"Obecné",items:[{name:"Panel nástrojů editoru",legend:"Stiskněte${toolbarFocus} k procházení panelu nástrojů. Přejděte na další a předchozí skupiny pomocí TAB a SHIFT+TAB. Přechod na další a předchozí tlačítko panelu nástrojů je pomocí ŠIPKA VPRAVO nebo ŠIPKA VLEVO. Stisknutím mezerníku nebo klávesy ENTER tlačítko aktivujete."},{name:"Dialogové okno editoru",
|
||||
legend:"Uvnitř dialogového okna stiskněte TAB pro přesunutí na další prvek okna, stiskněte SHIFT+TAB pro přesun na předchozí prvek okna, stiskněte ENTER pro odeslání dialogu, stiskněte ESC pro jeho zrušení. Pro dialogová okna, která mají mnoho karet stiskněte ALT+F10 pro zaměření seznamu karet, nebo TAB, pro posun podle pořadí karet.Při zaměření seznamu karet se můžete jimi posouvat pomocí ŠIPKY VPRAVO a VLEVO."},{name:"Kontextové menu editoru",legend:"Stiskněte ${contextMenu} nebo klávesu APPLICATION k otevření kontextového menu. Pak se přesuňte na další možnost menu pomocí TAB nebo ŠIPKY DOLŮ. Přesuňte se na předchozí možnost pomocí SHIFT+TAB nebo ŠIPKY NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti menu. Podmenu současné možnosti otevřete pomocí MEZERNÍKU nebo ENTER či ŠIPKY DOLEVA. Kontextové menu uzavřete stiskem ESC."},
|
||||
{name:"Rámeček seznamu editoru",legend:"Uvnitř rámečku seznamu se přesunete na další položku menu pomocí TAB nebo ŠIPKA DOLŮ. Na předchozí položku se přesunete SHIFT+TAB nebo ŠIPKA NAHORU. Stiskněte MEZERNÍK nebo ENTER pro zvolení možnosti seznamu. Stiskněte ESC pro uzavření seznamu."},{name:"Lišta cesty prvku v editoru",legend:"Stiskněte ${elementsPathFocus} pro procházení lišty cesty prvku. Na další tlačítko prvku se přesunete pomocí TAB nebo ŠIPKA VPRAVO. Na předchozí tlačítko se přesunete pomocí SHIFT+TAB nebo ŠIPKA VLEVO. Stiskněte MEZERNÍK nebo ENTER pro vybrání prvku v editoru."}]},
|
||||
{name:"Příkazy",items:[{name:" Příkaz Zpět",legend:"Stiskněte ${undo}"},{name:" Příkaz Znovu",legend:"Stiskněte ${redo}"},{name:" Příkaz Tučné",legend:"Stiskněte ${bold}"},{name:" Příkaz Kurzíva",legend:"Stiskněte ${italic}"},{name:" Příkaz Podtržení",legend:"Stiskněte ${underline}"},{name:" Příkaz Odkaz",legend:"Stiskněte ${link}"},{name:" Příkaz Skrýt panel nástrojů",legend:"Stiskněte ${toolbarCollapse}"},{name:"Příkaz pro přístup k předchozímu prostoru zaměření",legend:"Stiskněte ${accessPreviousSpace} pro přístup k nejbližšímu nedosažitelnému prostoru zaměření před stříškou, například: dva přilehlé prvky HR. Pro dosažení vzdálených prostorů zaměření tuto kombinaci kláves opakujte."},
|
||||
{name:"Příkaz pro přístup k dalšímu prostoru zaměření",legend:"Stiskněte ${accessNextSpace} pro přístup k nejbližšímu nedosažitelnému prostoru zaměření po stříšce, například: dva přilehlé prvky HR. Pro dosažení vzdálených prostorů zaměření tuto kombinaci kláves opakujte."},{name:" Nápověda přístupnosti",legend:"Stiskněte ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabulátor",pause:"Pauza",capslock:"Caps lock",
|
||||
escape:"Escape",pageUp:"Stránka nahoru",pageDown:"Stránka dolů",leftArrow:"Šipka vlevo",upArrow:"Šipka nahoru",rightArrow:"Šipka vpravo",downArrow:"Šipka dolů",insert:"Vložit",leftWindowKey:"Levá klávesa Windows",rightWindowKey:"Pravá klávesa Windows",selectKey:"Vyberte klávesu",numpad0:"Numerická klávesa 0",numpad1:"Numerická klávesa 1",numpad2:"Numerická klávesa 2",numpad3:"Numerická klávesa 3",numpad4:"Numerická klávesa 4",numpad5:"Numerická klávesa 5",numpad6:"Numerická klávesa 6",numpad7:"Numerická klávesa 7",
|
||||
numpad8:"Numerická klávesa 8",numpad9:"Numerická klávesa 9",multiply:"Numerická klávesa násobení",add:"Přidat",subtract:"Numerická klávesa odečítání",decimalPoint:"Desetinná tečka",divide:"Numerická klávesa dělení",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num lock",scrollLock:"Scroll lock",semiColon:"Středník",equalSign:"Rovnítko",comma:"Čárka",dash:"Pomlčka",period:"Tečka",forwardSlash:"Lomítko",graveAccent:"Přízvuk",openBracket:"Otevřená hranatá závorka",
|
||||
backSlash:"Obrácené lomítko",closeBracket:"Uzavřená hranatá závorka",singleQuote:"Jednoduchá uvozovka"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","cy",{title:"Canllawiau Hygyrchedd",contents:"Cynnwys Cymorth. I gau y deialog hwn, pwyswch ESC.",legend:[{name:"Cyffredinol",items:[{name:"Bar Offer y Golygydd",legend:"Pwyswch $ {toolbarFocus} i fynd at y bar offer. Symudwch i'r grŵp bar offer nesaf a blaenorol gyda TAB a SHIFT+TAB. Symudwch i'r botwm bar offer nesaf a blaenorol gyda SAETH DDE neu SAETH CHWITH. Pwyswch SPACE neu ENTER i wneud botwm y bar offer yn weithredol."},{name:"Deialog y Golygydd",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Dewislen Cyd-destun y Golygydd",legend:"Pwyswch $ {contextMenu} neu'r ALLWEDD 'APPLICATION' i agor y ddewislen cyd-destun. Yna symudwch i'r opsiwn ddewislen nesaf gyda'r TAB neu'r SAETH I LAWR. Symudwch i'r opsiwn blaenorol gyda SHIFT+TAB neu'r SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn ddewislen. Agorwch is-dewislen yr opsiwn cyfredol gyda SPACE neu ENTER neu SAETH DDE. Ewch yn ôl i'r eitem ar y ddewislen uwch gydag ESC neu SAETH CHWITH. Ceuwch y ddewislen cyd-destun gydag ESC."},
|
||||
{name:"Blwch Rhestr y Golygydd",legend:"Tu mewn y blwch rhestr, ewch i'r eitem rhestr nesaf gyda TAB neu'r SAETH I LAWR. Symudwch i restr eitem flaenorol gyda SHIFT+TAB neu SAETH I FYNY. Pwyswch SPACE neu ENTER i ddewis yr opsiwn o'r rhestr. Pwyswch ESC i gau'r rhestr."},{name:"Bar Llwybr Elfen y Golygydd",legend:"Pwyswch ${elementsPathFocus} i fynd i'r bar llwybr elfennau. Symudwch i fotwm yr elfen nesaf gyda TAB neu SAETH DDE. Symudwch i fotwm blaenorol gyda SHIFT+TAB neu SAETH CHWITH. Pwyswch SPACE neu ENTER i ddewis yr elfen yn y golygydd."}]},
|
||||
{name:"Gorchmynion",items:[{name:"Gorchymyn dadwneud",legend:"Pwyswch ${undo}"},{name:"Gorchymyn ailadrodd",legend:"Pwyswch ${redo}"},{name:"Gorchymyn Bras",legend:"Pwyswch ${bold}"},{name:"Gorchymyn italig",legend:"Pwyswch ${italig}"},{name:"Gorchymyn tanlinellu",legend:"Pwyso ${underline}"},{name:"Gorchymyn dolen",legend:"Pwyswch ${link}"},{name:"Gorchymyn Cwympo'r Dewislen",legend:"Pwyswch ${toolbarCollapse}"},{name:"Myned i orchymyn bwlch ffocws blaenorol",legend:"Pwyswch ${accessPreviousSpace} i fyned i'r \"blwch ffocws sydd methu ei gyrraedd\" cyn y caret, er enghraifft: dwy elfen HR drws nesaf i'w gilydd. AIladroddwch y cyfuniad allwedd i gyrraedd bylchau ffocws pell."},
|
||||
{name:"Ewch i'r gorchymyn blwch ffocws nesaf",legend:"Pwyswch ${accessNextSpace} i fyned i'r blwch ffocws agosaf nad oes modd ei gyrraedd ar ôl y caret, er enghraifft: dwy elfen HR drws nesaf i'w gilydd. Ailadroddwch y cyfuniad allwedd i gyrraedd blychau ffocws pell."},{name:"Cymorth Hygyrchedd",legend:"Pwyswch ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",
|
||||
pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",
|
||||
divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","da",{title:"Tilgængelighedsinstrukser",contents:"Onlinehjælp. For at lukke dette vindue klik ESC",legend:[{name:"Generelt",items:[{name:"Editor værktøjslinje",legend:"Tryk ${toolbarFocus} for at navigere til værktøjslinjen. Flyt til næste eller forrige værktøjsline gruppe ved hjælp af TAB eller SHIFT+TAB. Flyt til næste eller forrige værktøjslinje knap med venstre- eller højre piltast. Tryk på SPACE eller ENTER for at aktivere værktøjslinje knappen."},{name:"Editor dialogboks",
|
||||
legend:"Inde i en dialogboks kan du, trykke på TAB for at navigere til næste element, trykke på SHIFT+TAB for at navigere til forrige element, trykke på ENTER for at afsende eller trykke på ESC for at lukke dialogboksen.\r\nNår en dialogboks har flere faner, fanelisten kan tilgås med ALT+F10 eller med TAB. Hvis fanelisten er i fokus kan du skifte til næste eller forrige tab, med højre- og venstre piltast."},{name:"Redaktør kontekstmenu",legend:"Tryk ${contextMenu} eller APPLICATION KEY for at åbne kontekstmenuen. Flyt derefter til næste menuvalg med TAB eller PIL NED. Flyt til forrige valg med SHIFT+TAB eller PIL OP. Tryk MELLEMRUM eller RETUR for at vælge menu-muligheder. Åben under-menu af aktuelle valg med MELLEMRUM eller RETUR eller HØJRE PIL. Gå tilbage til overliggende menu-emne med ESC eller VENSTRE PIL. Luk kontekstmenu med ESC."},
|
||||
{name:"Redaktør listeboks",legend:"Flyt til næste emne med TAB eller PIL NED inde i en listeboks. Flyt til forrige listeemne med SHIFT+TAB eller PIL OP. Tryk MELLEMRUM eller RETUR for at vælge liste-muligheder. Tryk ESC for at lukke liste-boksen."},{name:"Redaktør elementsti-bar",legend:"Tryk ${elementsPathFocus} for at navigere til elementernes sti-bar. Flyt til næste element-knap med TAB eller HØJRE PIL. Flyt til forrige knap med SHIFT+TAB eller VENSTRE PIL. Klik MELLEMRUM eller RETUR for at vælge element i editoren."}]},
|
||||
{name:"Kommandoer",items:[{name:"Fortryd kommando",legend:"Klik på ${undo}"},{name:"Gentag kommando",legend:"Klik ${redo}"},{name:"Fed kommando",legend:"Klik ${bold}"},{name:"Kursiv kommando",legend:"Klik ${italic}"},{name:"Understregnings kommando",legend:"Klik ${underline}"},{name:"Link kommando",legend:"Klik ${link}"},{name:"Klap værktøjslinje sammen kommando ",legend:"Klik ${toolbarCollapse}"},{name:"Adgang til forrige fokusområde kommando",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:"Tilgængelighedshjælp",legend:"Kilk ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",
|
||||
leftArrow:"Venstre pil",upArrow:"Pil op",rightArrow:"Højre pil",downArrow:"Pil ned",insert:"Insert",leftWindowKey:"Venstre Windows tast",rightWindowKey:"Højre Windows tast",selectKey:"Select-knap",numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Gange",add:"Plus",subtract:"Minus",decimalPoint:"Komma",divide:"Divider",f1:"F1",f2:"F2",f3:"F3",f4:"F4",
|
||||
f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semikolon",equalSign:"Lighedstegn",comma:"Komma",dash:"Bindestreg",period:"Punktum",forwardSlash:"Skråstreg",graveAccent:"Accent grave",openBracket:"Start klamme",backSlash:"Omvendt skråstreg",closeBracket:"Slut klamme",singleQuote:"Enkelt citationstegn"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","de-ch",{title:"Barrierefreiheitinformationen",contents:"Hilfeinhalt. Um den Dialog zu schliessen die Taste ESC drücken.",legend:[{name:"Allgemein",items:[{name:"Editorwerkzeugleiste",legend:"Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT+TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren."},
|
||||
{name:"Editordialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Editor-Kontextmenü",legend:"Dürcken Sie ${contextMenu} oder die Anwendungstaste um das Kontextmenü zu öffnen. Man kann die Pfeiltasten zum Wechsel benutzen. Mit der Leertaste oder der Enter-Taste kann man den Menüpunkt aufrufen. Schliessen Sie das Kontextmenü mit der ESC-Taste."},
|
||||
{name:"Editor-Listenbox",legend:"Innerhalb einer Listenbox kann man mit der TAB-Taste oder den Pfeilrunter-Taste den nächsten Menüeintrag wählen. Mit der SHIFT+TAB Tastenkombination oder der Pfeilhoch-Taste gelangt man zum vorherigen Menüpunkt. Mit der Leertaste oder Enter kann man den Menüpunkt auswählen. Drücken Sie ESC zum Verlassen des Menüs."},{name:"Editor-Elementpfadleiste",legend:"Drücken Sie ${elementsPathFocus} um sich durch die Pfadleiste zu bewegen. Um zum nächsten Element zu gelangen drücken Sie TAB oder die Pfeilrechts-Taste. Zum vorherigen Element gelangen Sie mit der SHIFT+TAB oder der Pfeillinks-Taste. Drücken Sie die Leertaste oder Enter um das Element auszuwählen."}]},
|
||||
{name:"Befehle",items:[{name:"Rückgängig-Befehl",legend:"Drücken Sie ${undo}"},{name:"Wiederherstellen-Befehl",legend:"Drücken Sie ${redo}"},{name:"Fettschrift-Befehl",legend:"Drücken Sie ${bold}"},{name:"Kursiv-Befehl",legend:"Drücken Sie ${italic}"},{name:"Unterstreichen-Befehl",legend:"Drücken Sie ${underline}"},{name:"Link-Befehl",legend:"Drücken Sie ${link}"},{name:"Werkzeugleiste einklappen-Befehl",legend:"Drücken Sie ${toolbarCollapse}"},{name:"Zugang bisheriger Fokussierung Raumbefehl ",legend:"Drücken Sie ${accessPreviousSpace} auf den am nächsten nicht erreichbar Fokus-Abstand vor die Einfügemarke zugreifen: zwei benachbarte HR-Elemente. Wiederholen Sie die Tastenkombination um entfernte Fokusräume zu erreichen. "},
|
||||
{name:"Zugang nächster Schwerpunkt Raumbefehl ",legend:"Drücken Sie $ { accessNextSpace }, um den nächsten unerreichbar Fokus Leerzeichen nach dem Cursor zum Beispiel auf: zwei benachbarten HR Elemente. Wiederholen Sie die Tastenkombination zum fernen Fokus Bereiche zu erreichen. "},{name:"Eingabehilfen",legend:"Drücken Sie ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Feststell",escape:"Escape",
|
||||
pageUp:"Bild auf",pageDown:"Bild ab",leftArrow:"Linke Pfeiltaste",upArrow:"Obere Pfeiltaste",rightArrow:"Rechte Pfeiltaste",downArrow:"Untere Pfeiltaste",insert:"Einfügen",leftWindowKey:"Linke Windowstaste",rightWindowKey:"Rechte Windowstaste",selectKey:"Taste auswählen",numpad0:"Ziffernblock 0",numpad1:"Ziffernblock 1",numpad2:"Ziffernblock 2",numpad3:"Ziffernblock 3",numpad4:"Ziffernblock 4",numpad5:"Ziffernblock 5",numpad6:"Ziffernblock 6",numpad7:"Ziffernblock 7",numpad8:"Ziffernblock 8",numpad9:"Ziffernblock 9",
|
||||
multiply:"Multiplizieren",add:"Addieren",subtract:"Subtrahieren",decimalPoint:"Punkt",divide:"Dividieren",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Ziffernblock feststellen",scrollLock:"Rollen",semiColon:"Semikolon",equalSign:"Gleichheitszeichen",comma:"Komma",dash:"Bindestrich",period:"Punkt",forwardSlash:"Schrägstrich",graveAccent:"Gravis",openBracket:"Öffnende eckige Klammer",backSlash:"Rückwärtsgewandter Schrägstrich",closeBracket:"Schliessende eckige Klammer",
|
||||
singleQuote:"Einfaches Anführungszeichen"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","de",{title:"Barrierefreiheitinformationen",contents:"Hilfeinhalt. Um den Dialog zu schliessen die Taste ESC drücken.",legend:[{name:"Allgemein",items:[{name:"Editorwerkzeugleiste",legend:"Drücken Sie ${toolbarFocus} auf der Symbolleiste. Gehen Sie zur nächsten oder vorherigen Symbolleistengruppe mit TAB und SHIFT+TAB. Gehen Sie zur nächsten oder vorherigen Symbolleiste auf die Schaltfläche mit dem RECHTS- oder LINKS-Pfeil. Drücken Sie die Leertaste oder Eingabetaste, um die Schaltfläche in der Symbolleiste aktivieren."},
|
||||
{name:"Editordialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Editor-Kontextmenü",legend:"Dürcken Sie ${contextMenu} oder die Anwendungstaste um das Kontextmenü zu öffnen. Man kann die Pfeiltasten zum Wechsel benutzen. Mit der Leertaste oder der Enter-Taste kann man den Menüpunkt aufrufen. Schliessen Sie das Kontextmenü mit der ESC-Taste."},
|
||||
{name:"Editor-Listenbox",legend:"Innerhalb einer Listenbox kann man mit der TAB-Taste oder den Pfeilrunter-Taste den nächsten Menüeintrag wählen. Mit der SHIFT+TAB Tastenkombination oder der Pfeilhoch-Taste gelangt man zum vorherigen Menüpunkt. Mit der Leertaste oder Enter kann man den Menüpunkt auswählen. Drücken Sie ESC zum Verlassen des Menüs."},{name:"Editor-Elementpfadleiste",legend:"Drücken Sie ${elementsPathFocus} um sich durch die Pfadleiste zu bewegen. Um zum nächsten Element zu gelangen drücken Sie TAB oder die Pfeilrechts-Taste. Zum vorherigen Element gelangen Sie mit der SHIFT+TAB oder der Pfeillinks-Taste. Drücken Sie die Leertaste oder Enter um das Element auszuwählen."}]},
|
||||
{name:"Befehle",items:[{name:"Rückgängig-Befehl",legend:"Drücken Sie ${undo}"},{name:"Wiederherstellen-Befehl",legend:"Drücken Sie ${redo}"},{name:"Fettschrift-Befehl",legend:"Drücken Sie ${bold}"},{name:"Kursiv-Befehl",legend:"Drücken Sie ${italic}"},{name:"Unterstreichen-Befehl",legend:"Drücken Sie ${underline}"},{name:"Link-Befehl",legend:"Drücken Sie ${link}"},{name:"Werkzeugleiste einklappen-Befehl",legend:"Drücken Sie ${toolbarCollapse}"},{name:"Zugang bisheriger Fokussierung Raumbefehl ",legend:"Drücken Sie ${accessPreviousSpace} auf den am nächsten nicht erreichbar Fokus-Abstand vor die Einfügemarke zugreifen: zwei benachbarte HR-Elemente. Wiederholen Sie die Tastenkombination um entfernte Fokusräume zu erreichen. "},
|
||||
{name:"Zugang nächster Schwerpunkt Raumbefehl ",legend:"Drücken Sie $ { accessNextSpace }, um den nächsten unerreichbar Fokus Leerzeichen nach dem Cursor zum Beispiel auf: zwei benachbarten HR Elemente. Wiederholen Sie die Tastenkombination zum fernen Fokus Bereiche zu erreichen. "},{name:"Eingabehilfen",legend:"Drücken Sie ${a11yHelp}"},{name:"Einfügen als unformatierter Text. ",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Feststell",
|
||||
escape:"Escape",pageUp:"Bild auf",pageDown:"Bild ab",leftArrow:"Linke Pfeiltaste",upArrow:"Obere Pfeiltaste",rightArrow:"Rechte Pfeiltaste",downArrow:"Untere Pfeiltaste",insert:"Einfügen",leftWindowKey:"Linke Windowstaste",rightWindowKey:"Rechte Windowstaste",selectKey:"Taste auswählen",numpad0:"Ziffernblock 0",numpad1:"Ziffernblock 1",numpad2:"Ziffernblock 2",numpad3:"Ziffernblock 3",numpad4:"Ziffernblock 4",numpad5:"Ziffernblock 5",numpad6:"Ziffernblock 6",numpad7:"Ziffernblock 7",numpad8:"Ziffernblock 8",
|
||||
numpad9:"Ziffernblock 9",multiply:"Multiplizieren",add:"Addieren",subtract:"Subtrahieren",decimalPoint:"Punkt",divide:"Dividieren",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Ziffernblock feststellen",scrollLock:"Rollen",semiColon:"Semikolon",equalSign:"Gleichheitszeichen",comma:"Komma",dash:"Bindestrich",period:"Punkt",forwardSlash:"Schrägstrich",graveAccent:"Gravis",openBracket:"Öffnende eckige Klammer",backSlash:"Rückwärtsgewandter Schrägstrich",
|
||||
closeBracket:"Schließende eckige Klammer",singleQuote:"Einfaches Anführungszeichen"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","el",{title:"Οδηγίες Προσβασιμότητας",contents:"Περιεχόμενα Βοήθειας. Πατήστε ESC για κλείσιμο.",legend:[{name:"Γενικά",items:[{name:"Εργαλειοθήκη Επεξεργαστή",legend:"Πατήστε ${toolbarFocus} για να περιηγηθείτε στην γραμμή εργαλείων. Μετακινηθείτε ανάμεσα στις ομάδες της γραμμής εργαλείων με TAB και SHIFT+TAB. Μετακινηθείτε ανάμεσα στα κουμπιά εργαλείων με το ΔΕΞΙ ή ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Πατήστε ΔΙΑΣΤΗΜΑ ή ENTER για να ενεργοποιήσετε το ενεργό κουμπί εργαλείου."},{name:"Παράθυρο Διαλόγου Επεξεργαστή",
|
||||
legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Αναδυόμενο Μενού Επεξεργαστή",legend:"Πατήστε ${contextMenu} ή APPLICATION KEY για να ανοίξετε το αναδυόμενο μενού. Μετά μετακινηθείτε στην επόμενη επιλογή του μενού με TAB ή ΚΑΤΩ ΒΕΛΑΚΙ. Μετακινηθείτε στην προηγούμενη επιλογή με SHIFT+TAB ή το ΠΑΝΩ ΒΕΛΑΚΙ. Πατήστε ΔΙΑΣΤΗΜΑ ή ENTER για να επιλέξτε το τρέχων στοιχείο. Ανοίξτε το αναδυόμενο μενού της τρέχουσας επιλογής με ΔΙΑΣΤΗΜΑ ή ENTER ή το ΔΕΞΙ ΒΕΛΑΚΙ. Μεταβείτε πίσω στο αρχικό στοιχείο μενού με το ESC ή το ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Κλείστε το αναδυόμενο μενού με ESC."},
|
||||
{name:"Κουτί Λίστας Επεξεργαστών",legend:"Μέσα σε ένα κουτί λίστας, μετακινηθείτε στο επόμενο στοιχείο με TAB ή ΚΑΤΩ ΒΕΛΑΚΙ. Μετακινηθείτε στο προηγούμενο στοιχείο με SHIFT+TAB ή το ΠΑΝΩ ΒΕΛΑΚΙ. Πατήστε ΔΙΑΣΤΗΜΑ ή ENTER για να επιλέξετε ένα στοιχείο. Πατήστε ESC για να κλείσετε το κουτί της λίστας."},{name:"Μπάρα Διαδρομών Στοιχείων Επεξεργαστή",legend:"Πατήστε ${elementsPathFocus} για να περιηγηθείτε στην μπάρα διαδρομών στοιχείων του επεξεργαστή. Μετακινηθείτε στο κουμπί του επόμενου στοιχείου με το TAB ή το ΔΕΞΙ ΒΕΛΑΚΙ. Μετακινηθείτε στο κουμπί του προηγούμενου στοιχείου με το SHIFT+TAB ή το ΑΡΙΣΤΕΡΟ ΒΕΛΑΚΙ. Πατήστε ΔΙΑΣΤΗΜΑ ή ENTER για να επιλέξετε το στοιχείο στον επεξεργαστή."}]},
|
||||
{name:"Εντολές",items:[{name:"Εντολή αναίρεσης",legend:"Πατήστε ${undo}"},{name:"Εντολή επανάληψης",legend:"Πατήστε ${redo}"},{name:"Εντολή έντονης γραφής",legend:"Πατήστε ${bold}"},{name:"Εντολή πλάγιας γραφής",legend:"Πατήστε ${italic}"},{name:"Εντολή υπογράμμισης",legend:"Πατήστε ${underline}"},{name:"Εντολή συνδέσμου",legend:"Πατήστε ${link}"},{name:"Εντολή Σύμπτηξης Εργαλειοθήκης",legend:"Πατήστε ${toolbarCollapse}"},{name:"Πρόσβαση στην προηγούμενη εντολή του χώρου εστίασης ",legend:"Πατήστε ${accessPreviousSpace} για να έχετε πρόσβαση στον πιο κοντινό χώρο εστίασης πριν το δρομέα, για παράδειγμα: δύο παρακείμενα στοιχεία ΥΕ. Επαναλάβετε το συνδυασμό πλήκτρων για να φθάσετε στους χώρους μακρινής εστίασης. "},
|
||||
{name:"Πρόσβαση στην επόμενη εντολή του χώρου εστίασης",legend:"Πατήστε ${accessNextSpace} για να έχετε πρόσβαση στον πιο κοντινό χώρο εστίασης μετά το δρομέα, για παράδειγμα: δύο παρακείμενα στοιχεία ΥΕ. Επαναλάβετε το συνδυασμό πλήκτρων για τους χώρους μακρινής εστίασης. "},{name:"Βοήθεια Προσβασιμότητας",legend:"Πατήστε ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",
|
||||
pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Αριστερό Βέλος",upArrow:"Πάνω Βέλος",rightArrow:"Δεξί Βέλος",downArrow:"Κάτω Βέλος",insert:"Insert ",leftWindowKey:"Αριστερό Πλήκτρο Windows",rightWindowKey:"Δεξί Πλήκτρο Windows",selectKey:"Πλήκτρο Select",numpad0:"Αριθμητικό πληκτρολόγιο 0",numpad1:"Αριθμητικό Πληκτρολόγιο 1",numpad2:"Αριθμητικό πληκτρολόγιο 2",numpad3:"Αριθμητικό πληκτρολόγιο 3",numpad4:"Αριθμητικό πληκτρολόγιο 4",numpad5:"Αριθμητικό πληκτρολόγιο 5",numpad6:"Αριθμητικό πληκτρολόγιο 6",
|
||||
numpad7:"Αριθμητικό πληκτρολόγιο 7",numpad8:"Αριθμητικό πληκτρολόγιο 8",numpad9:"Αριθμητικό πληκτρολόγιο 9",multiply:"Πολλαπλασιασμός",add:"Πρόσθεση",subtract:"Αφαίρεση",decimalPoint:"Υποδιαστολή",divide:"Διαίρεση",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"6",f7:"7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Ερωτηματικό",equalSign:"Σύμβολο Ισότητας",comma:"Κόμμα",dash:"Παύλα",period:"Τελεία",forwardSlash:"Κάθετος",graveAccent:"Βαρεία",openBracket:"Άνοιγμα Παρένθεσης",
|
||||
backSlash:"Ανάστροφη Κάθετος",closeBracket:"Κλείσιμο Παρένθεσης",singleQuote:"Απόστροφος"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","en-gb",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","en",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","eo",{title:"Uzindikoj pri atingeblo",contents:"Helpilenhavo. Por fermi tiun dialogon, premu la ESKAPAN klavon.",legend:[{name:"Ĝeneralaĵoj",items:[{name:"Ilbreto de la redaktilo",legend:"Premu ${toolbarFocus} por atingi la ilbreton. Moviĝu al la sekva aŭ antaŭa grupoj de la ilbreto per la klavoj TABA kaj MAJUSKLIGA+TABA. Moviĝu al la sekva aŭ antaŭa butonoj de la ilbreto per la klavoj SAGO DEKSTREN kaj SAGO MALDEKSTREN. Premu la SPACETklavon aŭ la ENENklavon por aktivigi la ilbretbutonon."},
|
||||
{name:"Redaktildialogo",legend:"En dialogo, premu la TABAN klavon por navigi al la sekva dialogelemento, premu la MAJUSKLIGAN+TABAN klavon por iri al la antaŭa dialogelemento, premu la ENEN klavon por sendi la dialogon, premu la ESKAPAN klavon por nuligi la dialogon. Kiam dialogo havas multajn langetojn, eblas atingi la langetliston aŭ per ALT+F10 aŭ per la TABA klavo kiel parton de la dialoga taba ordo. En langetlisto, moviĝu al la sekva kaj antaŭa langeto per la klavoj SAGO DEKSTREN KAJ MALDEKSTREN respektive."},
|
||||
{name:"Kunteksta menuo de la redaktilo",legend:"Premu ${contextMenu} aŭ entajpu la KLAVKOMBINAĴON por malfermi la kuntekstan menuon. Poste moviĝu al la sekva opcio de la menuo per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa opcio per la klavoj MAJUSKLGA + TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la menuopcion. Malfermu la submenuon de la kuranta opcio per la SPACETklavo aŭ la ENENklavo aŭ la SAGO DEKSTREN. Revenu al la elemento de la patra menuo per la klavoj ESKAPA aŭ SAGO MALDEKSTREN. Fermu la kuntekstan menuon per la ESKAPA klavo."},
|
||||
{name:"Fallisto de la redaktilo",legend:"En fallisto, moviĝu al la sekva listelemento per la klavoj TABA aŭ SAGO SUBEN. Moviĝu al la antaŭa listelemento per la klavoj MAJUSKLIGA+TABA aŭ SAGO SUPREN. Premu la SPACETklavon aŭ ENENklavon por selekti la opcion en la listo. Premu la ESKAPAN klavon por fermi la falmenuon."},{name:"Breto indikanta la vojon al la redaktilelementoj",legend:"Premu ${elementsPathFocus} por navigi al la breto indikanta la vojon al la redaktilelementoj. Moviĝu al la butono de la sekva elemento per la klavoj TABA aŭ SAGO DEKSTREN. Moviĝu al la butono de la antaŭa elemento per la klavoj MAJUSKLIGA+TABA aŭ SAGO MALDEKSTREN. Premu la SPACETklavon aŭ ENENklavon por selekti la elementon en la redaktilo."}]},
|
||||
{name:"Komandoj",items:[{name:"Komando malfari",legend:"Premu ${undo}"},{name:"Komando refari",legend:"Premu ${redo}"},{name:"Komando grasa",legend:"Premu ${bold}"},{name:"Komando kursiva",legend:"Premu ${italic}"},{name:"Komando substreki",legend:"Premu ${underline}"},{name:"Komando ligilo",legend:"Premu ${link}"},{name:"Komando faldi la ilbreton",legend:"Premu ${toolbarCollapse}"},{name:"Komando por atingi la antaŭan fokusan spacon",legend:"Press ${accessPreviousSpace} por atingi la plej proksiman neatingeblan fokusan spacon antaŭ la kursoro, ekzemple : du kuntuŝiĝajn HR elementojn. Ripetu la klavkombinaĵon por atingi malproksimajn fokusajn spacojn."},
|
||||
{name:"Komando por atingi la sekvan fokusan spacon",legend:"Press ${accessNextSpace} por atingi la plej proksiman neatingeblan fokusan spacon post la kursoro, ekzemple : du kuntuŝiĝajn HR elementojn. Ripetu la klavkombinajôn por atingi malproksimajn fokusajn spacojn"},{name:"Helpilo pri atingeblo",legend:"Premu ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabo",pause:"Paŭzo",capslock:"Majuskla baskulo",escape:"Eskapa klavo",
|
||||
pageUp:"Antaŭa Paĝo",pageDown:"Sekva Paĝo",leftArrow:"Sago Maldekstren",upArrow:"Sago Supren",rightArrow:"Sago Dekstren",downArrow:"Sago Suben",insert:"Enmeti",leftWindowKey:"Maldekstra Windows-klavo",rightWindowKey:"Dekstra Windows-klavo",selectKey:"Selektklavo",numpad0:"Nombra Klavaro 0",numpad1:"Nombra Klavaro 1",numpad2:"Nombra Klavaro 2",numpad3:"Nombra Klavaro 3",numpad4:"Nombra Klavaro 4",numpad5:"Nombra Klavaro 5",numpad6:"Nombra Klavaro 6",numpad7:"Nombra Klavaro 7",numpad8:"Nombra Klavaro 8",
|
||||
numpad9:"Nombra Klavaro 9",multiply:"Obligi",add:"Almeti",subtract:"Subtrahi",decimalPoint:"Dekuma Punkto",divide:"Dividi",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Nombra Baskulo",scrollLock:"Ruluma Baskulo",semiColon:"Punktokomo",equalSign:"Egalsigno",comma:"Komo",dash:"Haltostreko",period:"Punkto",forwardSlash:"Oblikvo",graveAccent:"Malakuto",openBracket:"Malferma Krampo",backSlash:"Retroklino",closeBracket:"Ferma Krampo",singleQuote:"Citilo"});
|
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js
Normal file
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","es-mx",{title:"Instrucciones de accesibilidad",contents:"Contenidos de ayuda. Para cerrar este cuadro de diálogo presione ESC.",legend:[{name:"General",items:[{name:"Barra de herramientas del editor",legend:"Presione ${toolbarFocus} para navegar a la barra de herramientas. Desplácese al grupo de barras de herramientas siguiente y anterior con SHIFT + TAB. Desplácese al botón siguiente y anterior de la barra de herramientas con FLECHA DERECHA o FLECHA IZQUIERDA. Presione SPACE o ENTER para activar el botón de la barra de herramientas."},
|
||||
{name:"Editor de diálogo",legend:"Dentro de un cuadro de diálogo, pulse TAB para desplazarse hasta el siguiente elemento de diálogo, pulse MAYÚS + TAB para desplazarse al elemento de diálogo anterior, pulse ENTER para enviar el diálogo, pulse ESC para cancelar el diálogo. Cuando un cuadro de diálogo tiene varias pestañas, se puede acceder a la lista de pestañas con ALT + F10 o con TAB como parte del orden de tabulación del diálogo. Con la lista de tabuladores enfocada, mueva a la pestaña siguiente y anterior con las flechas DERECHA y IZQUIERDA, respectivamente."},
|
||||
{name:"Menú contextual del editor",legend:"Presione ${contextMenu} o CLAVE DE APLICACIÓN para abrir el menú contextual. A continuación, vaya a la siguiente opción del menú con TAB o DOWN ARROW. Desplácese a la opción anterior con SHIFT + TAB o FLECHA ARRIBA. Presione SPACE o ENTER para seleccionar la opción del menú. Abra el submenú de la opción actual con ESPACIO o ENTER o FLECHA DERECHA. Vuelva al elemento de menú principal con ESC o FLECHA IZQUIERDA. Cerrar el menú contextual con ESC."},{name:"Editor de cuadro de lista",
|
||||
legend:"Dentro de un cuadro de lista, mueva al siguiente elemento de lista con TAB O FLECHA ABAJO. Mueva al elemento anterior de la lista con MAYÚS + TAB o FLECHA ARRIBA. Presione SPACE o ENTER para seleccionar la opción de lista. Presione ESC para cerrar el cuadro de lista."},{name:"Barra de ruta del elemento del editor",legend:"Presione ${elementsPathFocus} para navegar a la barra de ruta de elementos. Desplácese al siguiente botón de elemento con TAB o FLECHA DERECHA. Desplácese al botón anterior con SHIFT + TAB o FLECHA IZQUIERDA. Presione SPACE o ENTER para seleccionar el elemento en el editor."}]},
|
||||
{name:"Comandos",items:[{name:"Comando deshacer",legend:"Presiona ${undo}"},{name:"Comando rehacer",legend:"Presiona ${redo}"},{name:"Comando negrita",legend:"Presiona ${bold}"},{name:"Comando cursiva",legend:"Presiona {italic}"},{name:"Comando subrayado",legend:"Presiona ${underline}"},{name:"Comando enlace",legend:"Presiona ${link}"},{name:"Comando colapsar barra de herramientas",legend:"Presiona ${toolbarCollapse}"},{name:"Acceda al comando de espacio de enfoque anterior",legend:"Presione ${accessPreviousSpace} para acceder al espacio de enfoque inaccesible más cercano antes del cursor, por ejemplo: dos elementos HR adyacentes. Repita la combinación de teclas para alcanzar los espacios de enfoque distantes."},
|
||||
{name:"Acceder al siguiente comando de espacio de enfoque",legend:"Pulse ${accessNextSpace} para acceder al espacio de enfoque más cercano inaccesible después del cursor, por ejemplo: dos elementos HR adyacentes. Repita la combinación de teclas para alcanzar los espacios de enfoque distantes."},{name:"Ayuda de accesibilidad",legend:"Presiona ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabulador",pause:"Pausa",
|
||||
capslock:"Mayúsculas",escape:"Escape",pageUp:"Página arriba",pageDown:"Página abajo",leftArrow:"Flecha izquierda",upArrow:"Flecha arriba",rightArrow:"Flecha derecha",downArrow:"Flecha abajo",insert:"Insertar",leftWindowKey:"Tecla izquierda de Windows",rightWindowKey:"Tecla derecha de Windows",selectKey:"Tecla de selección",numpad0:"Teclado numérico 0",numpad1:"Teclado numérico 1",numpad2:"Teclado numérico 2",numpad3:"Teclado numérico 3",numpad4:"Teclado numérico 4",numpad5:"Teclado numérico 5",numpad6:"Teclado numérico 6",
|
||||
numpad7:"Teclado numérico 7",numpad8:"Teclado numérico 8",numpad9:"Teclado numérico 9",multiply:"Multiplicar",add:"Sumar",subtract:"Restar",decimalPoint:"Punto decimal",divide:"Dividir",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Números",scrollLock:"Bloqueo de desplazamiento",semiColon:"punto y coma",equalSign:"Signo igual",comma:"Coma",dash:"Guión",period:"Espacio",forwardSlash:"Diagonal",graveAccent:"Acento grave",openBracket:"Abrir paréntesis",
|
||||
backSlash:"Diagonal invertida",closeBracket:"Cerrar paréntesis",singleQuote:"Comillas simple"});
|
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
Normal file
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","es",{title:"Instrucciones de accesibilidad",contents:"Ayuda. Para cerrar presione ESC.",legend:[{name:"General",items:[{name:"Barra de herramientas del editor",legend:'Presiona ${toolbarFocus} para navegar por la barra de herramientas. Para moverse por los distintos grupos de herramientas usa las teclas TAB y MAY+TAB. Para moverse por las distintas herramientas usa FLECHA DERECHA o FECHA IZQUIERDA. Presiona "espacio" o "intro" para activar la herramienta.'},{name:"Editor de diálogo",
|
||||
legend:"Dentro del diálogo, presione TAB para navegar a los siguientes elementos de diálogo, presione SHIFT+TAB para moverse a los anteriores elementos de diálogo, presione ENTER para enviar el diálogo, presiona ESC para cancelar el diálogo. Cuando el diálogo tiene multiples pestañas, la lista de pestañas puede ser abarcada con ALT + F10 or con TAB como parte del orden de pestañas del diálogo. ECon la pestaña enfocada, puede moverse a la siguiente o anterior pestaña con las FLECHAS IZQUIRDA y DERECHA respectivamente."},
|
||||
{name:"Editor del menú contextual",legend:"Presiona ${contextMenu} o TECLA MENÚ para abrir el menú contextual. Entonces muévete a la siguiente opción del menú con TAB o FLECHA ABAJO. Muévete a la opción previa con SHIFT + TAB o FLECHA ARRIBA. Presiona ESPACIO o ENTER para seleccionar la opción del menú. Abre el submenú de la opción actual con ESPACIO o ENTER o FLECHA DERECHA. Regresa al elemento padre del menú con ESC o FLECHA IZQUIERDA. Cierra el menú contextual con ESC."},{name:"Lista del Editor",
|
||||
legend:"Dentro de una lista, te mueves al siguiente elemento de la lista con TAB o FLECHA ABAJO. Te mueves al elemento previo de la lista con SHIFT+TAB o FLECHA ARRIBA. Presiona ESPACIO o ENTER para elegir la opción de la lista. Presiona ESC para cerrar la lista."},{name:"Barra de Ruta del Elemento en el Editor",legend:"Presiona ${elementsPathFocus} para navegar a los elementos de la barra de ruta. Te mueves al siguiente elemento botón con TAB o FLECHA DERECHA. Te mueves al botón previo con SHIFT+TAB o FLECHA IZQUIERDA. Presiona ESPACIO o ENTER para seleccionar el elemento en el editor."}]},
|
||||
{name:"Comandos",items:[{name:"Comando deshacer",legend:"Presiona ${undo}"},{name:"Comando rehacer",legend:"Presiona ${redo}"},{name:"Comando negrita",legend:"Presiona ${bold}"},{name:"Comando itálica",legend:"Presiona ${italic}"},{name:"Comando subrayar",legend:"Presiona ${underline}"},{name:"Comando liga",legend:"Presiona ${liga}"},{name:"Comando colapsar barra de herramientas",legend:"Presiona ${toolbarCollapse}"},{name:"Comando accesar el anterior espacio de foco",legend:"Presiona ${accessPreviousSpace} para accesar el espacio de foco no disponible más cercano anterior al cursor, por ejemplo: dos elementos HR adyacentes. Repite la combinación de teclas para alcanzar espacios de foco distantes."},
|
||||
{name:"Comando accesar el siguiente spacio de foco",legend:"Presiona ${accessNextSpace} para accesar el espacio de foco no disponible más cercano después del cursor, por ejemplo: dos elementos HR adyacentes. Repite la combinación de teclas para alcanzar espacios de foco distantes."},{name:"Ayuda de Accesibilidad",legend:"Presiona ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabulador",pause:"Pausa",capslock:"Bloq. Mayús.",
|
||||
escape:"Escape",pageUp:"Regresar Página",pageDown:"Avanzar Página",leftArrow:"Flecha Izquierda",upArrow:"Flecha Arriba",rightArrow:"Flecha Derecha",downArrow:"Flecha Abajo",insert:"Insertar",leftWindowKey:"Tecla Windows Izquierda",rightWindowKey:"Tecla Windows Derecha",selectKey:"Tecla de Selección",numpad0:"Tecla 0 del teclado numérico",numpad1:"Tecla 1 del teclado numérico",numpad2:"Tecla 2 del teclado numérico",numpad3:"Tecla 3 del teclado numérico",numpad4:"Tecla 4 del teclado numérico",numpad5:"Tecla 5 del teclado numérico",
|
||||
numpad6:"Tecla 6 del teclado numérico",numpad7:"Tecla 7 del teclado numérico",numpad8:"Tecla 8 del teclado numérico",numpad9:"Tecla 9 del teclado numérico",multiply:"Multiplicar",add:"Sumar",subtract:"Restar",decimalPoint:"Punto Decimal",divide:"Dividir",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Punto y coma",equalSign:"Signo de Igual",comma:"Coma",dash:"Guión",period:"Punto",forwardSlash:"Diagonal",
|
||||
graveAccent:"Acento Grave",openBracket:"Abrir llave",backSlash:"Diagonal Invertida",closeBracket:"Cerrar llave",singleQuote:"Comillas simples"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","et",{title:"Accessibility Instructions",contents:"Abi sisu. Selle dialoogi sulgemiseks vajuta ESC klahvi.",legend:[{name:"Üldine",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","eu",{title:"Erabilerraztasunaren argibideak",contents:"Laguntzaren edukiak. Elkarrizketa-koadro hau ixteko sakatu ESC.",legend:[{name:"Orokorra",items:[{name:"Editorearen tresna-barra",legend:"Sakatu ${toolbarFocus} tresna-barrara nabigatzeko. Tresna-barrako aurreko eta hurrengo taldera joateko erabili TAB eta MAIUS+TAB. Tresna-barrako aurreko eta hurrengo botoira joateko erabili ESKUIN-GEZIA eta EZKER-GEZIA. Sakatu ZURIUNEA edo SARTU tresna-barrako botoia aktibatzeko."},
|
||||
{name:"Editorearen elkarrizketa-koadroa",legend:"Elkarrizketa-koadro baten barruan sakatu TAB hurrengo elementura nabigatzeko, sakatu MAIUS+TAB aurreko elementura joateko, sakatu SARTU elkarrizketa-koadroa bidaltzeko eta sakatu ESC uzteko. Elkarrizketa-koadro batek hainbat fitxa dituenean, ALT+F10 erabiliz irits daiteke fitxen zerrendara, edo TAB erabiliz. Fokoa fitxen zerrendak duenean, aurreko eta hurrengo fitxetara joateko erabili EZKER-GEZIA eta ESKUIN-GEZIA."},{name:"Editorearen testuinguru-menua",
|
||||
legend:"Sakatu ${contextMenu} edo APLIKAZIO TEKLA testuinguru-menua irekitzeko. Menuko hurrengo aukerara joateko erabili TAB edo BEHERA GEZIA. Aurreko aukerara nabigatzeko erabili MAIUS+TAB edo GORA GEZIA. Sakatu ZURIUNEA edo SARTU menuko aukera hautatzeko. Ireki uneko aukeraren azpi-menua ZURIUNEA edo SARTU edo ESKUIN-GEZIA erabiliz. Menuko aukera gurasora itzultzeko erabili ESC edo EZKER-GEZIA. Testuinguru-menua ixteko sakatu ESC."},{name:"Editorearen zerrenda-koadroa",legend:"Zerrenda-koadro baten barruan, zerrendako hurrengo elementura joateko erabili TAB edo BEHERA GEZIA. Zerrendako aurreko elementura nabigatzeko MAIUS+TAB edo GORA GEZIA. Sakatu ZURIUNEA edo SARTU zerrendako aukera hautatzeko. Sakatu ESC zerrenda-koadroa ixteko."},
|
||||
{name:"Editorearen elementuaren bide-barra",legend:"Sakatu ${elementsPathFocus} elementuaren bide-barrara nabigatzeko. Hurrengo elementuaren botoira joateko erabili TAB edo ESKUIN-GEZIA. Aurreko botoira joateko aldiz erabili MAIUS+TAB edo EZKER-GEZIA. Elementua editorean hautatzeko sakatu ZURIUNEA edo SARTU."}]},{name:"Komandoak",items:[{name:"Desegin komandoa",legend:"Sakatu ${undo}"},{name:"Berregin komandoa",legend:"Sakatu ${redo}"},{name:"Lodia komandoa",legend:"Sakatu ${bold}"},{name:"Etzana komandoa",
|
||||
legend:"Sakatu ${italic}"},{name:"Azpimarratu komandoa",legend:"Sakatu ${underline}"},{name:"Esteka komandoa",legend:"Sakatu ${link}"},{name:"Tolestu tresna-barra komandoa",legend:"Sakatu ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:"Erabilerraztasunaren laguntza",legend:"Sakatu ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabuladorea",pause:"Pausatu",capslock:"Blok Maius",escape:"Ihes",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Ezker-gezia",upArrow:"Gora gezia",rightArrow:"Eskuin-gezia",downArrow:"Behera gezia",insert:"Txertatu",leftWindowKey:"Ezkerreko Windows tekla",rightWindowKey:"Eskuineko Windows tekla",selectKey:"Hautatu tekla",
|
||||
numpad0:"Zenbakizko teklatua 0",numpad1:"Zenbakizko teklatua 1",numpad2:"Zenbakizko teklatua 2",numpad3:"Zenbakizko teklatua 3",numpad4:"Zenbakizko teklatua 4",numpad5:"Zenbakizko teklatua 5",numpad6:"Zenbakizko teklatua 6",numpad7:"Zenbakizko teklatua 7",numpad8:"Zenbakizko teklatua 8",numpad9:"Zenbakizko teklatua 9",multiply:"Biderkatu",add:"Gehitu",subtract:"Kendu",decimalPoint:"Koma hamartarra",divide:"Zatitu",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",
|
||||
f12:"F12",numLock:"Blok Zenb",scrollLock:"Blok Korr",semiColon:"Puntu eta koma",equalSign:"Berdin zeinua",comma:"Koma",dash:"Marratxoa",period:"Puntua",forwardSlash:"Barra",graveAccent:"Azentu kamutsa",openBracket:"Parentesia ireki",backSlash:"Alderantzizko barra",closeBracket:"Itxi parentesia",singleQuote:"Komatxo bakuna"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fa",{title:"دستورالعملهای دسترسی",contents:"راهنمای فهرست مطالب. برای بستن این کادر محاورهای ESC را فشار دهید.",legend:[{name:"عمومی",items:[{name:"نوار ابزار ویرایشگر",legend:"${toolbarFocus} را برای باز کردن نوار ابزار بفشارید. با کلید Tab و Shift+Tab در مجموعه نوار ابزار بعدی و قبلی حرکت کنید. برای حرکت در کلید نوار ابزار قبلی و بعدی با کلید جهتنمای راست و چپ جابجا شوید. کلید Space یا Enter را برای فعال کردن کلید نوار ابزار بفشارید."},{name:"پنجره محاورهای ویرایشگر",
|
||||
legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"منوی متنی ویرایشگر",legend:"${contextMenu} یا کلید برنامههای کاربردی را برای باز کردن منوی متن را بفشارید. سپس میتوانید برای حرکت به گزینه بعدی منو با کلید Tab و یا کلید جهتنمای پایین جابجا شوید. حرکت به گزینه قبلی با Shift+Tab یا کلید جهتنمای بالا. فشردن Space یا Enter برای انتخاب یک گزینه از منو. باز کردن زیر شاخه گزینه منو جاری با کلید Space یا Enter و یا کلید جهتنمای راست و چپ. بازگشت به منوی والد با کلید Esc یا کلید جهتنمای چپ. بستن منوی متن با Esc."},
|
||||
{name:"جعبه فهرست ویرایشگر",legend:"در داخل جعبه لیست، قلم دوم از اقلام لیست بعدی را با TAB و یا Arrow Down حرکت دهید. انتقال به قلم دوم از اقلام لیست قبلی را با SHIFT + TAB یا UP ARROW. کلید Space یا ENTER را برای انتخاب گزینه لیست بفشارید. کلید ESC را برای بستن جعبه لیست بفشارید."},{name:"ویرایشگر عنصر نوار راه",legend:"برای رفتن به مسیر عناصر ${elementsPathFocus} را بفشارید. حرکت به کلید عنصر بعدی با کلید Tab یا کلید جهتنمای راست. برگشت به کلید قبلی با Shift+Tab یا کلید جهتنمای چپ. فشردن Space یا Enter برای انتخاب یک عنصر در ویرایشگر."}]},
|
||||
{name:"فرمانها",items:[{name:"بازگشت به آخرین فرمان",legend:"فشردن ${undo}"},{name:"انجام مجدد فرمان",legend:"فشردن ${redo}"},{name:"فرمان درشت کردن متن",legend:"فشردن ${bold}"},{name:"فرمان کج کردن متن",legend:"فشردن ${italic}"},{name:"فرمان زیرخطدار کردن متن",legend:"فشردن ${underline}"},{name:"فرمان پیوند دادن",legend:"فشردن ${link}"},{name:"بستن نوار ابزار فرمان",legend:"فشردن ${toolbarCollapse}"},{name:"دسترسی به فرمان محل تمرکز قبلی",legend:"فشردن ${accessPreviousSpace} برای دسترسی به نزدیکترین فضای قابل دسترسی تمرکز قبل از هشتک، برای مثال: دو عنصر مجاور HR -خط افقی-. تکرار کلید ترکیبی برای رسیدن به فضاهای تمرکز از راه دور."},
|
||||
{name:"دسترسی به فضای دستور بعدی",legend:"برای دسترسی به نزدیکترین فضای تمرکز غیر قابل دسترس، ${accessNextSpace} را پس از علامت هشتک بفشارید، برای مثال: دو عنصر مجاور HR -خط افقی-. کلید ترکیبی را برای رسیدن به فضای تمرکز تکرار کنید."},{name:"راهنمای دسترسی",legend:"فشردن ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"برگه",pause:"توقف",capslock:"Caps Lock",escape:"گریز",pageUp:"صفحه به بالا",pageDown:"صفحه به پایین",
|
||||
leftArrow:"پیکان چپ",upArrow:"پیکان بالا",rightArrow:"پیکان راست",downArrow:"پیکان پایین",insert:"ورود",leftWindowKey:"کلید چپ ویندوز",rightWindowKey:"کلید راست ویندوز",selectKey:"انتخاب کلید",numpad0:"کلید شماره 0",numpad1:"کلید شماره 1",numpad2:"کلید شماره 2",numpad3:"کلید شماره 3",numpad4:"کلید شماره 4",numpad5:"کلید شماره 5",numpad6:"کلید شماره 6",numpad7:"کلید شماره 7",numpad8:"کلید شماره 8",numpad9:"کلید شماره 9",multiply:"ضرب",add:"افزودن",subtract:"تفریق",decimalPoint:"نقطهی اعشار",divide:"جدا کردن",
|
||||
f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"علامت تساوی",comma:"کاما",dash:"خط تیره",period:"دوره",forwardSlash:"Forward Slash",graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fi",{title:"Saavutettavuus ohjeet",contents:"Ohjeen sisällöt. Sulkeaksesi tämän dialogin paina ESC.",legend:[{name:"Yleinen",items:[{name:"Editorin työkalupalkki",legend:"Paina ${toolbarFocus} siirtyäksesi työkalupalkkiin. Siirry seuraavaan ja edelliseen työkalupalkin ryhmään TAB ja SHIFT+TAB näppäimillä. Siirry seuraavaan ja edelliseen työkalupainikkeeseen käyttämällä NUOLI OIKEALLE tai NUOLI VASEMMALLE näppäimillä. Paina VÄLILYÖNTI tai ENTER näppäintä aktivoidaksesi työkalupainikkeen."},
|
||||
{name:"Editorin dialogi",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Editorin oheisvalikko",legend:"Paina ${contextMenu} tai SOVELLUSPAINIKETTA avataksesi oheisvalikon. Liiku seuraavaan valikon vaihtoehtoon TAB tai NUOLI ALAS näppäimillä. Siirry edelliseen vaihtoehtoon SHIFT+TAB tai NUOLI YLÖS näppäimillä. Paina VÄLILYÖNTI tai ENTER valitaksesi valikon kohdan. Avataksesi nykyisen kohdan alivalikon paina VÄLILYÖNTI tai ENTER tai NUOLI OIKEALLE painiketta. Siirtyäksesi takaisin valikon ylemmälle tasolle paina ESC tai NUOLI vasemmalle. Oheisvalikko suljetaan ESC painikkeella."},
|
||||
{name:"Editorin listalaatikko",legend:"Listalaatikon sisällä siirry seuraavaan listan kohtaan TAB tai NUOLI ALAS painikkeilla. Siirry edelliseen listan kohtaan SHIFT+TAB tai NUOLI YLÖS painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi listan vaihtoehdon. Paina ESC sulkeaksesi listalaatikon."},{name:"Editorin elementtipolun palkki",legend:"Paina ${elementsPathFocus} siirtyäksesi elementtipolun palkkiin. Siirry seuraavaan elementtipainikkeeseen TAB tai NUOLI OIKEALLE painikkeilla. Siirry aiempaan painikkeeseen SHIFT+TAB tai NUOLI VASEMMALLE painikkeilla. Paina VÄLILYÖNTI tai ENTER valitaksesi elementin editorissa."}]},
|
||||
{name:"Komennot",items:[{name:"Peruuta komento",legend:"Paina ${undo}"},{name:"Tee uudelleen komento",legend:"Paina ${redo}"},{name:"Lihavoi komento",legend:"Paina ${bold}"},{name:"Kursivoi komento",legend:"Paina ${italic}"},{name:"Alleviivaa komento",legend:"Paina ${underline}"},{name:"Linkki komento",legend:"Paina ${link}"},{name:"Pienennä työkalupalkki komento",legend:"Paina ${toolbarCollapse}"},{name:"Siirry aiempaan fokustilaan komento",legend:"Paina ${accessPreviousSpace} siiryäksesi lähimpään kursorin edellä olevaan saavuttamattomaan fokustilaan, esimerkiksi: kaksi vierekkäistä HR elementtiä. Toista näppäinyhdistelmää päästäksesi kauempana oleviin fokustiloihin."},
|
||||
{name:"Siirry seuraavaan fokustilaan komento",legend:"Paina ${accessPreviousSpace} siiryäksesi lähimpään kursorin jälkeen olevaan saavuttamattomaan fokustilaan, esimerkiksi: kaksi vierekkäistä HR elementtiä. Toista näppäinyhdistelmää päästäksesi kauempana oleviin fokustiloihin."},{name:"Saavutettavuus ohjeet",legend:"Paina ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",
|
||||
pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numeronäppäimistö 0",numpad1:"Numeronäppäimistö 1",numpad2:"Numeronäppäimistö 2",numpad3:"Numeronäppäimistö 3",numpad4:"Numeronäppäimistö 4",numpad5:"Numeronäppäimistö 5",numpad6:"Numeronäppäimistö 6",numpad7:"Numeronäppäimistö 7",numpad8:"Numeronäppäimistö 8",
|
||||
numpad9:"Numeronäppäimistö 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Puolipiste",equalSign:"Equal Sign",comma:"Pilkku",dash:"Dash",period:"Piste",forwardSlash:"Forward Slash",graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fo",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"General",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Falda",add:"Pluss",subtract:"Frádráttar",decimalPoint:"Decimal Point",divide:"Býta",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semikolon",equalSign:"Javnatekn",comma:"Komma",dash:"Dash",period:"Punktum",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fr-ca",{title:"Instructions d'accessibilité",contents:"Contenu de l'aide. Pour fermer cette fenêtre, appuyez sur ESC.",legend:[{name:"Général",items:[{name:"Barre d'outil de l'éditeur",legend:"Appuyer sur ${toolbarFocus} pour accéder à la barre d'outils. Se déplacer vers les groupes suivant ou précédent de la barre d'outil avec les touches TAB et SHIFT+TAB. Se déplacer vers les boutons suivant ou précédent de la barre d'outils avec les touches FLECHE DROITE et FLECHE GAUCHE. Appuyer sur la barre d'espace ou la touche ENTRER pour activer le bouton de barre d'outils."},
|
||||
{name:"Dialogue de l'éditeur",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},{name:"Menu contextuel de l'éditeur",legend:"Appuyer sur ${contextMenu} ou entrer le RACCOURCI CLAVIER pour ouvrir le menu contextuel. Puis se déplacer vers l'option suivante du menu avec les touches TAB ou FLECHE BAS. Se déplacer vers l'option précédente avec les touches SHIFT+TAB ou FLECHE HAUT. appuyer sur la BARRE D'ESPACE ou la touche ENTREE pour sélectionner l'option du menu. Oovrir le sous-menu de l'option courante avec la BARRE D'ESPACE ou les touches ENTREE ou FLECHE DROITE. Revenir à l'élément de menu parent avec les touches ESC ou FLECHE GAUCHE. Fermer le menu contextuel avec ESC."},
|
||||
{name:"Menu déroulant de l'éditeur",legend:"A l'intérieur d'une liste en menu déroulant, se déplacer vers l'élément suivant de la liste avec les touches TAB ou FLECHE BAS. Se déplacer vers l'élément précédent de la liste avec les touches SHIFT+TAB ou FLECHE HAUT. Appuyer sur la BARRE D'ESPACE ou sur ENTREE pour sélectionner l'option dans la liste. Appuyer sur ESC pour fermer le menu déroulant."},{name:"Barre d'emplacement des éléments de l'éditeur",legend:"Appuyer sur ${elementsPathFocus} pour naviguer vers la barre d'emplacement des éléments de léditeur. Se déplacer vers le bouton d'élément suivant avec les touches TAB ou FLECHE DROITE. Se déplacer vers le bouton d'élément précédent avec les touches SHIFT+TAB ou FLECHE GAUCHE. Appuyer sur la BARRE D'ESPACE ou sur ENTREE pour sélectionner l'élément dans l'éditeur."}]},
|
||||
{name:"Commandes",items:[{name:"Annuler",legend:"Appuyer sur ${undo}"},{name:"Refaire",legend:"Appuyer sur ${redo}"},{name:"Gras",legend:"Appuyer sur ${bold}"},{name:"Italique",legend:"Appuyer sur ${italic}"},{name:"Souligné",legend:"Appuyer sur ${underline}"},{name:"Lien",legend:"Appuyer sur ${link}"},{name:"Enrouler la barre d'outils",legend:"Appuyer sur ${toolbarCollapse}"},{name:"Accéder à l'objet de focus précédent",legend:"Appuyer ${accessPreviousSpace} pour accéder au prochain espace disponible avant le curseur, par exemple: deux éléments HR adjacents. Répéter la combinaison pour joindre les éléments d'espaces distantes."},
|
||||
{name:"Accéder au prochain objet de focus",legend:"Appuyer ${accessNextSpace} pour accéder au prochain espace disponible après le curseur, par exemple: deux éléments HR adjacents. Répéter la combinaison pour joindre les éléments d'espaces distantes."},{name:"Aide d'accessibilité",legend:"Appuyer sur ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",
|
||||
pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",
|
||||
f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
Normal file
13
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","fr",{title:"Instructions d'accessibilité",contents:"Contenu de l'aide. Pour fermer cette fenêtre, appuyez sur la touche Échap.",legend:[{name:"Général",items:[{name:"Barre d'outils de l'éditeur",legend:"Appuyer sur ${toolbarFocus} pour accéder à la barre d'outils. Se déplacer vers le groupe suivant ou précédent de la barre d'outils avec les touches Tab et Maj+Tab. Se déplacer vers le bouton suivant ou précédent de la barre d'outils avec les touches Flèche droite et Flèche gauche. Appuyer sur la barre d'espace ou la touche Entrée pour activer le bouton de barre d'outils."},
|
||||
{name:"Fenêtre de l'éditeur",legend:"Dans une boîte de dialogue, appuyer sur Tab pour passer à l'élément suivant, appuyer sur Maj+Tab pour passer à l'élément précédent, appuyer sur Entrée pour valider, appuyer sur Échap pour annuler. Quand une boîte de dialogue possède des onglets, la liste peut être atteinte avec Alt+F10 ou avec Tab. Dans la liste des onglets, se déplacer vers le suivant et le précédent avec les touches Flèche droite et Flèche gauche respectivement."},{name:"Menu contextuel de l'éditeur",
|
||||
legend:"Appuyer sur ${contextMenu} ou sur la touche Menu pour ouvrir le menu contextuel. Se déplacer ensuite vers l'option suivante du menu avec les touches Tab ou Flèche bas. Se déplacer vers l'option précédente avec les touches Maj+Tab ou Flèche haut. Appuyer sur la barre d'espace ou la touche Entrée pour sélectionner l'option du menu. Appuyer sur la barre d'espace, la touche Entrée ou Flèche droite pour ouvrir le sous-menu de l'option sélectionnée. Revenir à l'élément de menu parent avec la touche Échap ou Flèche gauche. Fermer le menu contextuel avec Échap."},
|
||||
{name:"Zone de liste de l'éditeur",legend:"Dans une liste en menu déroulant, se déplacer vers l'élément suivant de la liste avec les touches Tab ou Flèche bas. Se déplacer vers l'élément précédent de la liste avec les touches Maj+Tab ou Flèche haut. Appuyer sur la barre d'espace ou sur Entrée pour sélectionner l'option dans la liste. Appuyer sur Échap pour fermer le menu déroulant."},{name:"Barre du chemin d'éléments de l'éditeur",legend:"Appuyer sur ${elementsPathFocus} pour naviguer vers la barre du fil d'Ariane des éléments. Se déplacer vers le bouton de l'élément suivant avec les touches Tab ou Flèche droite. Se déplacer vers le bouton précédent avec les touches Maj+Tab ou Flèche gauche. Appuyer sur la barre d'espace ou sur Entrée pour sélectionner l'élément dans l'éditeur."}]},
|
||||
{name:"Commandes",items:[{name:" Annuler la commande",legend:"Appuyer sur ${undo}"},{name:"Commande restaurer",legend:"Appuyer sur ${redo}"},{name:" Commande gras",legend:"Appuyer sur ${bold}"},{name:" Commande italique",legend:"Appuyer sur ${italic}"},{name:" Commande souligné",legend:"Appuyer sur ${underline}"},{name:" Commande lien",legend:"Appuyer sur ${link}"},{name:" Commande enrouler la barre d'outils",legend:"Appuyer sur ${toolbarCollapse}"},{name:"Commande d'accès à l'élément sélectionnable précédent",
|
||||
legend:"Appuyer sur ${accessNextSpace} pour accéder à l'élément sélectionnable inatteignable le plus proche avant le curseur, par exemple : deux lignes horizontales adjacentes. Répéter la combinaison de touches pour atteindre les éléments sélectionnables précédents."},{name:"Commande d'accès à l'élément sélectionnable suivant",legend:"Appuyer sur ${accessNextSpace} pour accéder à l'élément sélectionnable inatteignable le plus proche après le curseur, par exemple : deux lignes horizontales adjacentes. Répéter la combinaison de touches pour atteindre les éléments sélectionnables suivants."},
|
||||
{name:" Aide sur l'accessibilité",legend:"Appuyer sur ${a11yHelp}"},{name:"Coller comme texte sans mise en forme",legend:"Appuyer sur ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tabulation",pause:"Pause",capslock:"Verr. Maj.",escape:"Échap",pageUp:"Page supérieure",pageDown:"Page suivante",leftArrow:"Flèche gauche",upArrow:"Flèche haut",rightArrow:"Flèche droite",downArrow:"Flèche basse",insert:"Inser",leftWindowKey:"Touche Windows gauche",rightWindowKey:"Touche Windows droite",
|
||||
selectKey:"Touche Sélectionner",numpad0:"0 du pavé numérique",numpad1:"1 du pavé numérique",numpad2:"2 du pavé numérique",numpad3:"3 du pavé numérique",numpad4:"4 du pavé numérique",numpad5:"5 du pavé numérique",numpad6:"6 du pavé numérique",numpad7:"7 du pavé numérique",numpad8:"Pavé numérique 8",numpad9:"9 du pavé numérique",multiply:"Multiplier",add:"Plus",subtract:"Moins",decimalPoint:"Point décimal",divide:"Diviser",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",
|
||||
f11:"F11",f12:"F12",numLock:"Verr. Num.",scrollLock:"Arrêt défil.",semiColon:"Point-virgule",equalSign:"Signe égal",comma:"Virgule",dash:"Tiret",period:"Point",forwardSlash:"Barre oblique",graveAccent:"Accent grave",openBracket:"Parenthèse ouvrante",backSlash:"Barre oblique inverse",closeBracket:"Parenthèse fermante",singleQuote:"Apostrophe"});
|
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
Normal file
12
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","gl",{title:"Instrucións de accesibilidade",contents:"Axuda. Para pechar este diálogo prema ESC.",legend:[{name:"Xeral",items:[{name:"Barra de ferramentas do editor",legend:"Prema ${toolbarFocus} para navegar pola barra de ferramentas. Para moverse polos distintos grupos de ferramentas use as teclas TAB e MAIÚS+TAB. Para moverse polas distintas ferramentas use FRECHA DEREITA ou FRECHA ESQUERDA. Prema ESPAZO ou INTRO para activar o botón da barra de ferramentas."},
|
||||
{name:"Editor de diálogo",legend:"Dentro do diálogo, prema TAB para navegar cara os seguintes elementos de diálogo, prema MAIÚS+TAB para moverse cara os anteriores elementos de diálogo, prema INTRO para enviar o diálogo, prema ESC para cancelar o diálogo. Cando o diálogo ten múltiples lapelas, a lista de lapelas pode cinguirse con ALT+F10 ou con TAB como parte da orde de lapelas do diálogo. Coa lapela en foco, pode moverse cara a seguinte ou a anterior lapela coas FRECHAS ESQUERDA e DEREICHA respectivamente."},
|
||||
{name:"Editor do menú contextual",legend:"Prema ${contextMenu} ou a TECLA MENÚ para abrir o menú contextual. A seguir móvase á seguinte opción do menú con TAB ou FRECHA ABAIXO. Móvase á opción anterior con MAIÚS + TAB ou FRECHA ARRIBA. Prema ESPAZO ou INTRO para seleccionar a opción do menú. Abra o submenú da opción actual con ESPAZO ou INTRO ou FRECHA DEREITA. Regrese ao elemento principal do menú con ESC ou FRECHA ESQUERDA. Peche o menú contextual con ESC."},{name:"Lista do editor",legend:"Dentro dunha lista, móvase ao seguinte elemento da lista con TAB ou FRECHA ABAIXO. Móvase ao elemento anterior da lista con MAIÚS+TAB ou FRECHA ARRIBA. Prema ESPAZO ou INTRO para escoller a opción da lista. Prema ESC para pechar a lista."},
|
||||
{name:"Barra da ruta ao elemento no editor",legend:"Prema ${elementsPathFocus} para navegar ata os elementos da barra de ruta. Móvase ao seguinte elemento botón con TAB ou FRECHA DEREITA. Móvase ao botón anterior con MAIÚS+TAB ou FRECHA ESQUERDA. Prema ESPAZO ou INTRO para seleccionar o elemento no editor."}]},{name:"Ordes",items:[{name:"Orde «desfacer»",legend:"Prema ${undo}"},{name:"Orde «refacer»",legend:"Prema ${redo}"},{name:"Orde «negra»",legend:"Prema ${bold}"},{name:"Orde «cursiva»",legend:"Prema ${italic}"},
|
||||
{name:"Orde «subliñar»",legend:"Prema ${underline}"},{name:"Orde «ligazón»",legend:"Prema ${link}"},{name:"Orde «contraer a barra de ferramentas»",legend:"Prema ${toolbarCollapse}"},{name:"Orde «acceder ao anterior espazo en foco»",legend:"Prema ${accessPreviousSpace} para acceder ao espazo máis próximo de foco inalcanzábel anterior ao cursor, por exemplo: dous elementos HR adxacentes. Repita a combinación de teclas para chegar a espazos de foco distantes."},{name:"Orde «acceder ao seguinte espazo en foco»",
|
||||
legend:"Prema ${accessNextSpace} para acceder ao espazo máis próximo de foco inalcanzábel posterior ao cursor, por exemplo: dous elementos HR adxacentes. Repita a combinación de teclas para chegar a espazos de foco distantes."},{name:"Axuda da accesibilidade",legend:"Prema ${a11yHelp}"},{name:"Pegar como texto simple",legend:"Prema ${pastetext}",legendEdge:"Prema ${pastetext}, seguido de ${paste}"}]}],tab:"Tabulador",pause:"Pausa",capslock:"Bloq. Maiús",escape:"Escape",pageUp:"Páxina arriba",pageDown:"Páxina abaixo",
|
||||
leftArrow:"Frecha esquerda",upArrow:"Frecha arriba",rightArrow:"Frecha dereita",downArrow:"Frecha abaixo",insert:"Inserir",leftWindowKey:"Tecla Windows esquerda",rightWindowKey:"Tecla Windows dereita",selectKey:"Escolla a tecla",numpad0:"Tec. numérico 0",numpad1:"Tec. numérico 1",numpad2:"Tec. numérico 2",numpad3:"Tec. numérico 3",numpad4:"Tec. numérico 4",numpad5:"Tec. numérico 5",numpad6:"Tec. numérico 6",numpad7:"Tec. numérico 7",numpad8:"Tec. numérico 8",numpad9:"Tec. numérico 9",multiply:"Multiplicar",
|
||||
add:"Sumar",subtract:"Restar",decimalPoint:"Punto decimal",divide:"Dividir",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Bloq. num.",scrollLock:"Bloq. despraz.",semiColon:"Punto e coma",equalSign:"Signo igual",comma:"Coma",dash:"Guión",period:"Punto",forwardSlash:"Barra inclinada",graveAccent:"Acento grave",openBracket:"Abrir corchete",backSlash:"Barra invertida",closeBracket:"Pechar corchete",singleQuote:"Comiña simple"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","gu",{title:"એક્ક્ષેબિલિટી ની વિગતો",contents:"હેલ્પ. આ બંધ કરવા ESC દબાવો.",legend:[{name:"જનરલ",items:[{name:"એડિટર ટૂલબાર",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"એડિટર ડાયલોગ",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"કમાંડસ",items:[{name:"અન્ડું કમાંડ",legend:"$ દબાવો {undo}"},{name:"ફરી કરો કમાંડ",legend:"$ દબાવો {redo}"},{name:"બોલ્દનો કમાંડ",legend:"$ દબાવો {bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","he",{title:"הוראות נגישות",contents:"הוראות נגישות. לסגירה לחץ אסקייפ (ESC).",legend:[{name:"כללי",items:[{name:"סרגל הכלים",legend:"לחץ על ${toolbarFocus} כדי לנווט לסרגל הכלים. עבור לכפתור הבא עם מקש הטאב (TAB) או חץ שמאלי. עבור לכפתור הקודם עם מקש השיפט (SHIFT) + טאב (TAB) או חץ ימני. לחץ רווח או אנטר (ENTER) כדי להפעיל את הכפתור הנבחר."},{name:"דיאלוגים (חלונות תשאול)",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"תפריט ההקשר (Context Menu)",legend:"לחץ ${contextMenu} או APPLICATION KEYכדי לפתוח את תפריט ההקשר. עבור לאפשרות הבאה עם טאב (TAB) או חץ למטה. עבור לאפשרות הקודמת עם שיפט (SHIFT) + טאב (TAB) או חץ למעלה. לחץ רווח או אנטר (ENTER) כדי לבחור את האפשרות. פתח את תת התפריט (Sub-menu) של האפשרות הנוכחית עם רווח או אנטר (ENTER) או חץ שמאלי. חזור לתפריט האב עם אסקייפ (ESC) או חץ שמאלי. סגור את תפריט ההקשר עם אסקייפ (ESC)."},{name:"תפריטים צפים (List boxes)",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"עץ אלמנטים (Elements Path)",legend:"לחץ ${elementsPathFocus} כדי לנווט לעץ האלמנטים. עבור לפריט הבא עם טאב (TAB) או חץ ימני. עבור לפריט הקודם עם שיפט (SHIFT) + טאב (TAB) או חץ שמאלי. לחץ רווח או אנטר (ENTER) כדי לבחור את האלמנט בעורך."}]},{name:"פקודות",items:[{name:" ביטול צעד אחרון",legend:"לחץ ${undo}"},{name:" חזרה על צעד אחרון",legend:"לחץ ${redo}"},{name:" הדגשה",legend:"לחץ ${bold}"},{name:" הטייה",legend:"לחץ ${italic}"},{name:" הוספת קו תחתון",legend:"לחץ ${underline}"},{name:" הוספת לינק",
|
||||
legend:"לחץ ${link}"},{name:" כיווץ סרגל הכלים",legend:"לחץ ${toolbarCollapse}"},{name:"גישה למיקום המיקוד הקודם",legend:"לחץ ${accessPreviousSpace} כדי לגשת למיקום המיקוד הלא-נגיש הקרוב לפני הסמן, למשל בין שני אלמנטים סמוכים מסוג HR. חזור על צירוף מקשים זה כדי להגיע למקומות מיקוד רחוקים יותר."},{name:"גישה למיקום המיקוד הבא",legend:"לחץ ${accessNextSpace} כדי לגשת למיקום המיקוד הלא-נגיש הקרוב אחרי הסמן, למשל בין שני אלמנטים סמוכים מסוג HR. חזור על צירוף מקשים זה כדי להגיע למקומות מיקוד רחוקים יותר."},
|
||||
{name:" הוראות נגישות",legend:"לחץ ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"חץ שמאלה",upArrow:"חץ למעלה",rightArrow:"חץ ימינה",downArrow:"חץ למטה",insert:"הכנס",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"בחר מקש",numpad0:"Numpad 0",numpad1:"Numpad 1",numpad2:"Numpad 2",
|
||||
numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"הוסף",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"סלאש",graveAccent:"Grave Accent",
|
||||
openBracket:"Open Bracket",backSlash:"סלאש הפוך",closeBracket:"Close Bracket",singleQuote:"ציטוט יחיד"});
|
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
Normal file
11
static/plugs/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
Normal file
@ -0,0 +1,11 @@
|
||||
/*
|
||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang("a11yhelp","hi",{title:"Accessibility Instructions",contents:"Help Contents. To close this dialog press ESC.",legend:[{name:"सामान्य",items:[{name:"Editor Toolbar",legend:"Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."},{name:"Editor Dialog",legend:"Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."},
|
||||
{name:"Editor Context Menu",legend:"Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."},{name:"Editor List Box",legend:"Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."},
|
||||
{name:"Editor Element Path Bar",legend:"Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."}]},{name:"Commands",items:[{name:" Undo command",legend:"Press ${undo}"},{name:" Redo command",legend:"Press ${redo}"},{name:" Bold command",legend:"Press ${bold}"},{name:" Italic command",legend:"Press ${italic}"},{name:" Underline command",
|
||||
legend:"Press ${underline}"},{name:" Link command",legend:"Press ${link}"},{name:" Toolbar Collapse command",legend:"Press ${toolbarCollapse}"},{name:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},{name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."},
|
||||
{name:" Accessibility Help",legend:"Press ${a11yHelp}"},{name:" Paste as plain text",legend:"Press ${pastetext}",legendEdge:"Press ${pastetext}, followed by ${paste}"}]}],tab:"Tab",pause:"Pause",capslock:"Caps Lock",escape:"Escape",pageUp:"Page Up",pageDown:"Page Down",leftArrow:"Left Arrow",upArrow:"Up Arrow",rightArrow:"Right Arrow",downArrow:"Down Arrow",insert:"Insert",leftWindowKey:"Left Windows key",rightWindowKey:"Right Windows key",selectKey:"Select key",numpad0:"Numpad 0",numpad1:"Numpad 1",
|
||||
numpad2:"Numpad 2",numpad3:"Numpad 3",numpad4:"Numpad 4",numpad5:"Numpad 5",numpad6:"Numpad 6",numpad7:"Numpad 7",numpad8:"Numpad 8",numpad9:"Numpad 9",multiply:"Multiply",add:"Add",subtract:"Subtract",decimalPoint:"Decimal Point",divide:"Divide",f1:"F1",f2:"F2",f3:"F3",f4:"F4",f5:"F5",f6:"F6",f7:"F7",f8:"F8",f9:"F9",f10:"F10",f11:"F11",f12:"F12",numLock:"Num Lock",scrollLock:"Scroll Lock",semiColon:"Semicolon",equalSign:"Equal Sign",comma:"Comma",dash:"Dash",period:"Period",forwardSlash:"Forward Slash",
|
||||
graveAccent:"Grave Accent",openBracket:"Open Bracket",backSlash:"Backslash",closeBracket:"Close Bracket",singleQuote:"Single Quote"});
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user