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 |
|---|---|---|---|---|---|---|---|---|
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/Adapter.php | src/Uv/Adapter.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\EventLoop\Loop;
use React\Filesystem\AdapterInterface;
use React\Filesystem\ModeTypeDetector;
use React\Filesystem\PollInterface;
use React\Filesystem\Stat;
use React\Promise\PromiseInterface;
use React\Filesystem\Node;
final class Adapter... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/Poll.php | src/Uv/Poll.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\EventLoop\TimerInterface;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\PollInterface;
use React\Filesystem\Stat;
use React\Promise\Promise;
use React\Promise\PromiseInterface;
use RuntimeException;
use React\EventLoop\LoopI... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/StatTrait.php | src/Uv/StatTrait.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\NodeNotFound;
use React\Filesystem\Stat;
use React\Promise\Promise;
use React\Promise\PromiseInterface;
use RuntimeException;
use React\EventLoop\LoopInterface;
use React\Filesystem\Node;
... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/NotExist.php | src/Uv/NotExist.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node;
use React\Filesystem\PollInterface;
use React\Promise\CancellablePromiseInterface;
use React\Promise\Deferred;
use React\Promise\Promise;
use React\Promise\PromiseInterface;
use functi... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/Directory.php | src/Uv/Directory.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node;
use React\Filesystem\PollInterface;
use React\Promise\CancellablePromiseInterface;
use React\Promise\Deferred;
use React\Promise\PromiseInterface;
use function React\Promise\all;
use f... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/src/Uv/File.php | src/Uv/File.php | <?php
namespace React\Filesystem\Uv;
use React\EventLoop\ExtUvLoop;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\PollInterface;
use React\Promise\Promise;
use React\Promise\PromiseInterface;
use UV;
final class File implements FileInterface
{
use StatTrait;
private ExtUvLoop $loop;
priv... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/NotExistTest.php | tests/NotExistTest.php | <?php
namespace React\Tests\Filesystem;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node\NotExistInterface;
use React\Promise\PromiseInterface;
use function React\Async\await;
final class NotExistTest extends AbstractFilesystemTestCase
{
/**
* @test
*
* @dataProvider provideFilesys... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/FileTest.php | tests/FileTest.php | <?php
namespace React\Tests\Filesystem;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\Node\NotExistInterface;
use React\Filesystem\Stat;
use React\Promise\Promise;
use React\Promise\PromiseInterface;
use function React\Async\await;
use function React\Promise\all;... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/FactoryTest.php | tests/FactoryTest.php | <?php
namespace React\Tests\Filesystem;
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
use function React\Async\await;
final class FactoryTest extends AbstractFilesystemTestCase
{
/**
* @test
*/
public function factory(): void
{
$node = await(Factory::create()->d... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/AbstractFilesystemTestCase.php | tests/AbstractFilesystemTestCase.php | <?php
namespace React\Tests\Filesystem;
use PHPUnit\Framework\TestCase;
use React\EventLoop;
use React\EventLoop\ExtUvLoop;
use React\EventLoop\LoopInterface;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Eio;
use React\Filesystem\Factory;
use React\Filesystem\Fallback;
use React\Filesystem\Uv;
abstrac... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/DirectoryTest.php | tests/DirectoryTest.php | <?php
namespace React\Tests\Filesystem;
use React\EventLoop\LoopInterface;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node\DirectoryInterface;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\Stat;
use React\Promise\PromiseInterface;
use function React\Async\await;
final class Directory... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/tests/FilesystemTest.php | tests/FilesystemTest.php | <?php
namespace React\Tests\Filesystem;
use React\Filesystem\AdapterInterface;
use React\Filesystem\Node\DirectoryInterface;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\Node\NotExistInterface;
use function React\Async\await;
final class FilesystemTest extends AbstractFilesystemTestCase
{
/**
... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_tail.php | examples/file_tail.php | <?php
use React\EventLoop\Loop;
use React\EventLoop\TimerInterface;
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
require 'vendor/autoload.php';
$filename = tempnam(sys_get_temp_dir(), 'reactphp-filesystem-file-tail-example-');
$offset = 0;
$file = Factory::create()->detect($filename)->then(... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_read.php | examples/file_read.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
require 'vendor/autoload.php';
Factory::create()->detect(__FILE__)->then(function (FileInterface $file) {
return $file->getContents();
})->then(static function (string $contents): void {
echo $contents;
})->done();
| php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/directory_nested_listing.php | examples/directory_nested_listing.php | <?php
use React\EventLoop\Loop;
use React\Filesystem\Factory;
use React\Filesystem\Node\DirectoryInterface;
use React\Filesystem\Node\NodeInterface;
require 'vendor/autoload.php';
$filesystem = Factory::create();
$ls = static function (string $dir) use (&$ls, $filesystem): void {
$filesystem->detect($dir)->then... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_write.php | examples/file_write.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
require 'vendor/autoload.php';
Factory::create()->detect(__FILE__ . '.copy')->then(static function (FileInterface $file) {
return $file->putContents(file_get_contents(__FILE__));
})->then(static function ($result): void {
var_export... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_stat.php | examples/file_stat.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\Stat;
require 'vendor/autoload.php';
Factory::create()->detect(__FILE__)->then(function (FileInterface $file) {
return $file->stat();
})->then(static function (Stat $stat): void {
echo $stat->path(), ': ', get_c... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_create_new.php | examples/file_create_new.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
use React\Filesystem\Node\NotExistInterface;
use React\Filesystem\Stat;
use React\Promise\PromiseInterface;
require 'vendor/autoload.php';
Factory::create()->detect(sys_get_temp_dir() . __FILE__ . time() . time() . time() . time() . time() ... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/node_doesnt_exist.php | examples/node_doesnt_exist.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\NodeInterface;
require 'vendor/autoload.php';
Factory::create()->detect(__FILE__ . time() . time() . time() . time() . time() . time())->then(static function (NodeInterface $node): void {
echo get_class($node);
})->done();
| php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/directory_listing.php | examples/directory_listing.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\DirectoryInterface;
use React\Filesystem\Node\NodeInterface;
require 'vendor/autoload.php';
Factory::create()->detect(__DIR__)->then(function (DirectoryInterface $directory) {
return $directory->ls();
})->then(static function ($nodes) {
foreach ($... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
reactphp/filesystem | https://github.com/reactphp/filesystem/blob/385933fdf47ad2db195c859523a8d854792dbad2/examples/file_unlink.php | examples/file_unlink.php | <?php
use React\Filesystem\Factory;
use React\Filesystem\Node\FileInterface;
require 'vendor/autoload.php';
$filename = tempnam(sys_get_temp_dir(), 'reactphp-filesystem-file-tail-example-');
file_put_contents($filename, file_get_contents(__FILE__));
Factory::create()->detect($filename)->then(function (FileInterface ... | php | MIT | 385933fdf47ad2db195c859523a8d854792dbad2 | 2026-01-05T04:49:50.958304Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/autoload.php | src/Instagram/autoload.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Instagram.php | src/Instagram/Instagram.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Container/Container.php | src/Instagram/Container/Container.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/FacebookLogin/FacebookLogin.php | src/Instagram/FacebookLogin/FacebookLogin.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/ResponseTypes.php | src/Instagram/Request/ResponseTypes.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Curl.php | src/Instagram/Request/Curl.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Request.php | src/Instagram/Request/Request.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/GrantTypes.php | src/Instagram/Request/GrantTypes.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/MediaTypes.php | src/Instagram/Request/MediaTypes.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Fields.php | src/Instagram/Request/Fields.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Metric.php | src/Instagram/Request/Metric.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Params.php | src/Instagram/Request/Params.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Scope.php | src/Instagram/Request/Scope.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Request/Period.php | src/Instagram/Request/Period.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Hashtag/TopMedia.php | src/Instagram/Hashtag/TopMedia.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Hashtag/Hashtag.php | src/Instagram/Hashtag/Hashtag.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Hashtag/RecentMedia.php | src/Instagram/Hashtag/RecentMedia.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/Insights.php | src/Instagram/User/Insights.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/Tags.php | src/Instagram/User/Tags.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/Stories.php | src/Instagram/User/Stories.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/Mentions.php | src/Instagram/User/Mentions.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/BusinessDiscovery.php | src/Instagram/User/BusinessDiscovery.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/User.php | src/Instagram/User/User.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/MentionedMedia.php | src/Instagram/User/MentionedMedia.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/MentionedComment.php | src/Instagram/User/MentionedComment.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/RecentlySearchedHashtags.php | src/Instagram/User/RecentlySearchedHashtags.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/MediaPublish.php | src/Instagram/User/MediaPublish.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/ContentPublishingLimit.php | src/Instagram/User/ContentPublishingLimit.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/LiveMedia.php | src/Instagram/User/LiveMedia.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/User/Media.php | src/Instagram/User/Media.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Comment/Replies.php | src/Instagram/Comment/Replies.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Comment/Comment.php | src/Instagram/Comment/Comment.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Page/Page.php | src/Instagram/Page/Page.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/AccessToken/AccessToken.php | src/Instagram/AccessToken/AccessToken.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/HashtagSearch/HashtagSearch.php | src/Instagram/HashtagSearch/HashtagSearch.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Media/Insights.php | src/Instagram/Media/Insights.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Media/Children.php | src/Instagram/Media/Children.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Media/Comments.php | src/Instagram/Media/Comments.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
jstolpe/instagram-graph-api-php-sdk | https://github.com/jstolpe/instagram-graph-api-php-sdk/blob/2a243c65d69fec9f64a4c36cbd214513609441c6/src/Instagram/Media/Media.php | src/Instagram/Media/Media.php | <?php
/**
* Copyright 2022 Justin Stolpe.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, ... | php | MIT | 2a243c65d69fec9f64a4c36cbd214513609441c6 | 2026-01-05T04:50:12.911381Z | false |
vinkla/headache | https://github.com/vinkla/headache/blob/92406487deae772dcfb020f52e6bc092e59a994e/headache.php | headache.php | <?php
/**
* Copyright (c) Vincent Klaiber
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @see https://github.com/vinkla/headache
*/
/*
* Plugin Name: Headache
* Description: An easy-to-swallow painkiller plugin for WordPress.... | php | MIT | 92406487deae772dcfb020f52e6bc092e59a994e | 2026-01-05T04:50:22.376521Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/District.php | src/ipip/db/District.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class District
{
public $reader = NULL;
public function __construct($db)
{
$this->reader = new Reader($db);
}
public function find($ip, $language)
{
... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/BaseStation.php | src/ipip/db/BaseStation.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class BaseStation
{
public $reader = NULL;
public function __construct($db)
{
$this->reader = new Reader($db);
}
public function find($ip, $language)
{
... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/Reader.php | src/ipip/db/Reader.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class Reader
{
const IPV4 = 1;
const IPV6 = 2;
private $file = NULL;
private $fileSize = 0;
private $nodeCount = 0;
private $nodeOffset = 0;
private $m... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/IDCInfo.php | src/ipip/db/IDCInfo.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class IDCInfo
{
public $country_name = '';
public $region_name = '';
public $city_name = '';
public $owner_domain = '';
public $isp_domain = '';
public $idc ... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/BaseStationInfo.php | src/ipip/db/BaseStationInfo.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class BaseStationInfo
{
public $country_name = '';
public $region_name = '';
public $city_name = '';
public $owner_domain = '';
public $isp_domain = '';
public ... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/IDC.php | src/ipip/db/IDC.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class IDC
{
public $reader = NULL;
public function __construct($db)
{
$this->reader = new Reader($db);
}
public function find($ip, $language)
{
retu... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/CityInfo.php | src/ipip/db/CityInfo.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class CityInfo
{
public $country_name = '';
public $region_name = '';
public $city_name = '';
public $owner_domain = '';
public $isp_domain = ''... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/City.php | src/ipip/db/City.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class City
{
public $reader = NULL;
public function __construct($db)
{
$this->reader = new Reader($db);
}
public function find($ip, $language)
{
ret... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
ipipdotnet/ipdb-php | https://github.com/ipipdotnet/ipdb-php/blob/9be2e284369c34267487487f4492de26e20a7735/src/ipip/db/DistrictInfo.php | src/ipip/db/DistrictInfo.php | <?php
/**
* @site https://www.ipip.net
* @desc Parse IP library in ipdb format
* @copyright IPIP.net
*/
namespace ipip\db;
class DistrictInfo
{
public $country_name = '';
public $region_name = '';
public $city_name = '';
public $district_name = '';
public $china_admin_code ... | php | Apache-2.0 | 9be2e284369c34267487487f4492de26e20a7735 | 2026-01-05T04:50:23.381054Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/app-console.php | app-console.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright (c) 2010 SkeekS
* @date 10.11.2017
*/
// fcgi doesn't have STDIN and STDOUT defined by default
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
defined('STDOUT') or define('STDOUT', fopen('php://stdou... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/global.php | global.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright (c) 2010 SkeekS
* @date 10.11.2017
*/
defined('ROOT_DIR') or die('Please specify the constant "ROOT_DIR" in index.php in your application.');
defined('VENDOR_DIR') or define('VENDOR_DIR', ROOT_DIR . '/vendor');
//Е... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/app-web.php | app-web.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
$env = getenv('ENV');
if (!empty($env)) {
defined('ENV') or define('ENV', $env);
}
require_once(__DIR__ . '/bootstrap.php');
\Yii::b... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/requirements.php | requirements.php | <?php
/**
* Application requirement checker script.
*
* In order to run this script use the following console command:
* php requirements.php
*
* In order to run this script from the web, you should copy it to the web root.
* If you are using Linux you can create a hard link instead, using the following command:... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/bootstrap.php | bootstrap.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright (c) 2010 SkeekS
* @date 10.11.2017
*/
require(__DIR__ . '/global.php');
require(VENDOR_DIR . '/autoload.php');
require(VENDOR_DIR . '/yiisoft/yii2/Yii.php');
\Yii::setAlias('@root', ROOT_DIR);
\Yii::setAlias('@ven... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasIcon.php | src/IHasIcon.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms;
/**
* @property string $icon;
*
* @author Semenov Alexander <semenov@skeeks.com>
*/
interface IHasIcon
{
/*... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/Module.php | src/Module.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright (c) 2010 SkeekS
* @date 11.03.2018
*/
namespace skeeks\cms;
/**
* Class Module
* @package skeeks\cms
*/
class Module extends \yii\base\Module
{
public $controllerNamespace = 'skeeks\cms\controllers';
} | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/Skeeks.php | src/Skeeks.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 27.03.2015
*/
namespace skeeks\cms;
use skeeks\cms\backend\BackendComponent;
use skeeks\cms\models\CmsCompany;
use skeeks\cms\models\CmsCompanyAddress;
use skeeks\cms\models\CmsCompanyEm... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasName.php | src/IHasName.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms;
/**
* @property string $name;
*
* @author Semenov Alexander <semenov@skeeks.com>
*/
interface IHasName
{
/*... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasConfigForm.php | src/IHasConfigForm.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms;
use yii\widgets\ActiveForm;
/**
* @author Semenov Alexander <semenov@skeeks.com>
*/
interface IHasConfigForm {
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasModel.php | src/IHasModel.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright 2010 SkeekS
* @date 05.03.2017
*/
namespace skeeks\cms;
use yii\base\BaseObject;
use yii\base\Component;
use yii\base\Model;
use yii\db\ActiveRecord;
/**
* @property $model;
*
* Interface IHasModel
* @package... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasPermissions.php | src/IHasPermissions.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright 2010 SkeekS
* @date 05.03.2017
*/
namespace skeeks\cms;
/**
* @property $permissionNames;
* @property $permissionName;
* @property bool $isAllow;
*
* Interface IHasPermissions
* @package skeeks\cms
*/
inter... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasPermission.php | src/IHasPermission.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright 2010 SkeekS
* @date 05.03.2017
*/
namespace skeeks\cms;
/**
* @property $permissionName;
*
* Interface IHasPermission
* @package skeeks\cms
*/
interface IHasPermission
{
/**
* @return string
*/
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasImage.php | src/IHasImage.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms;
/**
* @property string $image;
*
* @author Semenov Alexander <semenov@skeeks.com>
*/
interface IHasImage
{
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/IHasUrl.php | src/IHasUrl.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link https://skeeks.com/
* @copyright 2010 SkeekS
* @date 05.03.2017
*/
namespace skeeks\cms;
/**
* @property $url;
*
* Interface IHasUrl
* @package skeeks\cms
*/
interface IHasUrl
{
/**
* @return string
*/
public function getUr... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/query/CmsTreeActiveQuery.php | src/query/CmsTreeActiveQuery.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\query;
use skeeks\cms\models\CmsContentElementTree;
use skeeks\cms\models\CmsTree;
use skeeks\cms\models\Tree;
use y... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/query/CmsActiveQuery.php | src/query/CmsActiveQuery.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 09.03.2015
*/
namespace skeeks\cms\query;
use http\Exception\InvalidArgumentException;
use skeeks\cms\components\Cms;
use skeeks\cms\models\CmsSite;
use skeeks\cms\models\User;
use yii\d... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/query/CmsContentPropertyActiveQuery.php | src/query/CmsContentPropertyActiveQuery.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\query;
/**
* @author Semenov Alexander <semenov@skeeks.com>
*/
class CmsContentPropertyActiveQuery extends CmsActi... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/query/CmsStorageFileActiveQuery.php | src/query/CmsStorageFileActiveQuery.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\query;
/**
* @author Semenov Alexander <semenov@skeeks.com>
*/
class CmsStorageFileActiveQuery extends CmsActiveQu... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/query/CmsContentElementActiveQuery.php | src/query/CmsContentElementActiveQuery.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\query;
use skeeks\cms\models\CmsContentElementTree;
use skeeks\cms\models\CmsTree;
use skeeks\cms\models\Tree;
use y... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/ActiveRecord.php | src/base/ActiveRecord.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\base;
use common\models\User;
use skeeks\cms\models\behaviors\HasTableCache;
use skeeks\cms\models\CmsUser;
use skee... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/Theme.php | src/base/Theme.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 27.03.2015
*/
namespace skeeks\cms\base;
use skeeks\cms\IHasConfigForm;
use skeeks\cms\traits\HasComponentDescriptorTrait;
use skeeks\cms\traits\TConfigForm;
use skeeks\yii2\config\Confi... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/Controller.php | src/base/Controller.php | <?php
/**
* Controller
*
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010-2014 SkeekS (Sx)
* @date 03.11.2014
* @since 1.0.0
*/
namespace skeeks\cms\base;
use yii\helpers\ArrayHelper;
use yii\web\Application;
use yii\web\Controller as YiiWebController;
/**
* Clas... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/ConfigFormInterface.php | src/base/ConfigFormInterface.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 02.03.2016
*/
namespace skeeks\cms\base;
use yii\widgets\ActiveForm;
/**
*
* @deprecated
*
* Interface ConfigFormInterface
* @package yii\base
*/
interface ConfigFormInterface
{
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/AssetBundle.php | src/base/AssetBundle.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\base;
use skeeks\sx\File;
/**
* @author Semenov Alexander <semenov@skeeks.com>
*/
class AssetBundle extends \yii\w... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/ComponentDescriptor.php | src/base/ComponentDescriptor.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\base;
use skeeks\cms\IHasImage;
use skeeks\cms\IHasName;
use skeeks\cms\traits\THasImage;
use skeeks\cms\traits\THas... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/DynamicModel.php | src/base/DynamicModel.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\base;
/**
* @author Semenov Alexander <semenov@skeeks.com>
*/
class DynamicModel extends \yii\base\DynamicModel {
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/Widget.php | src/base/Widget.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 22.05.2015
*/
namespace skeeks\cms\base;
use skeeks\cms\traits\TWidget;
use yii\base\ViewContextInterface;
use yii\helpers\ArrayHelper;
/**
* Class Widget
* @package skeeks\cms\base
... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/InputWidget.php | src/base/InputWidget.php | <?php
/**
* @link https://cms.skeeks.com/
* @copyright Copyright (c) 2010 SkeekS
* @license https://cms.skeeks.com/license/
* @author Semenov Alexander <semenov@skeeks.com>
*/
namespace skeeks\cms\base;
use yii\base\InvalidConfigException;
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
use yii\helpers\Inflec... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
skeeks-cms/cms | https://github.com/skeeks-cms/cms/blob/c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf/src/base/WidgetRenderable.php | src/base/WidgetRenderable.php | <?php
/**
* @author Semenov Alexander <semenov@skeeks.com>
* @link http://skeeks.com/
* @copyright 2010 SkeekS (СкикС)
* @date 26.05.2015
*/
namespace skeeks\cms\base;
use skeeks\yii2\form\fields\BoolField;
use skeeks\yii2\form\fields\FieldSet;
use skeeks\yii2\form\fields\NumberField;
use yii\caching\ChainedDepe... | php | BSD-3-Clause | c22dc84c6fc4da5f67815a3339bc10c6c4aa39cf | 2026-01-05T04:50:22.405425Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.