code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function parse(Token $token)
{
parent::parse($token);
$values = explode('->', $token->getValue());
if (2 !== count($values)) {
throw ExpressionLanguageExceptionFactory::createForUnparsableToken($token);
}
$fixture = $this->parser->parse($values[0]);
$method = $this->parser->parse(sprintf('<%s>', $values[1]));
try {
return new FixtureMethodCallValue($fixture, $method);
} catch (TypeError $exception) {
throw ExpressionLanguageExceptionFactory::createForUnparsableToken($token, 0, $exception);
}
} | Parses expressions such as "@username->getName()".
@throws ParseException | parse | php | nelmio/alice | src/FixtureBuilder/ExpressionLanguage/Parser/TokenParser/Chainable/FixtureMethodReferenceTokenParser.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/ExpressionLanguage/Parser/TokenParser/Chainable/FixtureMethodReferenceTokenParser.php | MIT |
public function __construct(FlagParserInterface $flagParser, array $denormalizers)
{
foreach ($denormalizers as $index => $denormalizer) {
if (false === $denormalizer instanceof ChainableFixtureDenormalizerInterface) {
throw TypeErrorFactory::createForInvalidDenormalizerType($index, $denormalizer);
}
if ($denormalizer instanceof FixtureDenormalizerAwareInterface) {
$denormalizer = $denormalizer->withFixtureDenormalizer($this);
}
if ($denormalizer instanceof FlagParserAwareInterface) {
$denormalizer = $denormalizer->withFlagParser($flagParser);
}
$this->denormalizers[] = $denormalizer;
}
} | @param ChainableFixtureDenormalizerInterface[] $denormalizers | __construct | php | nelmio/alice | src/FixtureBuilder/Denormalizer/Fixture/FixtureDenormalizerRegistry.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/Denormalizer/Fixture/FixtureDenormalizerRegistry.php | MIT |
public function __construct(CallsDenormalizerInterface $callsDenormalizer, array $methodFlagHandlers)
{
$this->callsDenormalizer = $callsDenormalizer;
$this->methodFlagHandlers = (static fn (MethodFlagHandler ...$handlers) => $handlers)(...$methodFlagHandlers);
} | @param MethodFlagHandler[] $methodFlagHandlers | __construct | php | nelmio/alice | src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Calls/CallsWithFlagsDenormalizer.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Calls/CallsWithFlagsDenormalizer.php | MIT |
private function parseValue(ParserInterface $parser, string $value)
{
try {
return $parser->parse($value);
} catch (ParseThrowable $throwable) {
throw DenormalizerExceptionFactory::createForUnparsableValue($value, 0, $throwable);
}
} | @return mixed|ValueInterface | parseValue | php | nelmio/alice | src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Value/SimpleValueDenormalizer.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Value/SimpleValueDenormalizer.php | MIT |
public function denormalize(FixtureInterface $scope, ?FlagBag $flags, $value)
{
$value = $this->denormalizer->denormalize($scope, $flags, $value);
if (false === $this->requiresUnique($flags)) {
return $value;
}
return $this->generateValue($scope, $flags, $value);
} | @param mixed $value
@throws InvalidScopeException | denormalize | php | nelmio/alice | src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Value/UniqueValueDenormalizer.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/Denormalizer/Fixture/SpecificationBagDenormalizer/Value/UniqueValueDenormalizer.php | MIT |
public function __construct(array $parsers)
{
$this->parsers = (
static fn (ChainableFlagParserInterface ...$parsers) => $parsers
)(...$parsers);
} | @param ChainableFlagParserInterface[] $parsers | __construct | php | nelmio/alice | src/FixtureBuilder/Denormalizer/FlagParser/FlagParserRegistry.php | https://github.com/nelmio/alice/blob/master/src/FixtureBuilder/Denormalizer/FlagParser/FlagParserRegistry.php | MIT |
protected function getSeed()
{
return 1;
} | Seed used to generate random data. The seed is passed to the random number generator, so calling the a script
twice with the same seed produces the same results.
@return int|null | getSeed | php | nelmio/alice | src/Loader/NativeLoader.php | https://github.com/nelmio/alice/blob/master/src/Loader/NativeLoader.php | MIT |
public static function identity($expression)
{
return $expression;
} | Returns whatever is passed to it. This allows you among other things to use a PHP expression while still
benefiting from variable replacement.
@param mixed $expression | identity | php | nelmio/alice | src/Faker/Provider/AliceProvider.php | https://github.com/nelmio/alice/blob/master/src/Faker/Provider/AliceProvider.php | MIT |
public static function current(FixtureInterface $fixture)
{
return $fixture->getValueForCurrent();
} | @return string | current | php | nelmio/alice | src/Faker/Provider/AliceProvider.php | https://github.com/nelmio/alice/blob/master/src/Faker/Provider/AliceProvider.php | MIT |
public function __construct(string $id, $instance)
{
$this->id = $id;
$this->instance = deep_clone($instance);
} | @param object $instance | __construct | php | nelmio/alice | fixtures/Definition/Object/ImmutableObject.php | https://github.com/nelmio/alice/blob/master/fixtures/Definition/Object/ImmutableObject.php | MIT |
public function withFixtureDenormalizer(FixtureDenormalizerInterface $denormalizer)
{
$this->denormalizer = $denormalizer;
return $this;
} | @return static | withFixtureDenormalizer | php | nelmio/alice | fixtures/FixtureBuilder/Denormalizer/Fixture/Chainable/FakeChainableDenormalizerAwareDenormalizer.php | https://github.com/nelmio/alice/blob/master/fixtures/FixtureBuilder/Denormalizer/Fixture/Chainable/FakeChainableDenormalizerAwareDenormalizer.php | MIT |
private static function getList($name)
{
if (null === self::$references) {
new self();
}
return self::$references[$name];
} | @param string $name
@return array | getList | php | nelmio/alice | tests/FixtureBuilder/Denormalizer/Fixture/Reference.php | https://github.com/nelmio/alice/blob/master/tests/FixtureBuilder/Denormalizer/Fixture/Reference.php | MIT |
function linux()
{
compile(fn () => run('vendor/bin/box compile -c box.linux-amd64.json'));
compile(fn () => run('vendor/bin/box compile -c box.linux-arm64.json'));
} | [AsTask(description: 'Build phar for Linux system')] | linux | php | jolicode/castor | tools/phar/castor.php | https://github.com/jolicode/castor/blob/master/tools/phar/castor.php | MIT |
function darwin()
{
compile(fn () => run('vendor/bin/box compile -c box.darwin-amd64.json'));
compile(fn () => run('vendor/bin/box compile -c box.darwin-arm64.json'));
} | [AsTask(description: 'Build phar for MacOS system')] | darwin | php | jolicode/castor | tools/phar/castor.php | https://github.com/jolicode/castor/blob/master/tools/phar/castor.php | MIT |
function windows()
{
compile(fn () => run('vendor/bin/box compile -c box.windows-amd64.json'));
} | [AsTask(description: 'Build phar for Windows system')] | windows | php | jolicode/castor | tools/phar/castor.php | https://github.com/jolicode/castor/blob/master/tools/phar/castor.php | MIT |
function build()
{
parallel(linux(...), darwin(...), windows(...));
} | [AsTask(description: 'Build phar for all systems')] | build | php | jolicode/castor | tools/phar/castor.php | https://github.com/jolicode/castor/blob/master/tools/phar/castor.php | MIT |
function linux()
{
run('bin/castor compile tools/phar/build/castor.linux-amd64.phar --os=linux --arch=x86_64 --binary-path=castor.linux-amd64 --php-extensions=mbstring,phar,posix,tokenizer,pcntl,curl,filter,openssl,sodium,ctype,zip,bz2', timeout: 0);
} | Extensions should be in sync with .github/actions/cache/action.yaml
[AsTask(description: 'Build static binary for Linux system')] | linux | php | jolicode/castor | tools/static/castor.php | https://github.com/jolicode/castor/blob/master/tools/static/castor.php | MIT |
function darwinAmd64()
{
run('bin/castor compile tools/phar/build/castor.darwin-amd64.phar --os=macos --arch=x86_64 --binary-path=castor.darwin-amd64 --php-extensions=mbstring,phar,posix,tokenizer,pcntl,curl,filter,openssl,sodium,ctype,zip,bz2', timeout: 0);
} | [AsTask(description: 'Build static binary for MacOS (amd64) system')] | darwinAmd64 | php | jolicode/castor | tools/static/castor.php | https://github.com/jolicode/castor/blob/master/tools/static/castor.php | MIT |
function darwinArm64()
{
run('bin/castor compile tools/phar/build/castor.darwin-arm64.phar --os=macos --arch=aarch64 --binary-path=castor.darwin-arm64 --php-extensions=mbstring,phar,posix,tokenizer,pcntl,curl,filter,openssl,sodium,ctype,zip,bz2', timeout: 0);
} | [AsTask(description: 'Build static binary for MacOS (arm64) system')] | darwinArm64 | php | jolicode/castor | tools/static/castor.php | https://github.com/jolicode/castor/blob/master/tools/static/castor.php | MIT |
public function __construct(
public readonly array $data = [],
public readonly array $environment = [],
?string $workingDirectory = null,
public readonly bool $tty = false,
public readonly bool $pty = true,
public readonly ?float $timeout = null,
public readonly bool $quiet = false,
public readonly bool $allowFailure = false,
public readonly ?bool $notify = null,
public readonly VerbosityLevel|LegacyVerbosityLevel $verbosityLevel = VerbosityLevel::NOT_CONFIGURED,
/**
* @internal
* Do not use this argument, it is only used internally by the application
*/
public readonly string $name = '',
public readonly string $notificationTitle = '',
public readonly array $verboseArguments = [],
) {
$this->workingDirectory = $workingDirectory ?? PathHelper::getRoot();
} | @phpstan-param ContextData $data The input parameter accepts an array or an Object
@param array<string, string|\Stringable|int> $environment A list of environment variables to add to the task
@param string[] $verboseArguments A list of arguments to pass to the command to enable verbose output | __construct | php | jolicode/castor | src/Context.php | https://github.com/jolicode/castor/blob/master/src/Context.php | MIT |
public function __construct(
public array $taskDescriptors,
public array $symfonyTaskDescriptors,
) {
} | @param list<TaskDescriptor> $taskDescriptors
@param list<SymfonyTaskDescriptor> $symfonyTaskDescriptors | __construct | php | jolicode/castor | src/Event/FunctionsResolvedEvent.php | https://github.com/jolicode/castor/blob/master/src/Event/FunctionsResolvedEvent.php | MIT |
public function enterNode(Node $node)
{
if ($node instanceof Namespace_) {
// Remove comments at namespace level
$node->setAttribute('comments', null);
}
if ($node instanceof ClassLike || $node instanceof Function_ || $node instanceof ClassMethod) {
$docComment = $node->getDocComment();
// Remove internal classes and functions
if (null !== $docComment && str_contains($docComment->getText(), '@internal')) {
if ($node instanceof ClassMethod || !$node->namespacedName || !\in_array($node->namespacedName->toString(), self::INTERNAL_CLASSES_FORCED, true)) {
return self::REMOVE_NODE;
}
}
$this->replaceRelativeClassNameByFqcInPhpdoc($node);
}
if ($node instanceof Interface_) {
$this->inInterface = true;
}
// Empty functions body
if ($node instanceof Function_) {
$node->stmts = [];
}
// Empty class/interface methods body
if ($node instanceof ClassMethod) {
if ($this->inInterface || $node->isAbstract()) {
$node->stmts = null;
} else {
$node->stmts = [];
}
}
return null;
} | @return int|Node|null | enterNode | php | jolicode/castor | src/Stub/NodeVisitor.php | https://github.com/jolicode/castor/blob/master/src/Stub/NodeVisitor.php | MIT |
public function leaveNode(Node $node, bool $preserveStack = false)
{
// Remove "use" statements
if ($node instanceof Use_) {
return self::REMOVE_NODE;
}
if ($node instanceof Interface_) {
$this->inInterface = false;
}
// Remove private class members
if (($node instanceof ClassMethod
|| $node instanceof ClassConst
|| $node instanceof Property) && $node->isPrivate()
) {
return self::REMOVE_NODE;
}
return null;
} | @return int|Node|Node[]|null | leaveNode | php | jolicode/castor | src/Stub/NodeVisitor.php | https://github.com/jolicode/castor/blob/master/src/Stub/NodeVisitor.php | MIT |
public function enterNode(Node $node)
{
// Merge namespaces with the same name together
if ($node instanceof Namespace_) {
$currentNamespace = $node->name ? $node->name->toString() : null;
if (!$currentNamespace) {
return null;
}
$existingNode = $this->nodesByNamespace[$currentNamespace] ?? null;
if ($existingNode) {
$existingNode->stmts = array_merge($existingNode->stmts, $node->stmts);
return self::REMOVE_NODE;
}
$this->nodesByNamespace[$currentNamespace] = $node;
}
return null;
} | @return int|Node|null | enterNode | php | jolicode/castor | src/Stub/CleanVisitor.php | https://github.com/jolicode/castor/blob/master/src/Stub/CleanVisitor.php | MIT |
public function afterTraverse(array $nodes)
{
$cleanedNodes = [];
foreach ($nodes as $node) {
// If namespace is empty, let's remove it
if ($node instanceof Namespace_) {
$stmts = array_filter($node->stmts, static fn (Node $stmt): bool => !$stmt instanceof Use_);
if (!$stmts) {
continue;
}
$cleanedNodes[] = $node;
}
}
return $cleanedNodes;
} | @return Node[]|null | afterTraverse | php | jolicode/castor | src/Stub/CleanVisitor.php | https://github.com/jolicode/castor/blob/master/src/Stub/CleanVisitor.php | MIT |
public function __construct(
public readonly AsContextGenerator $contextAttribute,
public readonly \ReflectionFunction $function,
public readonly array $generators,
) {
} | @param array<\Closure(): Context> $generators | __construct | php | jolicode/castor | src/Descriptor/ContextGeneratorDescriptor.php | https://github.com/jolicode/castor/blob/master/src/Descriptor/ContextGeneratorDescriptor.php | MIT |
public function __construct(
public array $contextDescriptors,
public array $contextGeneratorDescriptors,
public array $listenerDescriptors,
public array $taskDescriptors,
public array $symfonyTaskDescriptors,
) {
} | @param list<ContextDescriptor> $contextDescriptors
@param list<ContextGeneratorDescriptor> $contextGeneratorDescriptors
@param list<ListenerDescriptor> $listenerDescriptors
@param list<TaskDescriptor> $taskDescriptors
@param list<SymfonyTaskDescriptor> $symfonyTaskDescriptors | __construct | php | jolicode/castor | src/Descriptor/DescriptorsCollection.php | https://github.com/jolicode/castor/blob/master/src/Descriptor/DescriptorsCollection.php | MIT |
public function __construct(
public readonly AsSymfonyTask $taskAttribute,
public readonly \ReflectionClass $function,
public readonly array $definition,
) {
} | @param mixed[] $definition | __construct | php | jolicode/castor | src/Descriptor/SymfonyTaskDescriptor.php | https://github.com/jolicode/castor/blob/master/src/Descriptor/SymfonyTaskDescriptor.php | MIT |
public function __construct(
public readonly array $taskDescriptors = [],
public readonly array $symfonyTaskDescriptors = [],
) {
} | @param list<TaskDescriptor> $taskDescriptors
@param list<SymfonyTaskDescriptor> $symfonyTaskDescriptors | __construct | php | jolicode/castor | src/Descriptor/TaskDescriptorCollection.php | https://github.com/jolicode/castor/blob/master/src/Descriptor/TaskDescriptorCollection.php | MIT |
private function __construct(
public readonly AsSymfonyTask $taskAttribute,
public readonly \ReflectionClass $class,
public readonly array $definition,
) {
parent::__construct($taskAttribute->name);
} | @param mixed[] $definition | __construct | php | jolicode/castor | src/Console/Command/SymfonyTaskCommand.php | https://github.com/jolicode/castor/blob/master/src/Console/Command/SymfonyTaskCommand.php | MIT |
public function __construct(
?string $name = null,
public readonly string|array|null $shortcut = null,
public readonly ?int $mode = null,
public readonly string $description = '',
/** @deprecated since Castor 0.18, use "autocomplete" property instead */
public readonly array $suggestedValues = [],
public readonly mixed $autocomplete = null,
) {
parent::__construct($name);
} | @param string|array<string>|null $shortcut
@param array<string> $suggestedValues
@param array<string>|callable(CompletionInput): array<string> $autocomplete | __construct | php | jolicode/castor | src/Attribute/AsOption.php | https://github.com/jolicode/castor/blob/master/src/Attribute/AsOption.php | MIT |
public function __construct(
?string $name = null,
string|array|null $shortcut = null,
?int $mode = null,
string $description = '',
) {
parent::__construct($name, $shortcut, $mode, $description);
} | @param string|array<string>|null $shortcut | __construct | php | jolicode/castor | src/Attribute/AsPathOption.php | https://github.com/jolicode/castor/blob/master/src/Attribute/AsPathOption.php | MIT |
public function __construct(
public ?string $name = null,
public ?string $originalName = null,
public readonly array $console = [\PHP_BINARY, 'bin/console'],
) {
} | @param string[] $console How to start the Symfony application | __construct | php | jolicode/castor | src/Attribute/AsSymfonyTask.php | https://github.com/jolicode/castor/blob/master/src/Attribute/AsSymfonyTask.php | MIT |
public function __construct(
?string $name = null,
public readonly string $description = '',
/** @deprecated since Castor 0.18, use "autocomplete" property instead */
public readonly array $suggestedValues = [],
public readonly mixed $autocomplete = null,
) {
parent::__construct($name);
} | @param array<string> $suggestedValues
@param array<string>|callable(CompletionInput): array<string> $autocomplete | __construct | php | jolicode/castor | src/Attribute/AsArgument.php | https://github.com/jolicode/castor/blob/master/src/Attribute/AsArgument.php | MIT |
public function __construct(
public string $name = '',
public ?string $namespace = null,
public string $description = '',
public array $aliases = [],
public array $onSignals = [],
public string|bool $enabled = true,
public bool $ignoreValidationErrors = false,
public bool $default = false,
) {
} | @param array<string> $aliases
@param array<int, callable(int): (int|false)> $onSignals | __construct | php | jolicode/castor | src/Attribute/AsTask.php | https://github.com/jolicode/castor/blob/master/src/Attribute/AsTask.php | MIT |
public function userUid($response)
{
return $response->id;
} | @see AbstractProvider::userUid | userUid | php | basvandorst/StravaPHP | src/Strava/API/OAuth.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/OAuth.php | MIT |
public function userEmail($response)
{
return isset($response->email) && $response->email ? $response->email : null;
} | @see AbstractProvider::userEmail | userEmail | php | basvandorst/StravaPHP | src/Strava/API/OAuth.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/OAuth.php | MIT |
protected function checkResponse(ResponseInterface $response, $data)
{
} | @see AbstractProvider::checkResponse | checkResponse | php | basvandorst/StravaPHP | src/Strava/API/OAuth.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/OAuth.php | MIT |
protected function createResourceOwner(array $response, AccessToken $token)
{
throw new RuntimeException('Not implemented');
} | @see AbstractProvider::createResourceOwner | createResourceOwner | php | basvandorst/StravaPHP | src/Strava/API/OAuth.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/OAuth.php | MIT |
public function __construct(ServiceInterface $service)
{
$this->service = $service;
} | Initiate this class with a subclass of ServiceInterface. There are two
service subclasses available:
- Service\REST: Service which makes calls to the live Strava API
- Service\Stub: Service stub for test purposes (unit tests) | __construct | php | basvandorst/StravaPHP | src/Strava/API/Client.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/Client.php | MIT |
public function __construct($token, Client $adapter, int $responseVerbosity = 0)
{
if (is_object($token) && method_exists($token, 'getToken')) {
$token = $token->getToken();
}
$this->token = $token;
$this->adapter = $adapter;
$this->responseVerbosity = $responseVerbosity;
} | Initiate this REST service with the application token, a instance
of the REST adapter (Guzzle) and a level of verbosity for the response.
@param string|AccessTokenInterface $token
@param Client $adapter
@param int $responseVerbosity | __construct | php | basvandorst/StravaPHP | src/Strava/API/Service/REST.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/Service/REST.php | MIT |
protected function getResult($response)
{
// Workaround for export methods getRouteAsGPX, getRouteAsTCX:
if (is_string($response)) {
return $response;
}
$status = $response->getStatusCode();
$expandedResponse = [];
$expandedResponse['headers'] = $response->getHeaders();
$expandedResponse['body'] = json_decode($response->getBody(), true);
$expandedResponse['success'] = $status === 200 || $status === 201;
$expandedResponse['status'] = $status;
return $expandedResponse;
} | Get a request result.
Returns an array with a response body or and error code => reason.
@param ResponseInterface|string $response
@return array|string | getResult | php | basvandorst/StravaPHP | src/Strava/API/Service/REST.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/Service/REST.php | MIT |
protected function getResponse(string $method, string $path, array $parameters)
{
try {
$response = $this->adapter->request($method, $path, $parameters);
$result = $this->getResult($response);
if ($this->responseVerbosity === 0 && !is_string($result)) {
return $result["body"];
}
return $result;
} catch (\Exception $e) {
throw new Exception('[SERVICE] ' . $e->getMessage());
}
} | Get an API request response and handle possible exceptions.
@param string $method
@param string $path
@param array $parameters
@return array|mixed|string
@throws \GuzzleHttp\Exception\GuzzleException|Exception | getResponse | php | basvandorst/StravaPHP | src/Strava/API/Service/REST.php | https://github.com/basvandorst/StravaPHP/blob/master/src/Strava/API/Service/REST.php | MIT |
function event_active(string $event)
{
global $event_expires;
if (!isset($event_expires[$event])) {
return false;
}
$dates = $event_expires[$event];
$date = new DateTime("now");
if ($date > $dates[0] && $date < $dates[1]) {
return true;
}
return false;
} | event_active
Checks if an event is past the expiration date
@param {String} $event - Name of event to check for
@return {Boolean} - True if event is currently active | event_active | php | elementary/website | _backend/event.php | https://github.com/elementary/website/blob/master/_backend/event.php | MIT |
function event_cookie_encode(string $text)
{
return urlencode('event_' . str_replace([' ', '.', '/'], '_', $text));
} | event_cookie_encode
Encodes text to be used in cookie storage
@param {String} $text - String to encode for use in cookie
@return {String} - Text to use in cookie | event_cookie_encode | php | elementary/website | _backend/event.php | https://github.com/elementary/website/blob/master/_backend/event.php | MIT |
function event_cookie_set(string $event, $value)
{
$string = event_cookie_encode($event);
$expires = time() + 60 * 60 * 24 * 365; // One year in the future
return setcookie($string, $value, $expires, '/', '', false, true);
} | event_cookie_set
Sets an event cookie to value
@param {String} $event - Name of event to set for
@param {*} $value - Value of cookie
@return {Boolean} - True if cookie was set | event_cookie_set | php | elementary/website | _backend/event.php | https://github.com/elementary/website/blob/master/_backend/event.php | MIT |
function event_cookie_get(string $event)
{
$string = event_cookie_encode($event);
if (isset($_COOKIE[$string])) {
return $_COOKIE[$string];
}
return null;
} | event_cookie_get
Returns the amount paid for a release version
@param {String} $event - Name of event to get cookie for
@return {*} - Value of event cookie | event_cookie_get | php | elementary/website | _backend/event.php | https://github.com/elementary/website/blob/master/_backend/event.php | MIT |
function getIPHash($hostname, $debug = false)
{
$hash = array_sum(str_split($hostname));
if ($debug) {
echo 'Hash: "'.$hash.'"'."\n";
}
$hash = $hash % 10;
if ($debug) {
echo 'Remainder: "'.$hash.'"'."\n";
}
if ($hash > 5) {
return 0;
} else {
return 1;
}
} | // getIPHash
Hashes the given IP to return either a 0 or a 1 consistently for the same IP.
Used when balancing between two regions returned by getDownloadRegion. | getIPHash | php | elementary/website | _backend/geolocate.functions.php | https://github.com/elementary/website/blob/master/_backend/geolocate.functions.php | MIT |
function os_payment_encode(string $text)
{
return urlencode(str_replace([' ', '.'], '_', $text));
} | os_payment_encode
Encodes text to be used in cookie storage
@param {String} $text - String to encode for use in cookie
@return {String} - Text to use in cookie | os_payment_encode | php | elementary/website | _backend/os-payment.php | https://github.com/elementary/website/blob/master/_backend/os-payment.php | MIT |
function os_payment_setcookie(string $version, int $amount)
{
$string = os_payment_encode('os_payment_' . $version);
$expires = time() + 60 * 60 * 24 * 365; // One year in the future
return setcookie($string, $amount, $expires, '/', '', false, true);
} | os_payment_setcookie
Sets the payment cookie for a given release version
@param {String} $version - Version of release to set cookie for
@param {Number} $amount - Amount paid for release
@return {Boolean} - True if cookie was set | os_payment_setcookie | php | elementary/website | _backend/os-payment.php | https://github.com/elementary/website/blob/master/_backend/os-payment.php | MIT |
function os_payment_getcookie(string $version)
{
// DEPRECATED: this is the old version of cookie naming
if (!isset($version) || $version === '') {
$string = os_payment_encode('has_paid_' . $config['release_title'] . '_' . $config['release_version']);
if (isset($_COOKIE[$string])) {
return intval($_COOKIE[$string]);
}
}
// DEPRECATED: all deprecated variables can be removed next version release
$string = os_payment_encode('os_payment_' . $version);
$deprecated_string = os_payment_encode('has_paid_Loki_' . $version);
if (isset($_COOKIE[$string])) {
return intval($_COOKIE[$string]);
}
if (isset($_COOKIE[$deprecated_string])) {
return intval($_COOKIE[$deprecated_string]);
}
return 0;
} | os_payment_getcookie
Returns the amount paid for a release version
@param {String} $version - Version of release to get cookie for
@return {Number} - Amount paid for release, 0 for not paid | os_payment_getcookie | php | elementary/website | _backend/os-payment.php | https://github.com/elementary/website/blob/master/_backend/os-payment.php | MIT |
function log_echo($msg, $echo = false)
{
error_log($msg);
\Sentry\captureMessage($msg);
if ($echo) {
echo $msg.PHP_EOL;
}
} | Log an error and also echo it. | log_echo | php | elementary/website | _backend/log-echo.php | https://github.com/elementary/website/blob/master/_backend/log-echo.php | MIT |
function captureTranslations($id, $domain, $string)
{
global $currentTranslations, $currentUrl;
if ($domain !== $currentUrl) {
return;
}
if (empty($id)) {
return;
}
if (is_numeric($id) || ctype_punct($id)) {
return;
}
if (isset($currentTranslations[$id])) {
return;
}
$currentTranslations[$id] = $string;
} | captureTranslations
L10n translation callback
@param string $id The source string
@param string $domain The translation domain
@param string $string The translation string
@return Void | captureTranslations | php | elementary/website | _backend/Console/Extract.php | https://github.com/elementary/website/blob/master/_backend/Console/Extract.php | MIT |
function translateMarkdown($path, $domain)
{
global $l10n;
$markdown = file_get_contents($path);
$parsedown = new ParsedownExtra();
$html = $parsedown->text($markdown);
$html = str_replace('⌘', '⌘', $html);
$l10n->setDomain($domain);
$l10n->translateHtml($html, '\App\Console\captureTranslations');
} | translateMarkdown
Translates a page of markdown
@param string $path Path to markdown file
@param string $domain Page URL without extension
@return void All translations kept in $currentTranslations array | translateMarkdown | php | elementary/website | _backend/Console/Extract.php | https://github.com/elementary/website/blob/master/_backend/Console/Extract.php | MIT |
public static function pages()
{
$rootDirectory = static::$directory . '/..';
$files = array_merge(
glob($rootDirectory . '/*.{php,md}', GLOB_BRACE),
glob($rootDirectory . '/docs/*.md'),
glob($rootDirectory . '/docs/code/*.md'),
glob($rootDirectory . '/store/*.php'),
glob($rootDirectory . '/_templates/*.php')
);
$pages = array();
foreach ($files as $file) {
$blacklisted = false;
foreach (static::$blacklistedPages as $reg) {
if (preg_match($reg, $file)) {
$blacklisted = true;
}
}
if ($blacklisted === false) {
$pages[] = $file;
}
}
return $pages;
} | pages
Returns a list of pages that we can translate.
@return array A list of pages we can translate | pages | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public static function languageDirectory($lang)
{
return realpath(static::$directory . '/' . $lang);
} | languageDirectory
Returns the directory for a language
@param string $lang The language code
@return string Directory the language files are in | languageDirectory | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function langDir($lang)
{
return static::languageDirectory($lang);
} | DEPRECATED: use the static function instead | langDir | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function translate($id, $domain = null, $string = null)
{
if (empty($domain)) {
$domain = $this->domain;
}
if (empty($string)) {
$string = $id;
}
if (!isset($this->translations[$domain])) {
$this->loadDomain($domain);
}
// Remove newlines and normalize spaces for matching
$processedId = str_replace(["\r\n", "\n"], " ", $id);
$processedId = preg_replace('/\s+/', ' ', $processedId);
if (isset($this->translations[$domain][$processedId]) &&
is_string($this->translations[$domain][$processedId]) &&
($this->translations[$domain][$processedId] !== "")) {
return $this->translations[$domain][$processedId];
} else {
return $string;
}
} | Translate a string. Returns the original string if no translation was found. | translate | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function translateHtml($input, $translate = null)
{
if (empty($translate)) {
$translate = array($this, 'translate');
}
$output = ''; // Output HTML string
// Tags that doesn't contain translatable text
$tagsBlacklist = array('script', 'style', 'kbd', 'code');
// Attributes that can be translated
$attrsWhitelist = array(
'input' => array('placeholder', 'value', 'title'),
'a' => array('title'),
'img' => array('alt')
);
// Tags included in translation strings when used in <p>, <hX> or <li>
$ignoredTags = array('a', 'kbd', 'strong', 'em', 'code', 'sup', 'sub');
// Begin parsing input HTML
$i = 0;
$tagName = '';
$l10nId = '';
$l10nDisabled = false;
while ($i < strlen($input)) {
$char = $input[$i]; // Current char
if ($char == '<') { // Tag node (<HERE>)
$next = strpos($input, '>', $i);
$tag = substr($input, $i + 1, $next - $i - 1);
// Parse <tag>
$attrsStart = strpos($tag, ' ');
if ($attrsStart !== false) { // There are attributes specified
$tagName = substr($tag, 0, $attrsStart);
$attrs = substr($tag, $attrsStart + 1);
// Parse attributes only if it's interesting
// (translatable attributes or data-l10n-* attributes)
if (isset($attrsWhitelist[$tagName]) || strpos($attrs, 'data-l10n-') !== false) {
// Attributes that can be translated in this tag
if (isset($attrsWhitelist[$tagName])) {
$allowedAttrs = $attrsWhitelist[$tagName];
} else {
$allowedAttrs = array();
}
$tag = substr($tag, 0, $attrsStart + 1);
// Parse attributes
$j = 0;
while ($j < strlen($attrs)) {
$char = $attrs[$j];
if ($j == 0 || $char == ' ') {
if ($char == ' ') {
$j++;
}
// Extract attribute name and value
$nameEnd = strpos($attrs, '=', $j);
if ($nameEnd === false) {
// In case the last attribute is a boolean one (without value, e.g. <input disabled>)
$boolAttrName = substr($attrs, $j);
if (preg_match('#^[a-zA-Z0-9-]+$#', $boolAttrName)) {
$valueEnd = $j + strlen($boolAttrName);
$name = $boolAttrName;
$value = true;
} else {
break;
}
} else {
$valueEnd = strpos($attrs, '"', $nameEnd + 2);
if ($valueEnd === false) {
break;
}
$name = substr($attrs, $j, $nameEnd - $j);
$value = substr($attrs, $nameEnd + 2, $valueEnd - ($nameEnd + 2));
}
if ($name == 'data-l10n-id') { // Set translation ID for this tag
$l10nId = $value;
}
if ($name == 'data-l10n-off') { // Disable translation for this tag
$l10nDisabled = true;
}
if ($name == 'type' && $value == 'hidden') {
$l10nDisabled = true;
}
if (in_array($name, $allowedAttrs) && !$l10nDisabled) { // Translate attribute
$tag .= ' '.$name.'="'.$translate($value, $this->domain, $value).'"';
} else {
$tag .= ' '.substr($attrs, $j, $valueEnd - $j + 1);
}
$j = $valueEnd + 1;
} else {
break;
}
}
if ($j < strlen($attrs)) { // Broke inside the loop, append the remaining chars
$tag .= substr($attrs, $j);
}
}
} elseif (rtrim($tag, '/ ') != 'br') {
// No attributes in this tag
// Set current tag, if not a line break
$tagName = $tag;
}
$output .= '<'.$tag.'>';
} else { // Text node (<tag>HERE</tag>)
$next = strpos($input, '<', $i);
if ($next === false) { // End Of File
$next = strlen($input);
} elseif ($tagName == 'p' || $tagName == 'li' || preg_match('#^h[1-6]$#', $tagName)) {
// Do not process ignored tags in <p>, <hX> and <li>
$originalNext = $next;
$ignoredCount = 0;
do {
$found = false;
foreach ($ignoredTags as $ignoredTag) {
if (substr($input, $next + 1, strlen($ignoredTag)) == $ignoredTag) {
$nextChar = $input[$next + strlen($ignoredTag) + 1];
if ($nextChar == '>' || $nextChar == ' ') {
$tagEnd = strpos($input, '</'.$ignoredTag.'>', $next);
$next = strpos($input, '<', $tagEnd + 1);
$ignoredCount++;
$found = true;
break;
}
}
}
} while ($found);
// Just one link in the <p> ? Don't ignore it.
if ($ignoredCount == 1 && substr($input, $originalNext, 3) == '<a ' && substr($input, $next - 4, 4) == '</a>') {
$next = $originalNext;
}
} elseif (in_array($tagName, $tagsBlacklist)) {
// Avoid some bugs when < and > are present in script/style tags
$closeTag = '</'.$tagName.'>';
while (substr($input, $next, strlen($closeTag)) != $closeTag) {
$next = strpos($input, '<', $next + 1);
}
}
// Extract text to translate
$text = substr($input, $i + 1, $next - $i - 1);
if ((!in_array($tagName, $tagsBlacklist) || !empty($l10nId)) && !$l10nDisabled) {
$cleanedText = trim($text);
if (!empty($cleanedText) || !empty($l10nId)) {
if (empty($l10nId)) { // data-l10n-id attribute not set, use text as ID
$l10nId = $cleanedText;
}
// Properly re-inject whitespaces
$text = substr($text, 0, strpos($text, $cleanedText[0])) .
$translate($l10nId, $this->domain, $cleanedText) .
substr($text, strrpos($text, substr($cleanedText, -1)) + 1);
}
}
$output .= $text; // Append text to output
// Reset per-tag vars
$l10nId = '';
$l10nDisabled = false;
}
$i = $next; // Jump to next interesting char
}
return $output;
} | Translate a HTML string. This includes a minimalist XML parser.
Can be provided a $translate callback to override default behaviour.
(Useful to extract strings from a file for instance.) | translateHtml | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function beginHtmlTranslation()
{
if (defined('HTML_I18N')) { // Do not allow nested output buffering
return;
}
define('HTML_I18N', 1);
ob_start(function ($input) {
return $this->translateHtml($input);
});
} | Begin to translate outputted HTML. | beginHtmlTranslation | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function endHtmlTranslation()
{
if (!ob_get_level()) {
return;
}
ob_end_flush();
} | End outputted HTML translation. | endHtmlTranslation | php | elementary/website | _backend/Lib/L10n.php | https://github.com/elementary/website/blob/master/_backend/Lib/L10n.php | MIT |
public function __construct(StoreInterface $store)
{
$this->store = $store;
} | Creates a new cache using the given storage interface.
@param StoreInterface | __construct | php | elementary/website | _backend/Lib/Cache/Cache.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Cache.php | MIT |
public function get($key, $default = null)
{
$value = $this->store->get($key);
if ($value != null) {
return $value;
}
return $default;
} | Gets a value from the cache.
@param string $key
@param mixed $default
@return mixed | get | php | elementary/website | _backend/Lib/Cache/Cache.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Cache.php | MIT |
public function remember($key, $minutes, Closure $closure)
{
$value = $this->get($key);
if ($value != null) {
return $value;
}
$newValue = $closure();
$this->put($key, $newValue, $minutes);
return $newValue;
} | Remembers a value in the cache. Runs closure to generate new cache.
@param string $key
@param int $minutes
@param closure $closure
@return mixed | remember | php | elementary/website | _backend/Lib/Cache/Cache.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Cache.php | MIT |
public function __call($method, $parameters)
{
return $this->store->$method(...$parameters);
} | Redirect any none-cache method to the storage.
NOTE: This is a PHP magic function. Try not to break it.
@param string $method
@param array $parameters
@return mixed | __call | php | elementary/website | _backend/Lib/Cache/Cache.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Cache.php | MIT |
protected function cacheDirectory()
{
$path = sys_get_temp_dir();
if (substr($path, strlen($path) - 1) !== '/') {
$path .= '/';
}
return $path.'elementary/website';
} | Returns the directory we use to store cache files.
@return string | cacheDirectory | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
protected function cachePath($key)
{
return $this->cacheDirectory().'/'.base64_encode($key);
} | Returns the full path to the cache file.
@param string $key
@return string | cachePath | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
protected function writeCache($key, $contents)
{
$filePath = $this->cachePath($key);
if (file_exists($filePath) === false) {
$fileDirectory = $this->cacheDirectory();
if (file_exists($fileDirectory) === false) {
mkdir($fileDirectory, 0744, true);
}
}
file_put_contents($filePath, serialize($contents));
} | Writes the cache to file.
@param string $key
@param mixed $contents | writeCache | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
public function get($key)
{
$content = $this->readCache($key);
if ($content == null) {
return;
}
$time = $content['time'];
if ($time <= time()) {
$this->forget($key);
return;
}
return $content['data'];
} | Returns a key from the file.
@param string $key
@return mixed|null | get | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
public function put($key, $value, $minutes = 0)
{
$this->writeCache($key, array(
'data' => $value,
'time' => $this->getTime($minutes),
));
} | Puts a value into the file.
@param string $key
@param mixed $value
@param int $minutes | put | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
public function forever($key, $value)
{
$content = $this->readCache($key);
if ($content == null) {
return;
}
$content['time'] = $this->getTime(0);
$this->writeCache($key, $content);
} | Sets a cache value to be cached forever.
@param string $key
@param int $value | forever | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
public function forget($key)
{
$filePath = $this->cachePath($key);
if (file_exists($filePath) === true) {
unlink($filePath);
}
} | Removes a value from the cache.
@param string $key | forget | php | elementary/website | _backend/Lib/Cache/Store/FileStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/FileStore.php | MIT |
protected function getTime($minutes = 0)
{
// Consider 0 minutes as an infinite time
if ($minutes === 0) {
return 9999999999;
}
return time() + ($minutes * 60);
} | Returns the current time plus minutes.
@param int $minutes
@return int | getTime | php | elementary/website | _backend/Lib/Cache/Store/BaseStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/BaseStore.php | MIT |
public function getMany(array $keys)
{
return array_map(function ($key) {
return $this->get($key);
}, $keys);
} | Returns many values from the file.
@param string[] $keys
@return mixed|null[] | getMany | php | elementary/website | _backend/Lib/Cache/Store/BaseStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/BaseStore.php | MIT |
public function putMany(array $items, $minutes = 0)
{
array_walk(function ($value, $key) {
$this->put($key, $value, $minutes);
}, $items);
} | Puts many values into the file.
@param array $items $key
@param int $minutes | putMany | php | elementary/website | _backend/Lib/Cache/Store/BaseStore.php | https://github.com/elementary/website/blob/master/_backend/Lib/Cache/Store/BaseStore.php | MIT |
public function __construct(
Environment $twig,
private Pool $pool,
private ?AdminInterface $mediaAdmin,
private MediaManagerInterface $mediaManager,
) {
parent::__construct($twig);
} | @param AdminInterface<MediaInterface>|null $mediaAdmin | __construct | php | sonata-project/SonataMediaBundle | src/Block/FeatureMediaBlockService.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Block/FeatureMediaBlockService.php | MIT |
public function __construct(
Environment $twig,
private Pool $pool,
private ?AdminInterface $mediaAdmin,
private MediaManagerInterface $mediaManager,
) {
parent::__construct($twig);
} | @param AdminInterface<MediaInterface>|null $mediaAdmin | __construct | php | sonata-project/SonataMediaBundle | src/Block/MediaBlockService.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Block/MediaBlockService.php | MIT |
public function __construct(
Environment $twig,
private Pool $pool,
private ?AdminInterface $galleryAdmin,
private GalleryManagerInterface $galleryManager,
) {
parent::__construct($twig);
} | @param AdminInterface<GalleryInterface<GalleryItemInterface>>|null $galleryAdmin | __construct | php | sonata-project/SonataMediaBundle | src/Block/GalleryBlockService.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Block/GalleryBlockService.php | MIT |
public function __construct(
private Pool $pool,
private string $class,
) {
} | @phpstan-param class-string<MediaInterface> $class | __construct | php | sonata-project/SonataMediaBundle | src/Form/Type/MediaType.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Form/Type/MediaType.php | MIT |
public function __construct(
private Pool $pool,
private string $class,
array $options = [],
) {
$this->options = $this->getOptions($options);
} | @param array<string, mixed> $options
@phpstan-param class-string<MediaInterface> $class | __construct | php | sonata-project/SonataMediaBundle | src/Form/DataTransformer/ProviderDataTransformer.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Form/DataTransformer/ProviderDataTransformer.php | MIT |
private function getOptions(array $options)
{
return array_merge([
'provider' => false,
'context' => false,
'empty_on_new' => true,
'new_on_update' => true,
], $options);
} | Define the default options for the DataTransformer.
@param array<string, mixed> $options
@return array<string, mixed> | getOptions | php | sonata-project/SonataMediaBundle | src/Form/DataTransformer/ProviderDataTransformer.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Form/DataTransformer/ProviderDataTransformer.php | MIT |
public function __construct(
$pool,
$categoryManager = null,
$contextManager = null,
?Pool $deprecatedPool = null,
?CategoryManagerInterface $deprecatedCategoryManager = null,
?ContextManagerInterface $deprecatedContextManager = null,
) {
// NEXT_MAJOR: Keep the if part.
if ($pool instanceof Pool) {
\assert(!\is_string($categoryManager));
\assert(!\is_string($contextManager));
parent::__construct();
$this->pool = $pool;
$this->categoryManager = $categoryManager;
$this->contextManager = $contextManager;
} else {
\assert(\is_string($categoryManager));
\assert(\is_string($contextManager));
\assert(null !== $deprecatedPool);
parent::__construct($pool, $categoryManager, $contextManager);
$this->pool = $deprecatedPool;
$this->categoryManager = $deprecatedCategoryManager;
$this->contextManager = $deprecatedContextManager;
}
} | NEXT_MAJOR: Change to (Pool, ?CategoryManagerInterface, ?ContextManagerInterface).
@param Pool|string $pool
@param CategoryManagerInterface|string|null $categoryManager
@param ContextManagerInterface|string|null $contextManager
@phpstan-param CategoryManagerInterface|class-string<MediaInterface>|null $categoryManager | __construct | php | sonata-project/SonataMediaBundle | src/Admin/BaseMediaAdmin.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Admin/BaseMediaAdmin.php | MIT |
protected function getMetadata(MediaInterface $media, string $url)
{
try {
$response = $this->sendRequest('GET', $url);
} catch (\RuntimeException $exception) {
throw new \RuntimeException(
\sprintf('Unable to retrieve the video information for: %s', $url),
(int) $exception->getCode(),
$exception
);
}
$metadata = json_decode($response, true, 512, \JSON_THROW_ON_ERROR);
if (null === $metadata) {
throw new \RuntimeException(\sprintf('Unable to decode the video information for: %s', $url));
}
return $metadata;
} | @throws \RuntimeException
@return mixed | getMetadata | php | sonata-project/SonataMediaBundle | src/Provider/BaseVideoProvider.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Provider/BaseVideoProvider.php | MIT |
public function __construct(
string $name,
Filesystem $filesystem,
CDNInterface $cdn,
GeneratorInterface $pathGenerator,
ThumbnailInterface $thumbnail,
protected array $allowedExtensions = [],
protected array $allowedMimeTypes = [],
protected ?MetadataBuilderInterface $metadata = null,
) {
parent::__construct($name, $filesystem, $cdn, $pathGenerator, $thumbnail);
} | @param string[] $allowedExtensions
@param string[] $allowedMimeTypes | __construct | php | sonata-project/SonataMediaBundle | src/Provider/FileProvider.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Provider/FileProvider.php | MIT |
public function __construct(
private string $title,
private ?string $description = null,
?string $image = null,
private ?string $domain = null,
private array $options = [],
) {
$this->image = $image ?? 'data:image/png;base64,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';
} | @param array<string, mixed> $options | __construct | php | sonata-project/SonataMediaBundle | src/Provider/Metadata.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Provider/Metadata.php | MIT |
public function mtime($key)
{
return $this->primary->mtime($key);
} | @param string $key
@return int|bool | mtime | php | sonata-project/SonataMediaBundle | src/Filesystem/Replicate.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Filesystem/Replicate.php | MIT |
public function write($key, $content)
{
$ok = true;
$return = false;
try {
$return = $this->primary->write($key, $content);
} catch (\Exception $e) {
$this->logger->critical(\sprintf('Unable to write %s, error: %s', $key, $e->getMessage()));
$ok = false;
}
try {
$return = $this->secondary->write($key, $content);
} catch (\Exception $e) {
$this->logger->critical(\sprintf('Unable to write %s, error: %s', $key, $e->getMessage()));
$ok = false;
}
return $ok && false !== $return;
} | @param string $key
@param string $content
@return bool | write | php | sonata-project/SonataMediaBundle | src/Filesystem/Replicate.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Filesystem/Replicate.php | MIT |
public function read($key)
{
return $this->primary->read($key);
} | @param string $key
@return string|bool | read | php | sonata-project/SonataMediaBundle | src/Filesystem/Replicate.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Filesystem/Replicate.php | MIT |
public function getMetadata($key)
{
if ($this->primary instanceof MetadataSupporter) {
return $this->primary->getMetadata($key);
}
if ($this->secondary instanceof MetadataSupporter) {
return $this->secondary->getMetadata($key);
}
return [];
} | @param string $key
@return mixed[] | getMetadata | php | sonata-project/SonataMediaBundle | src/Filesystem/Replicate.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Filesystem/Replicate.php | MIT |
public function __construct(
private TranslatorInterface $translator,
private AuthorizationCheckerInterface $security,
private array $roles = [],
) {
} | @param string[] $roles | __construct | php | sonata-project/SonataMediaBundle | src/Security/RolesDownloadStrategy.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Security/RolesDownloadStrategy.php | MIT |
public function __construct(
private Pool $mediaPool,
private MediaManagerInterface $mediaManager,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/RemoveThumbsCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/RemoveThumbsCommand.php | MIT |
public function __construct(private MediaManagerInterface $mediaManager)
{
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/AddMediaCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/AddMediaCommand.php | MIT |
public function __construct(
private Pool $mediaPool,
private MediaManagerInterface $mediaManager,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/RefreshMetadataCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/RefreshMetadataCommand.php | MIT |
public function __construct(
private Local $filesystemLocal,
private Pool $mediaPool,
private MediaManagerInterface $mediaManager,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/CleanMediaCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/CleanMediaCommand.php | MIT |
public function __construct(private MediaManagerInterface $mediaManager)
{
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/AddMassMediaCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/AddMassMediaCommand.php | MIT |
private function getFilePointer(InputInterface $input, OutputInterface $output)
{
if (false !== ftell(\STDIN)) {
return \STDIN;
}
$file = $input->getOption('file');
if (null === $file) {
throw new \RuntimeException('Please provide a CSV file argument or CSV input stream');
}
$filePointer = fopen($file, 'r');
if (false === $filePointer) {
throw new \RuntimeException(\sprintf('The provided CSV file %s could not be opened', $file));
}
return $filePointer;
} | @return resource | getFilePointer | php | sonata-project/SonataMediaBundle | src/Command/AddMassMediaCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/AddMassMediaCommand.php | MIT |
public function __construct(
private Pool $mediaPool,
private ?CategoryManagerInterface $categoryManager = null,
private ?ContextManagerInterface $contextManager = null,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/FixMediaContextCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/FixMediaContextCommand.php | MIT |
public function __construct(
private Pool $mediaPool,
private MediaManagerInterface $mediaManager,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/UpdateCdnStatusCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/UpdateCdnStatusCommand.php | MIT |
public function __construct(
private Pool $mediaPool,
private MediaManagerInterface $mediaManager,
) {
parent::__construct();
} | @internal This class should only be used through the console | __construct | php | sonata-project/SonataMediaBundle | src/Command/SyncThumbsCommand.php | https://github.com/sonata-project/SonataMediaBundle/blob/master/src/Command/SyncThumbsCommand.php | MIT |
public static function parseError($set = false)
{
static $error = false;
return $set ? $error = $set : $error;
} | https://github.com/shuchkin/simplexlsx#gets-extend-cell-info-by--rowsex | parseError | php | shuchkin/simplexlsx | src/SimpleXLSX.php | https://github.com/shuchkin/simplexlsx/blob/master/src/SimpleXLSX.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.