PHPIndex

This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).

i18n
static
app.php
wget 'https://sme10.lists2.roe3.org/kodbox/plugins/picasa/app.php'
View Content
<?php

class picasaPlugin extends PluginBase{
	function __construct(){
		parent::__construct();
	}
	public function regist(){
		$this->hookRegist(array(
			'user.commonJs.insert' => 'picasaPlugin.echoJs',
		));
	}
	public function echoJs(){
		$this->echoFile('static/main.js');
	}
}
package.json
wget 'https://sme10.lists2.roe3.org/kodbox/plugins/picasa/package.json'
View Content
{
	"id":"picasa",
	"name":"{{LNG['picasa.meta.name']}}",
	"title":"{{LNG['picasa.meta.title']}}",
	"version":"1.33",
	"source":{
		"className":"x-item-icon x-png",
		"screenshoot":[
			"{{staticPath}}images/wall_page/1.jpg",
			"{{staticPath}}images/wall_page/5.jpg"
		]
	},
	"category":"media,file",
	"description":"{{LNG['admin.plugin.name']}}",
	"keywords":"",
	"auther":{
		"copyright":"kodcloud.",
		"homePage":"http://www.kodcloud.com",
	},
	"configItem":{
		"pluginAuth":{
			"type":"userSelect",
			"value":{"all":1},
			"display":"{{LNG['admin.plugin.auth']}}",
			"desc":"{{LNG['admin.plugin.authDesc']}}",
			"require":1
		},
		"sep1001":"<hr/>",
		"fileExt":{
			"type":"tags",
			"display":"{{LNG['admin.plugin.fileExt']}}",
			"desc":"{{LNG['admin.plugin.fileExtDesc']}}",
			"value":"jpg,jpeg,png,bmp,gif,ico,svg,cur,webp,heic,heif",
		},
		"fileSort":{
			"type":"number",
			"display":"{{LNG['admin.plugin.fileSort']}}",
			"desc":"{{LNG['admin.plugin.fileSortDesc']}}",
			"value":10
		}
	}
}