PHP code example of railroad / railcontent
1. Go to this page and download the library: Download railroad/railcontent library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
railroad / railcontent example snippets
'allowed_types_for_bubble_progress' => [
'started' => [
'foo','bar', 'baz'
],
'completed' => [
'foo','bar', 'qux'
]
];
'video' => [
'rules' => [
Rule::exists($connectionMaskPrefix . 'content', 'id')->where(
function ($query) { $query->where('type', 'vimeo-video'); }
),
'
if (($contentProperty['type'] ?? null) === 'content' && isset($inputToValidate['id'])) {
$inputToValidate = $inputToValidate['id'];
}
foo => [
'bar' => ['max:2|',
'
'number_of_children' => 'min:3',
'number_of_children' => ['rules' => 'min:3'],
'validation' => [
'brand' => [
'content-type' => [
'content-status|content-status|...' => [
'number_of_children' => 'min:3',
'fields' => [
'key' => [
rules => ['validation-rule', 'validation-rule', ...],
'can_have_multiple' => true/false],
],
'key' => [
rules => 'validation-rule|validation-rule|...',
'can_have_multiple' => true/false],
],
],
'data' => [
'key' => [
rules => ['validation-rule', 'validation-rule', ...],
'can_have_multiple' => true/false],
],
'key' => [
rules => 'validation-rule|validation-rule|...',
'can_have_multiple' => true/false],
],
]
]
],
]
]
$exists = $this->databaseManager->connection($connection)
->table($table)
->where($row, $value)
->exists();
$connection = $parameterParts[0];
$table = $parameterParts[1];
$row = $parameterParts[2];
$value = isset($parameterParts[3]) ? $parameterParts[3] : $value;