├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── mygalgame.iml └── vcs.xml ├── LICENSE ├── README.md ├── Usage.md ├── plugins ├── akismet │ ├── .htaccess │ ├── LICENSE.txt │ ├── _inc │ │ ├── akismet.css │ │ ├── akismet.js │ │ ├── form.js │ │ └── img │ │ │ └── logo-full-2x.png │ ├── akismet.php │ ├── class.akismet-admin.php │ ├── class.akismet-cli.php │ ├── class.akismet-rest-api.php │ ├── class.akismet-widget.php │ ├── class.akismet.php │ ├── index.php │ ├── readme.txt │ ├── views │ │ ├── config.php │ │ ├── get.php │ │ ├── notice.php │ │ ├── start.php │ │ └── stats.php │ └── wrapper.php ├── auto-highslide │ ├── auto-highslide.php │ ├── error_log │ ├── highslide │ │ ├── graphics │ │ │ ├── close.png │ │ │ ├── controlbar-black-border.gif │ │ │ ├── controlbar-white-small.gif │ │ │ ├── controlbar-white.gif │ │ │ ├── controlbar2.gif │ │ │ ├── controlbar3.gif │ │ │ ├── controlbar4-hover.gif │ │ │ ├── controlbar4.gif │ │ │ ├── fullexpand.gif │ │ │ ├── geckodimmer.png │ │ │ ├── icon.gif │ │ │ ├── loader.gif │ │ │ ├── loader.white.gif │ │ │ ├── outlines │ │ │ │ ├── beveled.png │ │ │ │ ├── drop-shadow.png │ │ │ │ ├── glossy-dark.png │ │ │ │ ├── outer-glow.png │ │ │ │ ├── rounded-black.png │ │ │ │ └── rounded-white.png │ │ │ ├── resize.gif │ │ │ ├── tem │ │ │ │ ├── zoomin.cur │ │ │ │ └── zoomout.cur │ │ │ ├── zoomin.cur │ │ │ └── zoomout.cur │ │ ├── highslide-with-html.packed.js │ │ └── highslide.css │ └── readme.txt ├── breadcrumb-navxt │ ├── breadcrumb-navxt.php │ ├── class.bcn_admin.php │ ├── class.bcn_breadcrumb.php │ ├── class.bcn_breadcrumb_trail.php │ ├── class.bcn_network_admin.php │ ├── class.bcn_widget.php │ ├── includes │ │ ├── block_direct_access.php │ │ ├── class.mtekk_adminkit.php │ │ ├── class.mtekk_adminkit_message.php │ │ ├── class.mtekk_adminkit_uninstaller.php │ │ ├── mtekk_adminkit_engroups.js │ │ ├── mtekk_adminkit_engroups.min.js │ │ ├── mtekk_adminkit_messages.js │ │ ├── mtekk_adminkit_messages.min.js │ │ ├── mtekk_adminkit_tabs.css │ │ ├── mtekk_adminkit_tabs.js │ │ ├── mtekk_adminkit_tabs.min.css │ │ ├── mtekk_adminkit_tabs.min.js │ │ └── multibyte_supplicant.php │ ├── languages │ │ └── breadcrumb-navxt.pot │ ├── readme.txt │ └── uninstall.php ├── custom-field-template │ ├── custom-field-template-by_BY.mo │ ├── custom-field-template-by_BY.po │ ├── custom-field-template-ca.mo │ ├── custom-field-template-ca.po │ ├── custom-field-template-cs_CZ.mo │ ├── custom-field-template-cs_CZ.po │ ├── custom-field-template-de_DE.mo │ ├── custom-field-template-de_DE.po │ ├── custom-field-template-es_ES.mo │ ├── custom-field-template-es_ES.po │ ├── custom-field-template-fa_IR.mo │ ├── custom-field-template-fa_IR.po │ ├── custom-field-template-fr_FR.mo │ ├── custom-field-template-fr_FR.po │ ├── custom-field-template-hu_HU.mo │ ├── custom-field-template-hu_HU.po │ ├── custom-field-template-id_ID.mo │ ├── custom-field-template-id_ID.po │ ├── custom-field-template-it_IT.mo │ ├── custom-field-template-it_IT.po │ ├── custom-field-template-ja.mo │ ├── custom-field-template-ja.po │ ├── custom-field-template-nl_NL.mo │ ├── custom-field-template-nl_NL.po │ ├── custom-field-template-pl_PL.mo │ ├── custom-field-template-pl_PL.po │ ├── custom-field-template-pt_BR.mo │ ├── custom-field-template-pt_BR.po │ ├── custom-field-template-ru_RU.mo │ ├── custom-field-template-ru_RU.po │ ├── custom-field-template-sv_SE.mo │ ├── custom-field-template-sv_SE.po │ ├── custom-field-template-tr_TR.mo │ ├── custom-field-template-tr_TR.po │ ├── custom-field-template-uk_UA.mo │ ├── custom-field-template-uk_UA.po │ ├── custom-field-template-uz_UZ.mo │ ├── custom-field-template-uz_UZ.po │ ├── custom-field-template-zh_CN.mo │ ├── custom-field-template-zh_CN.po │ ├── custom-field-template.php │ ├── custom-field-template.pot │ ├── js │ │ ├── additional-methods.js │ │ ├── calendar.png │ │ ├── cmswp.jpg │ │ ├── date.js │ │ ├── datePicker.css │ │ ├── grippie.png │ │ ├── jquery.bgiframe.js │ │ ├── jquery.datePicker.js │ │ ├── jquery.textarearesizer.js │ │ ├── jquery.validate.js │ │ ├── messages_ca.js │ │ ├── messages_de.js │ │ ├── messages_es.js │ │ ├── messages_fr.js │ │ ├── messages_hu.js │ │ ├── messages_it.js │ │ ├── messages_ja.js │ │ ├── messages_nl.js │ │ ├── messages_ru.js │ │ └── messages_tr.js │ ├── readme.txt │ ├── screenshot-1.png │ └── screenshot-2.png ├── external-featured-image │ ├── includes │ │ ├── admin │ │ │ ├── edit-post.php │ │ │ └── nelio-content-campaign.php │ │ └── nelio-efi-main.php │ ├── main.php │ └── readme.txt ├── gravatar-china │ ├── gravatar.php │ ├── lang │ │ ├── default.mo │ │ ├── default.po │ │ ├── wp_avatar_cn-zh_CN.mo │ │ └── wp_avatar_cn-zh_CN.po │ ├── readme.txt │ └── screenshot-1.png ├── hello.php ├── index.php ├── infinite-scroll │ ├── behaviors │ │ ├── cufon.js │ │ ├── local.js │ │ ├── manual-trigger.js │ │ ├── masonry-isotope.js │ │ └── sausage.js │ ├── img │ │ └── ajax-loader.gif │ ├── includes │ │ ├── admin.php │ │ ├── options.php │ │ ├── presets.php │ │ └── submit.php │ ├── infinite-scroll.php │ ├── js │ │ ├── admin │ │ │ ├── infinite-scoll.js │ │ │ └── infinite-scroll.dev.js │ │ └── front-end │ │ │ ├── jquery.infinitescroll.dev.js │ │ │ └── jquery.infinitescroll.js │ ├── languages │ │ └── infinite-scroll.pot │ ├── license.html │ ├── readme.md │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ └── templates │ │ ├── footer.php │ │ ├── manage-presets.php │ │ ├── options.php │ │ ├── preset-prompt.php │ │ ├── submit-prompt.php │ │ └── submit.php ├── syntaxhighlighter │ ├── localization │ │ ├── _syntaxhighlighter-template.po │ │ ├── syntaxhighlighter-da_DK.mo │ │ ├── syntaxhighlighter-da_DK.po │ │ ├── syntaxhighlighter-de_DE.mo │ │ ├── syntaxhighlighter-de_DE.po │ │ ├── syntaxhighlighter-it_IT.mo │ │ ├── syntaxhighlighter-it_IT.po │ │ ├── syntaxhighlighter-ja.mo │ │ ├── syntaxhighlighter-ja.po │ │ ├── syntaxhighlighter-tr_TR.mo │ │ ├── syntaxhighlighter-tr_TR.po │ │ ├── syntaxhighlighter-uk.mo │ │ ├── syntaxhighlighter-uk.po │ │ ├── syntaxhighlighter-zh_CN.mo │ │ └── syntaxhighlighter-zh_CN.po │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── syntaxhighlighter.js │ ├── syntaxhighlighter.php │ ├── syntaxhighlighter2 │ │ ├── LGPLv3.txt │ │ ├── scripts │ │ │ ├── clipboard.swf │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMidnight.css │ │ │ ├── shThemeRDark.css │ │ │ └── wrapping.png │ ├── syntaxhighlighter3 │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ ├── syntaxhighlighter_mce-4.js │ ├── syntaxhighlighter_mce.js │ └── third-party-brushes │ │ ├── _readme.txt │ │ ├── shBrushClojure.js │ │ ├── shBrushFSharp.js │ │ ├── shBrushLatex.js │ │ ├── shBrushMatlabKey.js │ │ ├── shBrushObjC.js │ │ └── shBrushR.js └── wp-postviews │ ├── postviews-cache.js │ ├── postviews-options.php │ ├── readme.txt │ ├── uninstall.php │ ├── wp-postviews.php │ └── wp-postviews.pot └── themes ├── index.php └── mygalgame ├── 404.php ├── README.MD ├── author.php ├── category.php ├── comments.php ├── common.php ├── favicon.ico ├── footer.php ├── functions.php ├── header.php ├── includes ├── admin │ ├── custom-login.php │ └── custom-user.php ├── comment-ajax.php ├── post-format │ ├── content.php │ └── single.php ├── shortcodes.php ├── theme-functions.php ├── theme-options.php └── widgets │ ├── widgets.php │ ├── zan-widget-ad.php │ ├── zan-widget-custom.php │ ├── zan-widget-hotest-posts.php │ ├── zan-widget-latest-comments.php │ ├── zan-widget-latest-posts.php │ ├── zan-widget-link.php │ ├── zan-widget-login.php │ ├── zan-widget-rand-posts.php │ ├── zan-widget-search.php │ └── zan-widget-sets.php ├── index.php ├── page-archives.php ├── page-message.php ├── page-nosidebar.php ├── page.php ├── screenshot.jpg ├── search.php ├── sidebar.php ├── single.php ├── style.css ├── tag.php └── ui ├── audio ├── oni.mp3 └── onj.mp3 ├── css ├── admin.css ├── bootstrapUI.css ├── core.css ├── custom.css ├── flat │ ├── red.css │ ├── red.png │ └── red@2x.png ├── myblog.css ├── options.css └── variables.css ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images ├── ad │ └── ad775.jpg ├── ad775.jpg ├── arrow.png ├── arrow_hover.png ├── bg.jpg ├── bg4.gif ├── grey.gif ├── logo.png ├── menu │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg ├── mouse1.cur ├── mouse2.cur ├── mouse3.cur ├── rpic.png ├── smilies │ ├── huaji.png │ ├── i_f01.png │ ├── i_f02.png │ ├── i_f03.png │ ├── i_f04.png │ ├── i_f05.png │ ├── i_f06.png │ ├── i_f07.png │ ├── i_f08.png │ ├── i_f09.png │ ├── i_f10.png │ ├── i_f11.png │ ├── i_f12.png │ ├── i_f13.png │ ├── i_f14.png │ ├── i_f15.png │ ├── i_f16.png │ ├── i_f17.png │ ├── i_f18.png │ ├── i_f19.png │ ├── i_f20.png │ ├── i_f21.png │ ├── i_f22.png │ ├── i_f23.png │ ├── i_f24.png │ ├── i_f25.png │ ├── i_f26.png │ ├── i_f27.png │ ├── i_f28.png │ ├── i_f29.png │ ├── i_f30.png │ ├── i_f31.png │ ├── i_f32.png │ ├── i_f33.png │ ├── i_f34.png │ ├── i_f35.png │ ├── i_f36.png │ ├── i_f37.png │ ├── i_f38.png │ ├── i_f39.png │ ├── i_f40.png │ ├── i_f41.png │ ├── i_f42.png │ ├── i_f43.png │ ├── i_f44.png │ ├── i_f45.png │ ├── i_f46.png │ ├── i_f47.png │ ├── i_f48.png │ ├── i_f49.png │ └── i_f50.png └── user_icon.jpg └── js ├── bootstrap.js ├── bootstrap.min.js ├── custom.js ├── fade.js ├── highslide.js ├── html5shiv.js ├── jquery-migrate.min.js ├── jquery.icheck.min.js ├── jquery.lazyload.min.js ├── jquery.min.js ├── jquery.validate.js ├── modernizr.js ├── myblog.js ├── myblog_bd.js ├── myblog_min.js └── respond.min.js /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/mygalgame.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013 yeahzan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mygalgame 2 | ### 基于ZanBlog对Mygalgame的重构计划 3 | 声明: 4 | 5 | 1. 此rep由[ZanBlog V2](https://github.com/yeahzan/zanblog)更改而来,为个人更改,与galgame网站无任何关系 6 | 7 | 2. 目前功能虽然已大部分完成,但还有待进一步测试与优化中... 8 | 9 | 3. 使用主题时请根据自己实际情况自行更改 10 | 11 | 使用 12 | * [安装](#安装) 13 | * [相关](#相关) 14 | * [使用问题](https://github.com/Beats0/mygalgame/blob/master/Usage.md) 15 | * [License](#License) 16 | 17 | #### 安装 18 | 下载主题,将 `plugins` 和 `themes` 放在 `wordpress\wp-content\` 里面 19 | 20 | ##### themes 21 | 登陆WordPress后台,选择 `外观` —— `主题` ,找到 `mygalgame` 主题,选择启用,至此,mygalgame主题安装成功。 22 | 23 | ##### plugins 24 | ``` 25 | plugins 26 | ├─akismet 留言评论插件,必需,可更新 27 | ├─auto-highslide 图片插件,必需,不可更新 28 | ├─breadcrumb-navxt 面包屑导航,必需,可更新 29 | ├─custom-field-template 自定义字段,必需,可更新 30 | ├─external-featured-image 特色图片外链插件,必需,可更新 31 | ├─gravatar-china 头像防墙补丁,非必需,不可更新 32 | ├─infinite-scroll 文章异步加载,必需,不可更新 33 | ├─syntaxhighlighter 代码高亮,非必需,可更新 34 | ├─wp mail smtp 设置SMTP,非必需,可更新,此插件用于需要登录注册功能的网站,设置smtp从而用指定的邮箱来接收登录注册以及评论的邮件。 35 | └─wp-postviews 浏览数统计,必需,可更新 36 | ``` 37 | ------------------------------------------------------------------ 38 | 39 | 40 | #### 相关 41 | [ZanBlog官网](http://www.yeahzan.com/zanblog/) 42 | 43 | [GitHub zanblog](https://github.com/yeahzan/zanblog) 44 | 45 | [GitHub hexo-theme-gal](https://github.com/ZEROKISEKI/hexo-theme-gal) 46 | 47 | ------------------------------------------------------------------ 48 | 49 | #### License 50 | 51 | The MIT License (MIT) 52 | 53 | Copyright (c) 2013 yeahzan 54 | 55 | Permission is hereby granted, free of charge, to any person obtaining a copy 56 | of this software and associated documentation files (the "Software"), to deal 57 | in the Software without restriction, including without limitation the rights 58 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 59 | copies of the Software, and to permit persons to whom the Software is 60 | furnished to do so, subject to the following conditions: 61 | 62 | The above copyright notice and this permission notice shall be included in all 63 | copies or substantial portions of the Software. 64 | 65 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 66 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 67 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 68 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 69 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 70 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 71 | SOFTWARE. -------------------------------------------------------------------------------- /plugins/akismet/.htaccess: -------------------------------------------------------------------------------- 1 | # Only allow direct access to specific Web-available files. 2 | 3 | # Apache 2.2 4 | 5 | Order Deny,Allow 6 | Deny from all 7 | 8 | 9 | # Apache 2.4 10 | 11 | Require all denied 12 | 13 | 14 | # Akismet CSS and JS 15 | 16 | 17 | Allow from all 18 | 19 | 20 | 21 | Require all granted 22 | 23 | 24 | 25 | # Akismet images 26 | 27 | 28 | Allow from all 29 | 30 | 31 | 32 | Require all granted 33 | 34 | -------------------------------------------------------------------------------- /plugins/akismet/_inc/form.js: -------------------------------------------------------------------------------- 1 | var ak_js = document.getElementById( "ak_js" ); 2 | 3 | if ( ! ak_js ) { 4 | ak_js = document.createElement( 'input' ); 5 | ak_js.setAttribute( 'id', 'ak_js' ); 6 | ak_js.setAttribute( 'name', 'ak_js' ); 7 | ak_js.setAttribute( 'type', 'hidden' ); 8 | } 9 | else { 10 | ak_js.parentNode.removeChild( ak_js ); 11 | } 12 | 13 | ak_js.setAttribute( 'value', ( new Date() ).getTime() ); 14 | 15 | var commentForm = document.getElementById( 'commentform' ); 16 | 17 | if ( commentForm ) { 18 | commentForm.appendChild( ak_js ); 19 | } 20 | else { 21 | var replyRowContainer = document.getElementById( 'replyrow' ); 22 | 23 | if ( replyRowContainer ) { 24 | var children = replyRowContainer.getElementsByTagName( 'td' ); 25 | 26 | if ( children.length > 0 ) { 27 | children[0].appendChild( ak_js ); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /plugins/akismet/_inc/img/logo-full-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/akismet/_inc/img/logo-full-2x.png -------------------------------------------------------------------------------- /plugins/akismet/akismet.php: -------------------------------------------------------------------------------- 1 | protect your blog from spam. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. 9 | Version: 4.0.2 10 | Author: Automattic 11 | Author URI: https://automattic.com/wordpress-plugins/ 12 | License: GPLv2 or later 13 | Text Domain: akismet 14 | */ 15 | 16 | /* 17 | This program is free software; you can redistribute it and/or 18 | modify it under the terms of the GNU General Public License 19 | as published by the Free Software Foundation; either version 2 20 | of the License, or (at your option) any later version. 21 | 22 | This program is distributed in the hope that it will be useful, 23 | but WITHOUT ANY WARRANTY; without even the implied warranty of 24 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 25 | GNU General Public License for more details. 26 | 27 | You should have received a copy of the GNU General Public License 28 | along with this program; if not, write to the Free Software 29 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 30 | 31 | Copyright 2005-2015 Automattic, Inc. 32 | */ 33 | 34 | // Make sure we don't expose any info if called directly 35 | if ( !function_exists( 'add_action' ) ) { 36 | echo 'Hi there! I\'m just a plugin, not much I can do when called directly.'; 37 | exit; 38 | } 39 | 40 | define( 'AKISMET_VERSION', '4.0.2' ); 41 | define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' ); 42 | define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 43 | define( 'AKISMET_DELETE_LIMIT', 100000 ); 44 | 45 | register_activation_hook( __FILE__, array( 'Akismet', 'plugin_activation' ) ); 46 | register_deactivation_hook( __FILE__, array( 'Akismet', 'plugin_deactivation' ) ); 47 | 48 | require_once( AKISMET__PLUGIN_DIR . 'class.akismet.php' ); 49 | require_once( AKISMET__PLUGIN_DIR . 'class.akismet-widget.php' ); 50 | require_once( AKISMET__PLUGIN_DIR . 'class.akismet-rest-api.php' ); 51 | 52 | add_action( 'init', array( 'Akismet', 'init' ) ); 53 | 54 | add_action( 'rest_api_init', array( 'Akismet_REST_API', 'init' ) ); 55 | 56 | if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { 57 | require_once( AKISMET__PLUGIN_DIR . 'class.akismet-admin.php' ); 58 | add_action( 'init', array( 'Akismet_Admin', 'init' ) ); 59 | } 60 | 61 | //add wrapper class around deprecated akismet functions that are referenced elsewhere 62 | require_once( AKISMET__PLUGIN_DIR . 'wrapper.php' ); 63 | 64 | if ( defined( 'WP_CLI' ) && WP_CLI ) { 65 | require_once( AKISMET__PLUGIN_DIR . 'class.akismet-cli.php' ); 66 | } -------------------------------------------------------------------------------- /plugins/akismet/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/akismet/views/stats.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 | 7 |
8 |
9 |
10 | 11 |
-------------------------------------------------------------------------------- /plugins/auto-highslide/auto-highslide.php: -------------------------------------------------------------------------------- 1 | HighSlide4WP with Add Highslide. 6 | Author: Showfom 7 | Author URI: http://showfom.com 8 | Version: 1.0 9 | Put in /wp-content/plugins/ of your Wordpress installation 10 | */ 11 | /* Add HighSlide Image Code */ 12 | add_filter('the_content', 'addhighslideclass_replace'); 13 | function addhighslideclass_replace ($content) 14 | { global $post; 15 | $pattern = "/]*).(bmp|gif|jpeg|jpg|png)('|\")(.*?)>(.*?)<\/a>/i"; 16 | $replacement = '$7'; 17 | $content = preg_replace($pattern, $replacement, $content); 18 | return $content; 19 | } 20 | /* Add HighSlide */ 21 | function highslide_head() { 22 | print(' 23 | 24 | 25 | 51 | '); 52 | } 53 | add_action('wp_head', 'highslide_head'); 54 | ?> -------------------------------------------------------------------------------- /plugins/auto-highslide/error_log: -------------------------------------------------------------------------------- 1 | [17-May-2011 09:35:29] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 2 | [17-May-2011 09:35:44] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 3 | [17-May-2011 09:35:51] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 4 | [17-May-2011 23:50:27] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 5 | [17-May-2011 23:51:28] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 6 | [17-May-2011 23:51:41] PHP Fatal error: Call to undefined function add_filter() in /home/w321418/public_html/blog/wp-content/plugins/auto-highslide/auto-highslide.php on line 12 7 | -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/close.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar-black-border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar-black-border.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar-white-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar-white-small.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar-white.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar2.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar3.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar4-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar4-hover.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/controlbar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/controlbar4.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/fullexpand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/fullexpand.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/geckodimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/geckodimmer.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/icon.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/loader.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/loader.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/loader.white.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/beveled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/beveled.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/drop-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/drop-shadow.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/glossy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/glossy-dark.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/outer-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/outer-glow.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/rounded-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/rounded-black.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/outlines/rounded-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/outlines/rounded-white.png -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/resize.gif -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/tem/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/tem/zoomin.cur -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/tem/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/tem/zoomout.cur -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/zoomin.cur -------------------------------------------------------------------------------- /plugins/auto-highslide/highslide/graphics/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beats0/mygalgame/4c6c379c0dc8a1e5ab2376c1c681a8bdd241147d/plugins/auto-highslide/highslide/graphics/zoomout.cur -------------------------------------------------------------------------------- /plugins/auto-highslide/readme.txt: -------------------------------------------------------------------------------- 1 | === Plugin Name === 2 | Contributors: Showfom 3 | Donate link: http://showfom.com/auto-hishslide-wordpress-plugin/ 4 | Tags: highslide, images, auto 5 | Requires at least: 2.0.2 6 | Tested up to: 2.8 7 | Stable tag: trunk 8 | 9 | This plugin automatically add HighSlide Image Effect in your blog and You don't Need To Change Anything! 10 | 11 | == Description == 12 | 1.This plugin automatically add HighSlide Image Effect in your blog and You don't Need To Change Anything! 13 | 14 | 2.You don't need to install HighSlide4WP if you only want to use the images effect of HighSlide. 15 | 16 | 3.If you install HighSlide4WP, just uninstall it. 17 | 18 | 4.If you want to use other effect of HighSlide , please use HighSlide4WP with Add Highslide. 19 | 20 | == Installation == 21 | 22 | This section describes how to install the plugin and get it working. 23 | 24 | e.g. 25 | 26 | 1. Upload `auto-highslide` folder to the `/wp-content/plugins/` directory 27 | 2. Activate the plugin through the 'Plugins' menu in WordPress 28 | 29 | 30 | 31 | == Frequently Asked Questions == 32 | 33 | = How to know me = 34 | 35 | Just contact me. 36 | 37 | 38 | == Screenshots == 39 | 40 | 1. `/trunk/screenshot-1.png` -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/block_direct_access.php: -------------------------------------------------------------------------------- 1 | plugin_basename); 38 | } 39 | 40 | /** 41 | * constructor 42 | * 43 | * @param array $options class options 44 | * plugin => 45 | */ 46 | public function __construct() 47 | { 48 | $this->_uninstall_result = $this->uninstall(); 49 | } 50 | 51 | /** 52 | * Result Getter 53 | * 54 | * @return bool wether or not uninstall did run successfull. 55 | */ 56 | public function get_result() 57 | { 58 | return $this->_uninstall_result; 59 | } 60 | 61 | public function is_installed() 62 | { 63 | return ((get_option($this->unique_prefix . '_options') !== false) 64 | && (get_option($this->unique_prefix . '_options_bk') !== false) 65 | && (get_option($this->unique_prefix . '_version') !== false) 66 | && (get_site_option($this->unique_prefix . '_options') !== false) 67 | && (get_site_option($this->unique_prefix . '_options_bk') !== false) 68 | && (get_site_option($this->unique_prefix . '_version') !== false)); 69 | } 70 | } /// class bcn_uninstaller_abstract -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_engroups.js: -------------------------------------------------------------------------------- 1 | jQuery(function() 2 | { 3 | jQuery(".adminkit-engroup input:checkbox.adminkit-enset-ctrl").each(mtekk_admin_enable_group); 4 | jQuery("input:checkbox.adminkit-enset-ctrl").each(mtekk_admin_enable_set); 5 | }); 6 | function mtekk_admin_enable_group(){ 7 | var setting = this; 8 | jQuery(this).parents(".adminkit-engroup").find("input, textarea").each(function(){ 9 | if(this != setting){ 10 | if(jQuery(setting).prop("checked")){ 11 | jQuery(this).prop("disabled", false); 12 | jQuery(this).removeClass("disabled"); 13 | } 14 | else{ 15 | jQuery(this).prop("disabled", true); 16 | jQuery(this).addClass("disabled"); 17 | } 18 | } 19 | }); 20 | } 21 | function mtekk_admin_enable_set(){ 22 | var setting = this; 23 | jQuery(this).parents(".adminkit-enset-top").find("input.adminkit-enset, textarea.adminkit-enset").each(function(){ 24 | if(this != setting){ 25 | if(jQuery(setting).prop("checked")){ 26 | jQuery(this).prop("disabled", false); 27 | jQuery(this).removeClass("disabled"); 28 | } 29 | else{ 30 | jQuery(this).prop("disabled", true); 31 | jQuery(this).addClass("disabled"); 32 | } 33 | } 34 | }); 35 | } 36 | jQuery(".adminkit-engroup input:checkbox.adminkit-enset-ctrl").change(mtekk_admin_enable_group); 37 | jQuery("input:checkbox.adminkit-enset-ctrl").change(mtekk_admin_enable_set); -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_engroups.min.js: -------------------------------------------------------------------------------- 1 | jQuery(function(){jQuery(".adminkit-engroup input:checkbox.adminkit-enset-ctrl").each(mtekk_admin_enable_group);jQuery("input:checkbox.adminkit-enset-ctrl").each(mtekk_admin_enable_set)});function mtekk_admin_enable_group(){var a=this;jQuery(this).parents(".adminkit-engroup").find("input, textarea").each(function(){if(this!=a){if(jQuery(a).prop("checked")){jQuery(this).prop("disabled",false);jQuery(this).removeClass("disabled")}else{jQuery(this).prop("disabled",true);jQuery(this).addClass("disabled")}}})}function mtekk_admin_enable_set(){var a=this;jQuery(this).parents(".adminkit-enset-top").find("input.adminkit-enset, textarea.adminkit-enset").each(function(){if(this!=a){if(jQuery(a).prop("checked")){jQuery(this).prop("disabled",false);jQuery(this).removeClass("disabled")}else{jQuery(this).prop("disabled",true);jQuery(this).addClass("disabled")}}})}jQuery(".adminkit-engroup input:checkbox.adminkit-enset-ctrl").change(mtekk_admin_enable_group);jQuery("input:checkbox.adminkit-enset-ctrl").change(mtekk_admin_enable_set); -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_messages.js: -------------------------------------------------------------------------------- 1 | jQuery(function() 2 | { 3 | jQuery("div.notice button.notice-dismiss").click(function (event){ 4 | data = { 5 | 'action': 'mtekk_admin_message_dismiss', 6 | 'uid': jQuery(this).parent().children("meta[property='uid']").attr("content"), 7 | 'nonce': jQuery(this).parent().children("meta[property='nonce']").attr("content") 8 | }; 9 | jQuery.post(ajaxurl, data); 10 | }); 11 | }); -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_messages.min.js: -------------------------------------------------------------------------------- 1 | jQuery(function() 2 | { 3 | jQuery("div.notice button.notice-dismiss").click(function (event){ 4 | data = { 5 | 'action': 'mtekk_admin_message_dismiss', 6 | 'uid': jQuery(this).parent().children("meta[property='uid']").attr("content"), 7 | 'nonce': jQuery(this).parent().children("meta[property='nonce']").attr("content") 8 | }; 9 | jQuery.post(ajaxurl, data); 10 | }); 11 | }); -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_tabs.css: -------------------------------------------------------------------------------- 1 | #hasadmintabs ul.ui-tabs-nav{float: left; width: 100%; border-bottom:1px solid #ccc; font-size:12px; height:27px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:14px 0 0; overflow:visible;padding:0 0 0 6px;} 2 | #hasadmintabs ul.ui-tabs-nav li{display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;} 3 | #hasadmintabs ul.ui-tabs-nav li a{border-bottom:1px solid #ccc; display:block; color:#464646; float:left; line-height:25px; padding:1px 13px 0; position:relative; text-decoration:none;margin:0 4px 0 0;} 4 | #hasadmintabs ul.ui-tabs-nav li.ui-tabs-active a{background:none;border:1px solid #ccc; border-bottom-color:#f1f1f1; height: 25px; color:#464646; font-weight:normal; padding:1px 13px 0;color:#000;} 5 | #hasadmintabs ul.ui-tabs-nav li.ui-tabs-active a:hover, #hasadmintabs ul.ui-tabs-nav a:hover{outline-color:-moz-use-text-color; outline-style:none; outline-width:medium;} 6 | #hasadmintabs ul.ui-tabs-nav li a:focus, #hasadmintabs ul.ui-tabs-nav li a:active{outline: none;} 7 | #hasadmintabs ul.ui-tabs-nav span{font-size: 12px; font-weight: bolder;} 8 | #screen-options-wrap p.submit {margin:0; padding:0;} -------------------------------------------------------------------------------- /plugins/breadcrumb-navxt/includes/mtekk_adminkit_tabs.js: -------------------------------------------------------------------------------- 1 | jQuery(function() 2 | { 3 | mtekk_admin_tabulator_init(); 4 | }); 5 | /** 6 | * Tabulator Bootup 7 | */ 8 | function mtekk_admin_tabulator_init(){ 9 | if(!jQuery("#hasadmintabs").length) return; 10 | /* init markup for tabs */ 11 | jQuery('#hasadmintabs').prepend('