repo stringlengths 6 63 | path stringlengths 5 140 | func_name stringlengths 3 151 | original_string stringlengths 84 13k | language stringclasses 1
value | code stringlengths 84 13k | code_tokens list | docstring stringlengths 3 47.2k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 91 247 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
zeyon/rest | src/localizer.php | Localizer.getInstance | public static function getInstance($arrAccepted=array(), $strDefault='de') {
if (self::$instance === NULL)
self::$instance = new self($arrAccepted, $strDefault);
return self::$instance;
} | php | public static function getInstance($arrAccepted=array(), $strDefault='de') {
if (self::$instance === NULL)
self::$instance = new self($arrAccepted, $strDefault);
return self::$instance;
} | [
"public",
"static",
"function",
"getInstance",
"(",
"$",
"arrAccepted",
"=",
"array",
"(",
")",
",",
"$",
"strDefault",
"=",
"'de'",
")",
"{",
"if",
"(",
"self",
"::",
"$",
"instance",
"===",
"NULL",
")",
"self",
"::",
"$",
"instance",
"=",
"new",
"s... | Return the current instance
@param array $arrAccepted All accepted languages
@param string $strDefault Default language code
@return Localizer | [
"Return",
"the",
"current",
"instance"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L54-L58 | train |
zeyon/rest | src/localizer.php | Localizer.fileFormatDir | private function fileFormatDir($strDirectory, $strSlash=DIRECTORY_SEPARATOR) {
return substr($strDirectory, -1) != $strSlash ? $strDirectory.$strSlash : $strDirectory;
} | php | private function fileFormatDir($strDirectory, $strSlash=DIRECTORY_SEPARATOR) {
return substr($strDirectory, -1) != $strSlash ? $strDirectory.$strSlash : $strDirectory;
} | [
"private",
"function",
"fileFormatDir",
"(",
"$",
"strDirectory",
",",
"$",
"strSlash",
"=",
"DIRECTORY_SEPARATOR",
")",
"{",
"return",
"substr",
"(",
"$",
"strDirectory",
",",
"-",
"1",
")",
"!=",
"$",
"strSlash",
"?",
"$",
"strDirectory",
".",
"$",
"strS... | Makes sure the directory ends with a slash
@param string $strDirectory
@return string | [
"Makes",
"sure",
"the",
"directory",
"ends",
"with",
"a",
"slash"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L66-L68 | train |
zeyon/rest | src/localizer.php | Localizer.load | public function load($strSourcePath, $strCachePath=false, $bolStore=true) {
$strSourcePath = $this->fileFormatDir($strSourcePath);
$strLang = self::init($this->arrAccepted, $this->strDefault, $bolStore);
$this->strCurrent = $strLang;
if ($strCachePath) {
$strCachePath = $this->fileFormatDir($strCachePath);... | php | public function load($strSourcePath, $strCachePath=false, $bolStore=true) {
$strSourcePath = $this->fileFormatDir($strSourcePath);
$strLang = self::init($this->arrAccepted, $this->strDefault, $bolStore);
$this->strCurrent = $strLang;
if ($strCachePath) {
$strCachePath = $this->fileFormatDir($strCachePath);... | [
"public",
"function",
"load",
"(",
"$",
"strSourcePath",
",",
"$",
"strCachePath",
"=",
"false",
",",
"$",
"bolStore",
"=",
"true",
")",
"{",
"$",
"strSourcePath",
"=",
"$",
"this",
"->",
"fileFormatDir",
"(",
"$",
"strSourcePath",
")",
";",
"$",
"strLan... | Initialized the language variable
@param string $strSourcePath The source path for all localization files (.yml)
@param string $strCachePath The caching path; if specified, cache files will be enabled
@param bool $bolStore Switch to store language in the current session
@return array The language variable array | [
"Initialized",
"the",
"language",
"variable"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L78-L122 | train |
zeyon/rest | src/localizer.php | Localizer.get | public function get($strKey, $bolReturnPath=true) {
$data = $this->arrData;
foreach (explode('.', $strKey) as $p) {
if (isset($data[$p]))
$data = $data[$p];
else
return $bolReturnPath ? $this->returnKey($strKey) : false;
}
// if key was not resolved completely
if ( is_array($data) )
return $... | php | public function get($strKey, $bolReturnPath=true) {
$data = $this->arrData;
foreach (explode('.', $strKey) as $p) {
if (isset($data[$p]))
$data = $data[$p];
else
return $bolReturnPath ? $this->returnKey($strKey) : false;
}
// if key was not resolved completely
if ( is_array($data) )
return $... | [
"public",
"function",
"get",
"(",
"$",
"strKey",
",",
"$",
"bolReturnPath",
"=",
"true",
")",
"{",
"$",
"data",
"=",
"$",
"this",
"->",
"arrData",
";",
"foreach",
"(",
"explode",
"(",
"'.'",
",",
"$",
"strKey",
")",
"as",
"$",
"p",
")",
"{",
"if"... | Gets a variable value
@param string $strKey The path for the language variable (e.g. "messages.error.single")
@param bool $bolReturnPath If set the function will return the variable path, instead of FALSE
@return string If the path could not be resolved, the path will be returned instead | [
"Gets",
"a",
"variable",
"value"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L177-L192 | train |
zeyon/rest | src/localizer.php | Localizer.getDateFormat | public function getDateFormat($strKey) {
$format = $this->get($strKey, false);
return $format ? preg_replace('/%([A-Za-z%])/', '$1', $format) : 'Y-m-d H:i';
} | php | public function getDateFormat($strKey) {
$format = $this->get($strKey, false);
return $format ? preg_replace('/%([A-Za-z%])/', '$1', $format) : 'Y-m-d H:i';
} | [
"public",
"function",
"getDateFormat",
"(",
"$",
"strKey",
")",
"{",
"$",
"format",
"=",
"$",
"this",
"->",
"get",
"(",
"$",
"strKey",
",",
"false",
")",
";",
"return",
"$",
"format",
"?",
"preg_replace",
"(",
"'/%([A-Za-z%])/'",
",",
"'$1'",
",",
"$",... | Returns a date string without "%" for PHP compatibiltiy
@param string $strKey The path for the language variable (e.g. "messages.error.single")
@return string The date format string | [
"Returns",
"a",
"date",
"string",
"without",
"%",
"for",
"PHP",
"compatibiltiy"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L210-L213 | train |
zeyon/rest | src/localizer.php | Localizer.insert | public function insert($strKey, $arrReplace) {
$data = $this->arrData;
foreach (explode('.', $strKey) as $p) {
if (isset($data[$p]))
$data = $data[$p];
else
return $this->returnKey($strKey).'('.json_encode($arrReplace).')';
}
$arrSearch = array();
$arrValues = array();
foreach ($arrReplace as... | php | public function insert($strKey, $arrReplace) {
$data = $this->arrData;
foreach (explode('.', $strKey) as $p) {
if (isset($data[$p]))
$data = $data[$p];
else
return $this->returnKey($strKey).'('.json_encode($arrReplace).')';
}
$arrSearch = array();
$arrValues = array();
foreach ($arrReplace as... | [
"public",
"function",
"insert",
"(",
"$",
"strKey",
",",
"$",
"arrReplace",
")",
"{",
"$",
"data",
"=",
"$",
"this",
"->",
"arrData",
";",
"foreach",
"(",
"explode",
"(",
"'.'",
",",
"$",
"strKey",
")",
"as",
"$",
"p",
")",
"{",
"if",
"(",
"isset... | Gets a variable value and replaces placeholders contained in it
@param string $strKey The path for the language variable (e.g. "messages.error.single")
@param array $arrReplace Associative array containing the placeholder variables
@return string If the path could not be resolved, the path will be returned instead | [
"Gets",
"a",
"variable",
"value",
"and",
"replaces",
"placeholders",
"contained",
"in",
"it"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L222-L239 | train |
zeyon/rest | src/localizer.php | Localizer.replace | public function replace($strTemplate) {
preg_match_all($this->regex, $strTemplate, $matches);
$arrReplace = array();
foreach ($matches[1] as $match) {
$arrReplace[] = $this->get($match);
}
return str_replace($matches[0], $arrReplace, $strTemplate);
} | php | public function replace($strTemplate) {
preg_match_all($this->regex, $strTemplate, $matches);
$arrReplace = array();
foreach ($matches[1] as $match) {
$arrReplace[] = $this->get($match);
}
return str_replace($matches[0], $arrReplace, $strTemplate);
} | [
"public",
"function",
"replace",
"(",
"$",
"strTemplate",
")",
"{",
"preg_match_all",
"(",
"$",
"this",
"->",
"regex",
",",
"$",
"strTemplate",
",",
"$",
"matches",
")",
";",
"$",
"arrReplace",
"=",
"array",
"(",
")",
";",
"foreach",
"(",
"$",
"matches... | Insert placeholders into a string
@param string $strTemplate
@return $strTemplate | [
"Insert",
"placeholders",
"into",
"a",
"string"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L247-L255 | train |
zeyon/rest | src/localizer.php | Localizer.init | public function init($arrAccepted, $strDefault, $bolStore=true) {
$strLang = isset($_GET['lang']) ? $_GET['lang']
: (isset($_SESSION['lang']) ? $_SESSION['lang']
: (isset($_COOKIE['lang']) ? $_COOKIE['lang'] : false));
if (!$strLang || !in_array($strLang, $arrAccepted)) {
$browser = self::askBrowser($arr... | php | public function init($arrAccepted, $strDefault, $bolStore=true) {
$strLang = isset($_GET['lang']) ? $_GET['lang']
: (isset($_SESSION['lang']) ? $_SESSION['lang']
: (isset($_COOKIE['lang']) ? $_COOKIE['lang'] : false));
if (!$strLang || !in_array($strLang, $arrAccepted)) {
$browser = self::askBrowser($arr... | [
"public",
"function",
"init",
"(",
"$",
"arrAccepted",
",",
"$",
"strDefault",
",",
"$",
"bolStore",
"=",
"true",
")",
"{",
"$",
"strLang",
"=",
"isset",
"(",
"$",
"_GET",
"[",
"'lang'",
"]",
")",
"?",
"$",
"_GET",
"[",
"'lang'",
"]",
":",
"(",
"... | Initialized the language variable and stores it in the session
@param array $arrAccepted All accepted languages
@param string $strDefault Default language code
@param bool $bolStore Switch to store language in the current session | [
"Initialized",
"the",
"language",
"variable",
"and",
"stores",
"it",
"in",
"the",
"session"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L264-L278 | train |
zeyon/rest | src/localizer.php | Localizer.askBrowser | public static function askBrowser($arrAccepted, $strDefault='de') {
$res = array('lang' => $strDefault, 'other' => array());
try {
$lang_variable = (
isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])
? $_SERVER['HTTP_ACCEPT_LANGUAGE']
: null
);
if ( empty($lang_variable) )
return $res;
$accepted... | php | public static function askBrowser($arrAccepted, $strDefault='de') {
$res = array('lang' => $strDefault, 'other' => array());
try {
$lang_variable = (
isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])
? $_SERVER['HTTP_ACCEPT_LANGUAGE']
: null
);
if ( empty($lang_variable) )
return $res;
$accepted... | [
"public",
"static",
"function",
"askBrowser",
"(",
"$",
"arrAccepted",
",",
"$",
"strDefault",
"=",
"'de'",
")",
"{",
"$",
"res",
"=",
"array",
"(",
"'lang'",
"=>",
"$",
"strDefault",
",",
"'other'",
"=>",
"array",
"(",
")",
")",
";",
"try",
"{",
"$"... | Returns the accepted browser language
@param array $arrAccepted
@param string $strDefault
@return array {'lang': PRIMARY LANGUAGE, 'other': ADDITIONAL LANGUAGES} | [
"Returns",
"the",
"accepted",
"browser",
"language"
] | da73bd5799c9c44a3b36f618d9cbe769f1541ff1 | https://github.com/zeyon/rest/blob/da73bd5799c9c44a3b36f618d9cbe769f1541ff1/src/localizer.php#L287-L338 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.getWebSrvUser | public function getWebSrvUser() {
$result = '';
if ($this->isOsWindows()) {
return $result;
}
$cmd = "ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1 2>/dev/null";
$output = [];
$exitCode = -1;
exec($cmd, $output, $exitCode);
if (($exitCode !== 0... | php | public function getWebSrvUser() {
$result = '';
if ($this->isOsWindows()) {
return $result;
}
$cmd = "ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1 2>/dev/null";
$output = [];
$exitCode = -1;
exec($cmd, $output, $exitCode);
if (($exitCode !== 0... | [
"public",
"function",
"getWebSrvUser",
"(",
")",
"{",
"$",
"result",
"=",
"''",
";",
"if",
"(",
"$",
"this",
"->",
"isOsWindows",
"(",
")",
")",
"{",
"return",
"$",
"result",
";",
"}",
"$",
"cmd",
"=",
"\"ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|... | Return WEB server user.
@return string Return user name of WEB server | [
"Return",
"WEB",
"server",
"user",
"."
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L102-L119 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.getWebSrvUserGroup | public function getWebSrvUserGroup($username = null) {
$result = '';
if ($this->isOsWindows() || empty($username)) {
return $result;
}
$cmd = 'groups ' . $username . ' | head -1 | cut -d\ -f1 2>/dev/null';
$output = [];
$exitCode = -1;
exec($cmd, $output, $exitCode);
if (($exitCode !== 0) || (count... | php | public function getWebSrvUserGroup($username = null) {
$result = '';
if ($this->isOsWindows() || empty($username)) {
return $result;
}
$cmd = 'groups ' . $username . ' | head -1 | cut -d\ -f1 2>/dev/null';
$output = [];
$exitCode = -1;
exec($cmd, $output, $exitCode);
if (($exitCode !== 0) || (count... | [
"public",
"function",
"getWebSrvUserGroup",
"(",
"$",
"username",
"=",
"null",
")",
"{",
"$",
"result",
"=",
"''",
";",
"if",
"(",
"$",
"this",
"->",
"isOsWindows",
"(",
")",
"||",
"empty",
"(",
"$",
"username",
")",
")",
"{",
"return",
"$",
"result"... | Return group of user.
@param string $username Username for retrieving group.
@return string Return group of user | [
"Return",
"group",
"of",
"user",
"."
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L127-L144 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.isAppInstalled | public function isAppInstalled($configKey = null, $createMarkerFile = true) {
$pathMarkerFileIsInstalled = $this->getPathMarkerFileIsInstalled();
if ($this->_checkMarkerFile($pathMarkerFileIsInstalled)) {
return true;
}
$installTasks = $this->_modelConfigInstaller->getListInstallerTasks();
if (empty($inst... | php | public function isAppInstalled($configKey = null, $createMarkerFile = true) {
$pathMarkerFileIsInstalled = $this->getPathMarkerFileIsInstalled();
if ($this->_checkMarkerFile($pathMarkerFileIsInstalled)) {
return true;
}
$installTasks = $this->_modelConfigInstaller->getListInstallerTasks();
if (empty($inst... | [
"public",
"function",
"isAppInstalled",
"(",
"$",
"configKey",
"=",
"null",
",",
"$",
"createMarkerFile",
"=",
"true",
")",
"{",
"$",
"pathMarkerFileIsInstalled",
"=",
"$",
"this",
"->",
"getPathMarkerFileIsInstalled",
"(",
")",
";",
"if",
"(",
"$",
"this",
... | Check application is installed successfully
@param string $configKey The identifier to check configuration
for application.
@param bool $createMarkerFile If True, create marker file,
if application is installed successfully.
@return bool True, if application is installed successfully.
False otherwise. | [
"Check",
"application",
"is",
"installed",
"successfully"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L170-L214 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.isAppReadyToInstall | public function isAppReadyToInstall() {
$checkPHPversion = $this->checkPhpVersion();
if ($checkPHPversion === false) {
return false;
}
$checkPHPextensions = $this->checkPhpExtensions(true);
if ($checkPHPextensions === false) {
return false;
}
return true;
} | php | public function isAppReadyToInstall() {
$checkPHPversion = $this->checkPhpVersion();
if ($checkPHPversion === false) {
return false;
}
$checkPHPextensions = $this->checkPhpExtensions(true);
if ($checkPHPextensions === false) {
return false;
}
return true;
} | [
"public",
"function",
"isAppReadyToInstall",
"(",
")",
"{",
"$",
"checkPHPversion",
"=",
"$",
"this",
"->",
"checkPhpVersion",
"(",
")",
";",
"if",
"(",
"$",
"checkPHPversion",
"===",
"false",
")",
"{",
"return",
"false",
";",
"}",
"$",
"checkPHPextensions",... | Check application is ready to install
@return bool True, if application is ready to install.
False otherwise. | [
"Check",
"application",
"is",
"ready",
"to",
"install"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L222-L234 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.checkPhpVersion | public function checkPhpVersion() {
$phpVesion = $this->_modelConfigInstaller->getPhpVersionConfig();
if (empty($phpVesion)) {
return null;
}
$result = true;
foreach ($phpVesion as $phpVesionItem) {
if (!is_array($phpVesionItem)) {
continue;
}
$phpVesionItem += ['', null];
list($version, ... | php | public function checkPhpVersion() {
$phpVesion = $this->_modelConfigInstaller->getPhpVersionConfig();
if (empty($phpVesion)) {
return null;
}
$result = true;
foreach ($phpVesion as $phpVesionItem) {
if (!is_array($phpVesionItem)) {
continue;
}
$phpVesionItem += ['', null];
list($version, ... | [
"public",
"function",
"checkPhpVersion",
"(",
")",
"{",
"$",
"phpVesion",
"=",
"$",
"this",
"->",
"_modelConfigInstaller",
"->",
"getPhpVersionConfig",
"(",
")",
";",
"if",
"(",
"empty",
"(",
"$",
"phpVesion",
")",
")",
"{",
"return",
"null",
";",
"}",
"... | Check version of PHP
@return null|bool Return Null, if checking is not configured.
True, if PHP version is compatible. False otherwise. | [
"Check",
"version",
"of",
"PHP"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L242-L270 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.getListDbConn | public function getListDbConn($path = null) {
if (empty($path)) {
$path = APP;
}
$configFile = $path . 'Config' . DS . 'database.php';
$connections = [];
if (file_exists($configFile)) {
$connections = array_keys(ConnectionManager::enumConnectionObjects());
}
return $connections;
} | php | public function getListDbConn($path = null) {
if (empty($path)) {
$path = APP;
}
$configFile = $path . 'Config' . DS . 'database.php';
$connections = [];
if (file_exists($configFile)) {
$connections = array_keys(ConnectionManager::enumConnectionObjects());
}
return $connections;
} | [
"public",
"function",
"getListDbConn",
"(",
"$",
"path",
"=",
"null",
")",
"{",
"if",
"(",
"empty",
"(",
"$",
"path",
")",
")",
"{",
"$",
"path",
"=",
"APP",
";",
"}",
"$",
"configFile",
"=",
"$",
"path",
".",
"'Config'",
".",
"DS",
".",
"'databa... | Return list of configured database connection.
@param string $path Path to database connection configuration file.
@return array List of configured database connection. | [
"Return",
"list",
"of",
"configured",
"database",
"connection",
"."
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L378-L390 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.checkConnectDb | public function checkConnectDb($path = null, $returnBool = false) {
$connections = $this->getListDbConn($path);
if (empty($connections)) {
return null;
}
$cfgConnections = $this->_modelConfigInstaller->getListDbConnConfigs();
if (empty($cfgConnections)) {
return null;
}
$connections = array_inters... | php | public function checkConnectDb($path = null, $returnBool = false) {
$connections = $this->getListDbConn($path);
if (empty($connections)) {
return null;
}
$cfgConnections = $this->_modelConfigInstaller->getListDbConnConfigs();
if (empty($cfgConnections)) {
return null;
}
$connections = array_inters... | [
"public",
"function",
"checkConnectDb",
"(",
"$",
"path",
"=",
"null",
",",
"$",
"returnBool",
"=",
"false",
")",
"{",
"$",
"connections",
"=",
"$",
"this",
"->",
"getListDbConn",
"(",
"$",
"path",
")",
";",
"if",
"(",
"empty",
"(",
"$",
"connections",... | Check connections to database
@param string $path Path to database connection configuration file.
@param bool $returnBool If True, return boolean. Otherwise,
return array otherwise in format:
- key - database connection name;
- value - True, if connection success. Otherwise False or Array or
error messages.
@return nu... | [
"Check",
"connections",
"to",
"database"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L403-L446 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.checkSymLinksExists | public function checkSymLinksExists() {
$symlinksList = $this->_modelConfigInstaller->getListSymlinksCreation();
if (empty($symlinksList)) {
return true;
}
foreach ($symlinksList as $link => $target) {
if (empty($link)) {
continue;
}
if (!file_exists($link) || (!is_link($link) && (DS !== '\\')... | php | public function checkSymLinksExists() {
$symlinksList = $this->_modelConfigInstaller->getListSymlinksCreation();
if (empty($symlinksList)) {
return true;
}
foreach ($symlinksList as $link => $target) {
if (empty($link)) {
continue;
}
if (!file_exists($link) || (!is_link($link) && (DS !== '\\')... | [
"public",
"function",
"checkSymLinksExists",
"(",
")",
"{",
"$",
"symlinksList",
"=",
"$",
"this",
"->",
"_modelConfigInstaller",
"->",
"getListSymlinksCreation",
"(",
")",
";",
"if",
"(",
"empty",
"(",
"$",
"symlinksList",
")",
")",
"{",
"return",
"true",
"... | Check symbolic links exists
@return bool Success | [
"Check",
"symbolic",
"links",
"exists"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L536-L557 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck.checkCronJobsExists | public function checkCronJobsExists() {
if ($this->isOsWindows()) {
return true;
}
$apacheUser = $this->getWebSrvUser();
if (empty($apacheUser)) {
return false;
}
$cronjobsList = $this->_modelConfigInstaller->getListCronJobsCreation();
if (empty($cronjobsList)) {
return true;
}
$output = [... | php | public function checkCronJobsExists() {
if ($this->isOsWindows()) {
return true;
}
$apacheUser = $this->getWebSrvUser();
if (empty($apacheUser)) {
return false;
}
$cronjobsList = $this->_modelConfigInstaller->getListCronJobsCreation();
if (empty($cronjobsList)) {
return true;
}
$output = [... | [
"public",
"function",
"checkCronJobsExists",
"(",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isOsWindows",
"(",
")",
")",
"{",
"return",
"true",
";",
"}",
"$",
"apacheUser",
"=",
"$",
"this",
"->",
"getWebSrvUser",
"(",
")",
";",
"if",
"(",
"empty",
"(... | Check cron jobs exists
@return bool Success | [
"Check",
"cron",
"jobs",
"exists"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L564-L602 | train |
anklimsk/cakephp-console-installer | Model/InstallerCheck.php | InstallerCheck._removeMarkerFile | protected function _removeMarkerFile($path) {
if (empty($path)) {
return false;
}
$oFile = new File($path, false);
if (!$oFile->exists()) {
return false;
}
return $oFile->delete();
} | php | protected function _removeMarkerFile($path) {
if (empty($path)) {
return false;
}
$oFile = new File($path, false);
if (!$oFile->exists()) {
return false;
}
return $oFile->delete();
} | [
"protected",
"function",
"_removeMarkerFile",
"(",
"$",
"path",
")",
"{",
"if",
"(",
"empty",
"(",
"$",
"path",
")",
")",
"{",
"return",
"false",
";",
"}",
"$",
"oFile",
"=",
"new",
"File",
"(",
"$",
"path",
",",
"false",
")",
";",
"if",
"(",
"!"... | Remove marker file
@param string $path Path to marker file.
@return bool True, if file removed successful. False otherwise. | [
"Remove",
"marker",
"file"
] | 76136550e856ff4f8fd3634b77633f86510f63e9 | https://github.com/anklimsk/cakephp-console-installer/blob/76136550e856ff4f8fd3634b77633f86510f63e9/Model/InstallerCheck.php#L668-L679 | train |
phpextra/event-manager-silex-provider | src/PHPExtra/EventManager/Silex/ProxyMapper.php | ProxyMapper.createProxyEvent | public function createProxyEvent(Event $event)
{
if ($event instanceof GetResponseForControllerResultEvent) {
$silexEvent = new PostDispatchEvent($event);
} elseif ($event instanceof GetResponseEvent) {
$silexEvent = new RequestEvent($event);
} elseif ($event instan... | php | public function createProxyEvent(Event $event)
{
if ($event instanceof GetResponseForControllerResultEvent) {
$silexEvent = new PostDispatchEvent($event);
} elseif ($event instanceof GetResponseEvent) {
$silexEvent = new RequestEvent($event);
} elseif ($event instan... | [
"public",
"function",
"createProxyEvent",
"(",
"Event",
"$",
"event",
")",
"{",
"if",
"(",
"$",
"event",
"instanceof",
"GetResponseForControllerResultEvent",
")",
"{",
"$",
"silexEvent",
"=",
"new",
"PostDispatchEvent",
"(",
"$",
"event",
")",
";",
"}",
"elsei... | Create proxy event for given Symfony dispatcher event
@param Event $event
@return EventInterface | [
"Create",
"proxy",
"event",
"for",
"given",
"Symfony",
"dispatcher",
"event"
] | 9952b237feffa5a469dd2976317736a570526249 | https://github.com/phpextra/event-manager-silex-provider/blob/9952b237feffa5a469dd2976317736a570526249/src/PHPExtra/EventManager/Silex/ProxyMapper.php#L37-L68 | train |
comodojo/extender.framework | src/Comodojo/Extender/Utils/Checks.php | Checks.database | final public static function database(Configuration $configuration) {
try {
$dbh = Database::init($configuration);
$dbh->connect();
$manager = $dbh->getSchemaManager();
$manager->getTable($configuration->get('database-jobs-table'));
$manager->getT... | php | final public static function database(Configuration $configuration) {
try {
$dbh = Database::init($configuration);
$dbh->connect();
$manager = $dbh->getSchemaManager();
$manager->getTable($configuration->get('database-jobs-table'));
$manager->getT... | [
"final",
"public",
"static",
"function",
"database",
"(",
"Configuration",
"$",
"configuration",
")",
"{",
"try",
"{",
"$",
"dbh",
"=",
"Database",
"::",
"init",
"(",
"$",
"configuration",
")",
";",
"$",
"dbh",
"->",
"connect",
"(",
")",
";",
"$",
"man... | Check if database is available and initialized correctly
@return bool | [
"Check",
"if",
"database",
"is",
"available",
"and",
"initialized",
"correctly"
] | cc9a4fbd29fe0e80965ce4535091c956aad70b27 | https://github.com/comodojo/extender.framework/blob/cc9a4fbd29fe0e80965ce4535091c956aad70b27/src/Comodojo/Extender/Utils/Checks.php#L63-L89 | train |
matryoshka-model/matryoshka | library/Object/Service/ObjectAbstractServiceFactory.php | ObjectAbstractServiceFactory.getActiveRecordCriteriaByName | protected function getActiveRecordCriteriaByName($serviceLocator, $name)
{
$criteria = $serviceLocator->get($name);
if (!$criteria instanceof AbstractCriteria) {
throw new Exception\ServiceNotCreatedException(sprintf(
'Instance of type %s is invalid; must implement %s',
... | php | protected function getActiveRecordCriteriaByName($serviceLocator, $name)
{
$criteria = $serviceLocator->get($name);
if (!$criteria instanceof AbstractCriteria) {
throw new Exception\ServiceNotCreatedException(sprintf(
'Instance of type %s is invalid; must implement %s',
... | [
"protected",
"function",
"getActiveRecordCriteriaByName",
"(",
"$",
"serviceLocator",
",",
"$",
"name",
")",
"{",
"$",
"criteria",
"=",
"$",
"serviceLocator",
"->",
"get",
"(",
"$",
"name",
")",
";",
"if",
"(",
"!",
"$",
"criteria",
"instanceof",
"AbstractCr... | Retrieve PaginableCriteriaInterface object from config
@param ServiceLocatorInterface $serviceLocator
@param $name
@return AbstractCriteria
@throws Exception\ServiceNotCreatedException | [
"Retrieve",
"PaginableCriteriaInterface",
"object",
"from",
"config"
] | 51792df00d9897f556d5a3c53193eed0974ff09d | https://github.com/matryoshka-model/matryoshka/blob/51792df00d9897f556d5a3c53193eed0974ff09d/library/Object/Service/ObjectAbstractServiceFactory.php#L137-L148 | train |
andyburton/Sonic-Framework | src/Controller/JSON/Session.php | Session.authFail | protected function authFail ($message = null)
{
$this->error ($message);
$this->view->response['auth_fail'] = TRUE;
return FALSE;
} | php | protected function authFail ($message = null)
{
$this->error ($message);
$this->view->response['auth_fail'] = TRUE;
return FALSE;
} | [
"protected",
"function",
"authFail",
"(",
"$",
"message",
"=",
"null",
")",
"{",
"$",
"this",
"->",
"error",
"(",
"$",
"message",
")",
";",
"$",
"this",
"->",
"view",
"->",
"response",
"[",
"'auth_fail'",
"]",
"=",
"TRUE",
";",
"return",
"FALSE",
";"... | Set response for an authentication failure
@param string $message Error message
@return false | [
"Set",
"response",
"for",
"an",
"authentication",
"failure"
] | a5999448a0abab4d542413002a780ede391e7374 | https://github.com/andyburton/Sonic-Framework/blob/a5999448a0abab4d542413002a780ede391e7374/src/Controller/JSON/Session.php#L89-L94 | train |
luismareze/geomanager | src/app/Http/Controllers/Admin/GeoCrudController.php | GeoCrudController.useTemplate | public function useTemplate($template_name = false)
{
$templates = $this->getTemplates();
// set the default template
if ($template_name == false) {
$template_name = $templates[0]->name;
}
// actually use the template
if ($template_name) {
... | php | public function useTemplate($template_name = false)
{
$templates = $this->getTemplates();
// set the default template
if ($template_name == false) {
$template_name = $templates[0]->name;
}
// actually use the template
if ($template_name) {
... | [
"public",
"function",
"useTemplate",
"(",
"$",
"template_name",
"=",
"false",
")",
"{",
"$",
"templates",
"=",
"$",
"this",
"->",
"getTemplates",
"(",
")",
";",
"// set the default template\r",
"if",
"(",
"$",
"template_name",
"==",
"false",
")",
"{",
"$",
... | Add the fields defined for a specific template.
@param string $template_name The name of the template that should be used in the current form. | [
"Add",
"the",
"fields",
"defined",
"for",
"a",
"specific",
"template",
"."
] | 9325c4f0e2917abc2ec3ce99379d2a7fe7368d32 | https://github.com/luismareze/geomanager/blob/9325c4f0e2917abc2ec3ce99379d2a7fe7368d32/src/app/Http/Controllers/Admin/GeoCrudController.php#L150-L163 | train |
luismareze/geomanager | src/app/Http/Controllers/Admin/GeoCrudController.php | GeoCrudController.getTemplates | public function getTemplates()
{
$templates_array = [];
$templates_trait = new \ReflectionClass('App\GeoTemplates');
$templates = $templates_trait->getMethods();
if (! count($templates)) {
abort('403', 'No templates have been found.');
}
retu... | php | public function getTemplates()
{
$templates_array = [];
$templates_trait = new \ReflectionClass('App\GeoTemplates');
$templates = $templates_trait->getMethods();
if (! count($templates)) {
abort('403', 'No templates have been found.');
}
retu... | [
"public",
"function",
"getTemplates",
"(",
")",
"{",
"$",
"templates_array",
"=",
"[",
"]",
";",
"$",
"templates_trait",
"=",
"new",
"\\",
"ReflectionClass",
"(",
"'App\\GeoTemplates'",
")",
";",
"$",
"templates",
"=",
"$",
"templates_trait",
"->",
"getMethods... | Get all defined templates. | [
"Get",
"all",
"defined",
"templates",
"."
] | 9325c4f0e2917abc2ec3ce99379d2a7fe7368d32 | https://github.com/luismareze/geomanager/blob/9325c4f0e2917abc2ec3ce99379d2a7fe7368d32/src/app/Http/Controllers/Admin/GeoCrudController.php#L168-L180 | train |
luismareze/geomanager | src/app/Http/Controllers/Admin/GeoCrudController.php | GeoCrudController.getTemplatesArray | public function getTemplatesArray()
{
$templates = $this->getTemplates();
foreach ($templates as $template) {
$templates_array[$template->name] = $this->crud->makeLabel($template->name);
}
return $templates_array;
} | php | public function getTemplatesArray()
{
$templates = $this->getTemplates();
foreach ($templates as $template) {
$templates_array[$template->name] = $this->crud->makeLabel($template->name);
}
return $templates_array;
} | [
"public",
"function",
"getTemplatesArray",
"(",
")",
"{",
"$",
"templates",
"=",
"$",
"this",
"->",
"getTemplates",
"(",
")",
";",
"foreach",
"(",
"$",
"templates",
"as",
"$",
"template",
")",
"{",
"$",
"templates_array",
"[",
"$",
"template",
"->",
"nam... | Get all defined template as an array.
Used to populate the template dropdown in the create/update forms. | [
"Get",
"all",
"defined",
"template",
"as",
"an",
"array",
"."
] | 9325c4f0e2917abc2ec3ce99379d2a7fe7368d32 | https://github.com/luismareze/geomanager/blob/9325c4f0e2917abc2ec3ce99379d2a7fe7368d32/src/app/Http/Controllers/Admin/GeoCrudController.php#L187-L196 | train |
as3io/modlr | src/Metadata/EmbeddedPropMetadata.php | EmbeddedPropMetadata.validateType | protected function validateType($embedType)
{
$valid = ['one', 'many'];
if (!in_array($embedType, $valid)) {
throw MetadataException::invalidRelType($embedType, $valid);
}
return true;
} | php | protected function validateType($embedType)
{
$valid = ['one', 'many'];
if (!in_array($embedType, $valid)) {
throw MetadataException::invalidRelType($embedType, $valid);
}
return true;
} | [
"protected",
"function",
"validateType",
"(",
"$",
"embedType",
")",
"{",
"$",
"valid",
"=",
"[",
"'one'",
",",
"'many'",
"]",
";",
"if",
"(",
"!",
"in_array",
"(",
"$",
"embedType",
",",
"$",
"valid",
")",
")",
"{",
"throw",
"MetadataException",
"::",... | Validates the embed type.
@param string $embedType
@return bool
@throws MetadataException | [
"Validates",
"the",
"embed",
"type",
"."
] | 7e684b88bb22a2e18397df9402075c6533084b16 | https://github.com/as3io/modlr/blob/7e684b88bb22a2e18397df9402075c6533084b16/src/Metadata/EmbeddedPropMetadata.php#L85-L92 | train |
activecollab/databaseconnection | src/Record/ValueCaster.php | ValueCaster.castRowValues | public function castRowValues(array &$row)
{
foreach ($row as $field_name => $value) {
$row[$field_name] = $this->castValue($field_name, $value);
}
} | php | public function castRowValues(array &$row)
{
foreach ($row as $field_name => $value) {
$row[$field_name] = $this->castValue($field_name, $value);
}
} | [
"public",
"function",
"castRowValues",
"(",
"array",
"&",
"$",
"row",
")",
"{",
"foreach",
"(",
"$",
"row",
"as",
"$",
"field_name",
"=>",
"$",
"value",
")",
"{",
"$",
"row",
"[",
"$",
"field_name",
"]",
"=",
"$",
"this",
"->",
"castValue",
"(",
"$... | Cast row value to native PHP types based on caster settings.
@param array $row | [
"Cast",
"row",
"value",
"to",
"native",
"PHP",
"types",
"based",
"on",
"caster",
"settings",
"."
] | f38accc083863262325858a3d72a5afb6b4513f8 | https://github.com/activecollab/databaseconnection/blob/f38accc083863262325858a3d72a5afb6b4513f8/src/Record/ValueCaster.php#L43-L48 | train |
activecollab/databaseconnection | src/Record/ValueCaster.php | ValueCaster.castValue | public function castValue($field_name, $value)
{
if ($value === null) {
return null; // NULL remains NULL
}
switch ($this->getTypeByFieldName($field_name)) {
case self::CAST_INT:
return (int) $value;
case self::CAST_FLOAT:
... | php | public function castValue($field_name, $value)
{
if ($value === null) {
return null; // NULL remains NULL
}
switch ($this->getTypeByFieldName($field_name)) {
case self::CAST_INT:
return (int) $value;
case self::CAST_FLOAT:
... | [
"public",
"function",
"castValue",
"(",
"$",
"field_name",
",",
"$",
"value",
")",
"{",
"if",
"(",
"$",
"value",
"===",
"null",
")",
"{",
"return",
"null",
";",
"// NULL remains NULL",
"}",
"switch",
"(",
"$",
"this",
"->",
"getTypeByFieldName",
"(",
"$"... | Cast a single value.
@param string $field_name
@param mixed $value
@return mixed | [
"Cast",
"a",
"single",
"value",
"."
] | f38accc083863262325858a3d72a5afb6b4513f8 | https://github.com/activecollab/databaseconnection/blob/f38accc083863262325858a3d72a5afb6b4513f8/src/Record/ValueCaster.php#L58-L92 | train |
activecollab/databaseconnection | src/Record/ValueCaster.php | ValueCaster.getTypeByFieldName | public function getTypeByFieldName($field_name)
{
if (isset($this->dictated[$field_name])) {
return $this->dictated[$field_name];
}
if (substr($field_name, 0, 3) === 'is_' || in_array(substr($field_name, 0, 4), ['has_', 'had_', 'was_']) || in_array(substr($field_name, 0, 5), ['w... | php | public function getTypeByFieldName($field_name)
{
if (isset($this->dictated[$field_name])) {
return $this->dictated[$field_name];
}
if (substr($field_name, 0, 3) === 'is_' || in_array(substr($field_name, 0, 4), ['has_', 'had_', 'was_']) || in_array(substr($field_name, 0, 5), ['w... | [
"public",
"function",
"getTypeByFieldName",
"(",
"$",
"field_name",
")",
"{",
"if",
"(",
"isset",
"(",
"$",
"this",
"->",
"dictated",
"[",
"$",
"field_name",
"]",
")",
")",
"{",
"return",
"$",
"this",
"->",
"dictated",
"[",
"$",
"field_name",
"]",
";",... | Return type by field name.
@param string $field_name
@return string | [
"Return",
"type",
"by",
"field",
"name",
"."
] | f38accc083863262325858a3d72a5afb6b4513f8 | https://github.com/activecollab/databaseconnection/blob/f38accc083863262325858a3d72a5afb6b4513f8/src/Record/ValueCaster.php#L101-L126 | train |
PhoxPHP/Glider | src/Query/Builder/QueryBinder.php | QueryBinder.createBinding | public function createBinding(String $key, $queryPart, $params=[], $expr='', $with='', $addValue=true)
{
if (!array_key_exists($key, $this->bindings)) {
return false;
}
if ($key == 'sql') {
return $queryPart;
}
if ($addValue == true) {
$this->bindings[$key] = $queryPart;
}
return $this->$key(... | php | public function createBinding(String $key, $queryPart, $params=[], $expr='', $with='', $addValue=true)
{
if (!array_key_exists($key, $this->bindings)) {
return false;
}
if ($key == 'sql') {
return $queryPart;
}
if ($addValue == true) {
$this->bindings[$key] = $queryPart;
}
return $this->$key(... | [
"public",
"function",
"createBinding",
"(",
"String",
"$",
"key",
",",
"$",
"queryPart",
",",
"$",
"params",
"=",
"[",
"]",
",",
"$",
"expr",
"=",
"''",
",",
"$",
"with",
"=",
"''",
",",
"$",
"addValue",
"=",
"true",
")",
"{",
"if",
"(",
"!",
"... | This method bindings together queries created with
the query builder.
@param $key <String>
@param $queryPart <Mixed>
@param $params <Mixed>
@param $expr <Mixed>
@param $with <Mixed>
@access public
@return <Mixed> | [
"This",
"method",
"bindings",
"together",
"queries",
"created",
"with",
"the",
"query",
"builder",
"."
] | 17aaf3b7bb6e70ea3ae1f04e30a7690e884bf042 | https://github.com/PhoxPHP/Glider/blob/17aaf3b7bb6e70ea3ae1f04e30a7690e884bf042/src/Query/Builder/QueryBinder.php#L90-L105 | train |
PhoxPHP/Glider | src/Query/Builder/QueryBinder.php | QueryBinder.alias | public function alias(String $column, String $alias)
{
// if (!$this->getBinding('select') || empty($this->getBinding('select'))) {
// Since this method cannot be used without the SELECT statement,
// we will throw an exception if `SELECT` binding is null or false.
// throw new RuntimeException(sprintf('Ca... | php | public function alias(String $column, String $alias)
{
// if (!$this->getBinding('select') || empty($this->getBinding('select'))) {
// Since this method cannot be used without the SELECT statement,
// we will throw an exception if `SELECT` binding is null or false.
// throw new RuntimeException(sprintf('Ca... | [
"public",
"function",
"alias",
"(",
"String",
"$",
"column",
",",
"String",
"$",
"alias",
")",
"{",
"// if (!$this->getBinding('select') || empty($this->getBinding('select'))) {",
"// Since this method cannot be used without the SELECT statement,",
"// we will throw an exception if `SE... | Create and return alias for a column.
@param $column <String>
@param $alias <String>
@access public
@return <String> | [
"Create",
"and",
"return",
"alias",
"for",
"a",
"column",
"."
] | 17aaf3b7bb6e70ea3ae1f04e30a7690e884bf042 | https://github.com/PhoxPHP/Glider/blob/17aaf3b7bb6e70ea3ae1f04e30a7690e884bf042/src/Query/Builder/QueryBinder.php#L125-L134 | train |
infusephp/auth | src/Libs/UserRegistration.php | UserRegistration.getTemporaryUser | public function getTemporaryUser($email)
{
$email = trim(strtolower($email));
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
return false;
}
$userClass = $this->auth->getUserClass();
$user = $userClass::where('email', $email)->first();
if (!$user) {
... | php | public function getTemporaryUser($email)
{
$email = trim(strtolower($email));
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
return false;
}
$userClass = $this->auth->getUserClass();
$user = $userClass::where('email', $email)->first();
if (!$user) {
... | [
"public",
"function",
"getTemporaryUser",
"(",
"$",
"email",
")",
"{",
"$",
"email",
"=",
"trim",
"(",
"strtolower",
"(",
"$",
"email",
")",
")",
";",
"if",
"(",
"!",
"filter_var",
"(",
"$",
"email",
",",
"FILTER_VALIDATE_EMAIL",
")",
")",
"{",
"return... | Gets a temporary user from an email address if one exists.
@param string $email email address
@return UserInterface|false | [
"Gets",
"a",
"temporary",
"user",
"from",
"an",
"email",
"address",
"if",
"one",
"exists",
"."
] | 720280b4b2635572f331afe8d082e3e88cf54eb7 | https://github.com/infusephp/auth/blob/720280b4b2635572f331afe8d082e3e88cf54eb7/src/Libs/UserRegistration.php#L72-L91 | train |
infusephp/auth | src/Libs/UserRegistration.php | UserRegistration.createTemporaryUser | public function createTemporaryUser($parameters)
{
$email = trim(strtolower(array_value($parameters, 'email')));
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
throw new AuthException('Invalid email address');
}
$insertArray = array_replace($parameters, ['enabled' => ... | php | public function createTemporaryUser($parameters)
{
$email = trim(strtolower(array_value($parameters, 'email')));
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
throw new AuthException('Invalid email address');
}
$insertArray = array_replace($parameters, ['enabled' => ... | [
"public",
"function",
"createTemporaryUser",
"(",
"$",
"parameters",
")",
"{",
"$",
"email",
"=",
"trim",
"(",
"strtolower",
"(",
"array_value",
"(",
"$",
"parameters",
",",
"'email'",
")",
")",
")",
";",
"if",
"(",
"!",
"filter_var",
"(",
"$",
"email",
... | Creates a temporary user. Useful for creating invites.
@param array $parameters user data
@throws AuthException when the user cannot be created.
@return UserInterface temporary user | [
"Creates",
"a",
"temporary",
"user",
".",
"Useful",
"for",
"creating",
"invites",
"."
] | 720280b4b2635572f331afe8d082e3e88cf54eb7 | https://github.com/infusephp/auth/blob/720280b4b2635572f331afe8d082e3e88cf54eb7/src/Libs/UserRegistration.php#L102-L137 | train |
infusephp/auth | src/Libs/UserRegistration.php | UserRegistration.upgradeTemporaryUser | public function upgradeTemporaryUser(UserInterface $user, $values = [])
{
if (!$user->isTemporary()) {
throw new AuthException('Cannot upgrade a non-temporary account');
}
$values = array_replace($values, [
'created_at' => Utility::unixToDb(time()),
'enab... | php | public function upgradeTemporaryUser(UserInterface $user, $values = [])
{
if (!$user->isTemporary()) {
throw new AuthException('Cannot upgrade a non-temporary account');
}
$values = array_replace($values, [
'created_at' => Utility::unixToDb(time()),
'enab... | [
"public",
"function",
"upgradeTemporaryUser",
"(",
"UserInterface",
"$",
"user",
",",
"$",
"values",
"=",
"[",
"]",
")",
"{",
"if",
"(",
"!",
"$",
"user",
"->",
"isTemporary",
"(",
")",
")",
"{",
"throw",
"new",
"AuthException",
"(",
"'Cannot upgrade a non... | Upgrades the user from temporary to a fully registered account.
@param UserInterface $user
@param array $values properties to set on user model
@throws AuthException when the upgrade fails.
@return $this | [
"Upgrades",
"the",
"user",
"from",
"temporary",
"to",
"a",
"fully",
"registered",
"account",
"."
] | 720280b4b2635572f331afe8d082e3e88cf54eb7 | https://github.com/infusephp/auth/blob/720280b4b2635572f331afe8d082e3e88cf54eb7/src/Libs/UserRegistration.php#L149-L186 | train |
atelierdisko/cute_php | src/Worker.php | Worker.dispatch | public function dispatch() {
while (true) {
if ($this->_break) {
break;
}
if ($this->_paused) {
$this->_title('Paused, waiting');
$this->_log->debug('Paused, waiting.');
}
while ($this->_paused) {
pcntl_signal_dispatch();
sleep($this->_interval);
}
$this->_title('Waiting for ... | php | public function dispatch() {
while (true) {
if ($this->_break) {
break;
}
if ($this->_paused) {
$this->_title('Paused, waiting');
$this->_log->debug('Paused, waiting.');
}
while ($this->_paused) {
pcntl_signal_dispatch();
sleep($this->_interval);
}
$this->_title('Waiting for ... | [
"public",
"function",
"dispatch",
"(",
")",
"{",
"while",
"(",
"true",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"_break",
")",
"{",
"break",
";",
"}",
"if",
"(",
"$",
"this",
"->",
"_paused",
")",
"{",
"$",
"this",
"->",
"_title",
"(",
"'Paused, w... | Main method to start processing loop and dispatch jobs.
@return boolean | [
"Main",
"method",
"to",
"start",
"processing",
"loop",
"and",
"dispatch",
"jobs",
"."
] | 0302ed6f819794ed57a6663361ae4527aa05e183 | https://github.com/atelierdisko/cute_php/blob/0302ed6f819794ed57a6663361ae4527aa05e183/src/Worker.php#L118-L155 | train |
atelierdisko/cute_php | src/Worker.php | Worker._trapSignals | protected function _trapSignals() {
$this->_log->debug('Trapping signals.');
$handler = function($number) {
switch ($number) {
case SIGQUIT:
$this->_log->debug('Received SIGQUIT, waiting and exiting.');
$this->_break = true;
$this->_connection->disconnect();
exit(0);
case SIGINT:
... | php | protected function _trapSignals() {
$this->_log->debug('Trapping signals.');
$handler = function($number) {
switch ($number) {
case SIGQUIT:
$this->_log->debug('Received SIGQUIT, waiting and exiting.');
$this->_break = true;
$this->_connection->disconnect();
exit(0);
case SIGINT:
... | [
"protected",
"function",
"_trapSignals",
"(",
")",
"{",
"$",
"this",
"->",
"_log",
"->",
"debug",
"(",
"'Trapping signals.'",
")",
";",
"$",
"handler",
"=",
"function",
"(",
"$",
"number",
")",
"{",
"switch",
"(",
"$",
"number",
")",
"{",
"case",
"SIGQ... | Registers signal handlers and handles signals once received.
Controls the current processing loop by setting object properties
and using the process manager.
@return void | [
"Registers",
"signal",
"handlers",
"and",
"handles",
"signals",
"once",
"received",
".",
"Controls",
"the",
"current",
"processing",
"loop",
"by",
"setting",
"object",
"properties",
"and",
"using",
"the",
"process",
"manager",
"."
] | 0302ed6f819794ed57a6663361ae4527aa05e183 | https://github.com/atelierdisko/cute_php/blob/0302ed6f819794ed57a6663361ae4527aa05e183/src/Worker.php#L164-L199 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.getAttribute | public function getAttribute($attribute)
{
return !empty($this->attributes[$attribute]) ? $this->attributes[$attribute] : null;
} | php | public function getAttribute($attribute)
{
return !empty($this->attributes[$attribute]) ? $this->attributes[$attribute] : null;
} | [
"public",
"function",
"getAttribute",
"(",
"$",
"attribute",
")",
"{",
"return",
"!",
"empty",
"(",
"$",
"this",
"->",
"attributes",
"[",
"$",
"attribute",
"]",
")",
"?",
"$",
"this",
"->",
"attributes",
"[",
"$",
"attribute",
"]",
":",
"null",
";",
... | Get a specific attribute for this tag.
@param string @attribute
@return string|null | [
"Get",
"a",
"specific",
"attribute",
"for",
"this",
"tag",
"."
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L243-L246 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.appendContent | public function appendContent($content)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t contain content.'
);
}
$this->content .= $content;
return $this;
} | php | public function appendContent($content)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t contain content.'
);
}
$this->content .= $content;
return $this;
} | [
"public",
"function",
"appendContent",
"(",
"$",
"content",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isVoid",
")",
"{",
"throw",
"new",
"Exception",
"\\",
"RuntimeException",
"(",
"'Void elements can\\'t contain content.'",
")",
";",
"}",
"$",
"this",
"->",
... | Append content before other content
@param string $content
@throws Exception\RuntimeException
@return \SxCore\Html\HtmlElement | [
"Append",
"content",
"before",
"other",
"content"
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L293-L304 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.prependContent | public function prependContent($content)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t contain content.'
);
}
$this->content = $content . $this->content;
return $this;
} | php | public function prependContent($content)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t contain content.'
);
}
$this->content = $content . $this->content;
return $this;
} | [
"public",
"function",
"prependContent",
"(",
"$",
"content",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isVoid",
")",
"{",
"throw",
"new",
"Exception",
"\\",
"RuntimeException",
"(",
"'Void elements can\\'t contain content.'",
")",
";",
"}",
"$",
"this",
"->",
... | Prepend content before other content
@param string $content
@throws Exception\RuntimeException
@return \SxCore\Html\HtmlElement | [
"Prepend",
"content",
"before",
"other",
"content"
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L314-L325 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.addChild | public function addChild(self $child)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t have child elements.'
);
}
$this->children[] = $child;
return $this;
} | php | public function addChild(self $child)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t have child elements.'
);
}
$this->children[] = $child;
return $this;
} | [
"public",
"function",
"addChild",
"(",
"self",
"$",
"child",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isVoid",
")",
"{",
"throw",
"new",
"Exception",
"\\",
"RuntimeException",
"(",
"'Void elements can\\'t have child elements.'",
")",
";",
"}",
"$",
"this",
"... | Add child to tag
@param \SxCore\Html\HtmlElement $child
@throws Exception\RuntimeException
@return \SxCore\Html\HtmlElement | [
"Add",
"child",
"to",
"tag"
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L376-L387 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.addChildren | public function addChildren(array $children)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t have child elements.'
);
}
foreach ($children as $child) {
$this->addChild($child);
}
return $... | php | public function addChildren(array $children)
{
if ($this->isVoid) {
throw new Exception\RuntimeException(
'Void elements can\'t have child elements.'
);
}
foreach ($children as $child) {
$this->addChild($child);
}
return $... | [
"public",
"function",
"addChildren",
"(",
"array",
"$",
"children",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isVoid",
")",
"{",
"throw",
"new",
"Exception",
"\\",
"RuntimeException",
"(",
"'Void elements can\\'t have child elements.'",
")",
";",
"}",
"foreach",
... | Add children to tag
@param array $children
@throws Exception\RuntimeException
@return \SxCore\Html\HtmlElement | [
"Add",
"children",
"to",
"tag"
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L397-L410 | train |
SpoonX/SxCore | library/SxCore/Html/HtmlElement.php | HtmlElement.renderAttributes | protected function renderAttributes()
{
$attributes = '';
foreach ($this->attributes as $key => $value) {
$attributes .= " $key" . (null !== $value ? "=\"$value\"" : '');
}
return $attributes;
} | php | protected function renderAttributes()
{
$attributes = '';
foreach ($this->attributes as $key => $value) {
$attributes .= " $key" . (null !== $value ? "=\"$value\"" : '');
}
return $attributes;
} | [
"protected",
"function",
"renderAttributes",
"(",
")",
"{",
"$",
"attributes",
"=",
"''",
";",
"foreach",
"(",
"$",
"this",
"->",
"attributes",
"as",
"$",
"key",
"=>",
"$",
"value",
")",
"{",
"$",
"attributes",
".=",
"\" $key\"",
".",
"(",
"null",
"!==... | Render tag attributes
@return string | [
"Render",
"tag",
"attributes"
] | 8f914e3737826c408443d6d458dd9a169c82c940 | https://github.com/SpoonX/SxCore/blob/8f914e3737826c408443d6d458dd9a169c82c940/library/SxCore/Html/HtmlElement.php#L515-L524 | train |
ekyna/AdminBundle | Menu/MenuGroup.php | MenuGroup.addEntry | public function addEntry(MenuEntry $entry)
{
if ($this->prepared) {
throw new \RuntimeException('MenuGroup has been prepared and can\'t receive new entries.');
}
$this->entries[] = $entry;
return $this;
} | php | public function addEntry(MenuEntry $entry)
{
if ($this->prepared) {
throw new \RuntimeException('MenuGroup has been prepared and can\'t receive new entries.');
}
$this->entries[] = $entry;
return $this;
} | [
"public",
"function",
"addEntry",
"(",
"MenuEntry",
"$",
"entry",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"prepared",
")",
"{",
"throw",
"new",
"\\",
"RuntimeException",
"(",
"'MenuGroup has been prepared and can\\'t receive new entries.'",
")",
";",
"}",
"$",
"... | Adds an entry.
@param MenuEntry $entry
@throws \RuntimeException
@return MenuGroup | [
"Adds",
"an",
"entry",
"."
] | 3f58e253ae9cf651add7f3d587caec80eaea459a | https://github.com/ekyna/AdminBundle/blob/3f58e253ae9cf651add7f3d587caec80eaea459a/Menu/MenuGroup.php#L236-L244 | train |
ekyna/AdminBundle | Menu/MenuGroup.php | MenuGroup.prepare | public function prepare()
{
if ($this->prepared) {
return;
}
usort($this->entries, function(MenuEntry $a, MenuEntry $b) {
if ($a->getPosition() == $b->getPosition()) {
return 0;
}
return $a->getPosition() > $b->getPosition() ? 1... | php | public function prepare()
{
if ($this->prepared) {
return;
}
usort($this->entries, function(MenuEntry $a, MenuEntry $b) {
if ($a->getPosition() == $b->getPosition()) {
return 0;
}
return $a->getPosition() > $b->getPosition() ? 1... | [
"public",
"function",
"prepare",
"(",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"prepared",
")",
"{",
"return",
";",
"}",
"usort",
"(",
"$",
"this",
"->",
"entries",
",",
"function",
"(",
"MenuEntry",
"$",
"a",
",",
"MenuEntry",
"$",
"b",
")",
"{",
... | Prepares the group for rendering. | [
"Prepares",
"the",
"group",
"for",
"rendering",
"."
] | 3f58e253ae9cf651add7f3d587caec80eaea459a | https://github.com/ekyna/AdminBundle/blob/3f58e253ae9cf651add7f3d587caec80eaea459a/Menu/MenuGroup.php#L259-L271 | train |
armazon/armazon | src/Armazon/Sesion/Manejador.php | Manejador.generarId | private function generarId()
{
if (function_exists('random_bytes')) {
$semilla = random_bytes(32);
} elseif (function_exists('mcrypt_create_iv')) {
$semilla = mcrypt_create_iv(32, MCRYPT_DEV_URANDOM);
} elseif (function_exists('openssl_random_pseudo_bytes')) {
... | php | private function generarId()
{
if (function_exists('random_bytes')) {
$semilla = random_bytes(32);
} elseif (function_exists('mcrypt_create_iv')) {
$semilla = mcrypt_create_iv(32, MCRYPT_DEV_URANDOM);
} elseif (function_exists('openssl_random_pseudo_bytes')) {
... | [
"private",
"function",
"generarId",
"(",
")",
"{",
"if",
"(",
"function_exists",
"(",
"'random_bytes'",
")",
")",
"{",
"$",
"semilla",
"=",
"random_bytes",
"(",
"32",
")",
";",
"}",
"elseif",
"(",
"function_exists",
"(",
"'mcrypt_create_iv'",
")",
")",
"{"... | Genera un identificador nuevo usando una semilla aleatoria
@return string | [
"Genera",
"un",
"identificador",
"nuevo",
"usando",
"una",
"semilla",
"aleatoria"
] | ec76385ff80ce1659d81bc4050ef9483ab0ebe52 | https://github.com/armazon/armazon/blob/ec76385ff80ce1659d81bc4050ef9483ab0ebe52/src/Armazon/Sesion/Manejador.php#L34-L47 | train |
armazon/armazon | src/Armazon/Sesion/Manejador.php | Manejador.anunciar | public function anunciar($mensaje, $tipo = 'error')
{
$this->requerirInicio();
$this->datos['__anuncio']['mensaje'] = $mensaje;
$this->datos['__anuncio']['tipo'] = $tipo;
} | php | public function anunciar($mensaje, $tipo = 'error')
{
$this->requerirInicio();
$this->datos['__anuncio']['mensaje'] = $mensaje;
$this->datos['__anuncio']['tipo'] = $tipo;
} | [
"public",
"function",
"anunciar",
"(",
"$",
"mensaje",
",",
"$",
"tipo",
"=",
"'error'",
")",
"{",
"$",
"this",
"->",
"requerirInicio",
"(",
")",
";",
"$",
"this",
"->",
"datos",
"[",
"'__anuncio'",
"]",
"[",
"'mensaje'",
"]",
"=",
"$",
"mensaje",
";... | Define anuncio importante para el usuario.
@param string $mensaje
@param string $tipo | [
"Define",
"anuncio",
"importante",
"para",
"el",
"usuario",
"."
] | ec76385ff80ce1659d81bc4050ef9483ab0ebe52 | https://github.com/armazon/armazon/blob/ec76385ff80ce1659d81bc4050ef9483ab0ebe52/src/Armazon/Sesion/Manejador.php#L126-L132 | train |
armazon/armazon | src/Armazon/Sesion/Manejador.php | Manejador.obtener | public function obtener($llave, $valorAlterno = null)
{
$this->requerirInicio();
return isset($this->datos[$llave]) ? $this->datos[$llave] : $valorAlterno;
} | php | public function obtener($llave, $valorAlterno = null)
{
$this->requerirInicio();
return isset($this->datos[$llave]) ? $this->datos[$llave] : $valorAlterno;
} | [
"public",
"function",
"obtener",
"(",
"$",
"llave",
",",
"$",
"valorAlterno",
"=",
"null",
")",
"{",
"$",
"this",
"->",
"requerirInicio",
"(",
")",
";",
"return",
"isset",
"(",
"$",
"this",
"->",
"datos",
"[",
"$",
"llave",
"]",
")",
"?",
"$",
"thi... | Obtiene una variable de la sesion.
@param string $llave
@param mixed $valorAlterno
@return mixed | [
"Obtiene",
"una",
"variable",
"de",
"la",
"sesion",
"."
] | ec76385ff80ce1659d81bc4050ef9483ab0ebe52 | https://github.com/armazon/armazon/blob/ec76385ff80ce1659d81bc4050ef9483ab0ebe52/src/Armazon/Sesion/Manejador.php#L167-L172 | train |
armazon/armazon | src/Armazon/Sesion/Manejador.php | Manejador.eliminar | public function eliminar($llave)
{
$this->requerirInicio();
if (isset($this->datos[$llave])) {
$valor = $this->datos[$llave];
unset($this->datos[$llave]);
return $valor;
} else {
return null;
}
} | php | public function eliminar($llave)
{
$this->requerirInicio();
if (isset($this->datos[$llave])) {
$valor = $this->datos[$llave];
unset($this->datos[$llave]);
return $valor;
} else {
return null;
}
} | [
"public",
"function",
"eliminar",
"(",
"$",
"llave",
")",
"{",
"$",
"this",
"->",
"requerirInicio",
"(",
")",
";",
"if",
"(",
"isset",
"(",
"$",
"this",
"->",
"datos",
"[",
"$",
"llave",
"]",
")",
")",
"{",
"$",
"valor",
"=",
"$",
"this",
"->",
... | Elimina una variable en la sesion.
@param string $llave
@return mixed el valor de la variable eliminada o nulo si no existe variable | [
"Elimina",
"una",
"variable",
"en",
"la",
"sesion",
"."
] | ec76385ff80ce1659d81bc4050ef9483ab0ebe52 | https://github.com/armazon/armazon/blob/ec76385ff80ce1659d81bc4050ef9483ab0ebe52/src/Armazon/Sesion/Manejador.php#L194-L205 | train |
chilimatic/chilimatic-framework | lib/route/parser/UrlParser.php | UrlParser.parse | public function parse($content)
{
// if there is no path it's not needed to try to get a clean one
if (empty($content)) return [];
$path = $this->getCleanPath($content);
$pathParts = [$this->delimiter];
// check if there is even a need for further checks
if (mb_strpo... | php | public function parse($content)
{
// if there is no path it's not needed to try to get a clean one
if (empty($content)) return [];
$path = $this->getCleanPath($content);
$pathParts = [$this->delimiter];
// check if there is even a need for further checks
if (mb_strpo... | [
"public",
"function",
"parse",
"(",
"$",
"content",
")",
"{",
"// if there is no path it's not needed to try to get a clean one",
"if",
"(",
"empty",
"(",
"$",
"content",
")",
")",
"return",
"[",
"]",
";",
"$",
"path",
"=",
"$",
"this",
"->",
"getCleanPath",
"... | parse method that fills the collection
@param string $content
@return array | [
"parse",
"method",
"that",
"fills",
"the",
"collection"
] | 8df7f12e75d75d3fd2197a58c80d39cbb4b9ff12 | https://github.com/chilimatic/chilimatic-framework/blob/8df7f12e75d75d3fd2197a58c80d39cbb4b9ff12/lib/route/parser/UrlParser.php#L62-L98 | train |
makinacorpus/drupal-umenu | src/ItemStorage.php | ItemStorage.getMenuIdFor | public function getMenuIdFor(int $itemId): int
{
// Find parent identifier
$menuId = (int)$this
->database
->query(
"SELECT menu_id FROM {umenu_item} WHERE id = ?",
[$itemId]
)
->fetchField()
;
if (!$men... | php | public function getMenuIdFor(int $itemId): int
{
// Find parent identifier
$menuId = (int)$this
->database
->query(
"SELECT menu_id FROM {umenu_item} WHERE id = ?",
[$itemId]
)
->fetchField()
;
if (!$men... | [
"public",
"function",
"getMenuIdFor",
"(",
"int",
"$",
"itemId",
")",
":",
"int",
"{",
"// Find parent identifier",
"$",
"menuId",
"=",
"(",
"int",
")",
"$",
"this",
"->",
"database",
"->",
"query",
"(",
"\"SELECT menu_id FROM {umenu_item} WHERE id = ?\"",
",",
... | Get menu identifier for item
@param int $itemId
@return int | [
"Get",
"menu",
"identifier",
"for",
"item"
] | 346574eb0f5982857c64144e99ad2eacc8c52c5b | https://github.com/makinacorpus/drupal-umenu/blob/346574eb0f5982857c64144e99ad2eacc8c52c5b/src/ItemStorage.php#L115-L132 | train |
ElMijo/php-html-dom | src/PHPHtmlDom/Core/PHPHtmlDomElement.php | PHPHtmlDomElement.get_attrs | private function get_attrs()
{
$this->attrs = new \stdClass;
foreach($this->dom_element->attributes as $name => $node)
{
$this->attrs->{strtolower($name)} = $node->nodeValue;
}
return $this;
} | php | private function get_attrs()
{
$this->attrs = new \stdClass;
foreach($this->dom_element->attributes as $name => $node)
{
$this->attrs->{strtolower($name)} = $node->nodeValue;
}
return $this;
} | [
"private",
"function",
"get_attrs",
"(",
")",
"{",
"$",
"this",
"->",
"attrs",
"=",
"new",
"\\",
"stdClass",
";",
"foreach",
"(",
"$",
"this",
"->",
"dom_element",
"->",
"attributes",
"as",
"$",
"name",
"=>",
"$",
"node",
")",
"{",
"$",
"this",
"->",... | Metodo que permite obtener todos atributos del elementos y convertirlos en un objeto stdClass.
@return self | [
"Metodo",
"que",
"permite",
"obtener",
"todos",
"atributos",
"del",
"elementos",
"y",
"convertirlos",
"en",
"un",
"objeto",
"stdClass",
"."
] | 6f294e26f37571e100b885e32b76245c144da6e2 | https://github.com/ElMijo/php-html-dom/blob/6f294e26f37571e100b885e32b76245c144da6e2/src/PHPHtmlDom/Core/PHPHtmlDomElement.php#L64-L73 | train |
ElMijo/php-html-dom | src/PHPHtmlDom/Core/PHPHtmlDomElement.php | PHPHtmlDomElement.get_childs | private function get_childs()
{
$this->childs = new \PHPTools\PHPHtmlDom\Core\PHPHtmlDomList($this->dom_element->childNodes);
return $this;
} | php | private function get_childs()
{
$this->childs = new \PHPTools\PHPHtmlDom\Core\PHPHtmlDomList($this->dom_element->childNodes);
return $this;
} | [
"private",
"function",
"get_childs",
"(",
")",
"{",
"$",
"this",
"->",
"childs",
"=",
"new",
"\\",
"PHPTools",
"\\",
"PHPHtmlDom",
"\\",
"Core",
"\\",
"PHPHtmlDomList",
"(",
"$",
"this",
"->",
"dom_element",
"->",
"childNodes",
")",
";",
"return",
"$",
"... | Metodo que permite obtener los elementos hijos y convertirlos en un objeto lista PHPHtmlDomList.
@return self | [
"Metodo",
"que",
"permite",
"obtener",
"los",
"elementos",
"hijos",
"y",
"convertirlos",
"en",
"un",
"objeto",
"lista",
"PHPHtmlDomList",
"."
] | 6f294e26f37571e100b885e32b76245c144da6e2 | https://github.com/ElMijo/php-html-dom/blob/6f294e26f37571e100b885e32b76245c144da6e2/src/PHPHtmlDom/Core/PHPHtmlDomElement.php#L79-L84 | train |
ElMijo/php-html-dom | src/PHPHtmlDom/Core/PHPHtmlDomElement.php | PHPHtmlDomElement.get_Text | private function get_Text()
{
$text_formatting = array('b','strong','em','i','small','strong','sub','sup','ins','del','mark','br','hr');
foreach ($this->dom_element->childNodes as $node)
{
if($node->nodeType == 3)
{
$this->set_text(trim($node->textCon... | php | private function get_Text()
{
$text_formatting = array('b','strong','em','i','small','strong','sub','sup','ins','del','mark','br','hr');
foreach ($this->dom_element->childNodes as $node)
{
if($node->nodeType == 3)
{
$this->set_text(trim($node->textCon... | [
"private",
"function",
"get_Text",
"(",
")",
"{",
"$",
"text_formatting",
"=",
"array",
"(",
"'b'",
",",
"'strong'",
",",
"'em'",
",",
"'i'",
",",
"'small'",
",",
"'strong'",
",",
"'sub'",
",",
"'sup'",
",",
"'ins'",
",",
"'del'",
",",
"'mark'",
",",
... | Metodo que permite obtener el texto que se encuentra dentro del elemento.
@return self | [
"Metodo",
"que",
"permite",
"obtener",
"el",
"texto",
"que",
"se",
"encuentra",
"dentro",
"del",
"elemento",
"."
] | 6f294e26f37571e100b885e32b76245c144da6e2 | https://github.com/ElMijo/php-html-dom/blob/6f294e26f37571e100b885e32b76245c144da6e2/src/PHPHtmlDom/Core/PHPHtmlDomElement.php#L90-L119 | train |
ElMijo/php-html-dom | src/PHPHtmlDom/Core/PHPHtmlDomElement.php | PHPHtmlDomElement.set_text | private function set_text($text)
{
if(!!$text)
{
if(!!$this->text)
{
if(!!is_array($this->text))
{
$this->text[] = $text;
}
else
{
$this->text = array($this... | php | private function set_text($text)
{
if(!!$text)
{
if(!!$this->text)
{
if(!!is_array($this->text))
{
$this->text[] = $text;
}
else
{
$this->text = array($this... | [
"private",
"function",
"set_text",
"(",
"$",
"text",
")",
"{",
"if",
"(",
"!",
"!",
"$",
"text",
")",
"{",
"if",
"(",
"!",
"!",
"$",
"this",
"->",
"text",
")",
"{",
"if",
"(",
"!",
"!",
"is_array",
"(",
"$",
"this",
"->",
"text",
")",
")",
... | Metodo que permite definir e texto del elemento.
@param string $text Cden de texto a definirse.
@return self | [
"Metodo",
"que",
"permite",
"definir",
"e",
"texto",
"del",
"elemento",
"."
] | 6f294e26f37571e100b885e32b76245c144da6e2 | https://github.com/ElMijo/php-html-dom/blob/6f294e26f37571e100b885e32b76245c144da6e2/src/PHPHtmlDom/Core/PHPHtmlDomElement.php#L126-L148 | train |
ElMijo/php-html-dom | src/PHPHtmlDom/Core/PHPHtmlDomElement.php | PHPHtmlDomElement.attrs_to_string | private function attrs_to_string($attrs)
{
$attrs_string ='';
foreach($attrs as $name => $node)
{
$attrs_string.= sprintf(' %s="%s"',$name,$node->nodeValue);
}
return $attrs_string;
} | php | private function attrs_to_string($attrs)
{
$attrs_string ='';
foreach($attrs as $name => $node)
{
$attrs_string.= sprintf(' %s="%s"',$name,$node->nodeValue);
}
return $attrs_string;
} | [
"private",
"function",
"attrs_to_string",
"(",
"$",
"attrs",
")",
"{",
"$",
"attrs_string",
"=",
"''",
";",
"foreach",
"(",
"$",
"attrs",
"as",
"$",
"name",
"=>",
"$",
"node",
")",
"{",
"$",
"attrs_string",
".=",
"sprintf",
"(",
"' %s=\"%s\"'",
",",
"$... | Este metodo permite concatenar un objeto de atributos en una sola cadena.
@param attay $attrs Arreglo de atributos.
@return string | [
"Este",
"metodo",
"permite",
"concatenar",
"un",
"objeto",
"de",
"atributos",
"en",
"una",
"sola",
"cadena",
"."
] | 6f294e26f37571e100b885e32b76245c144da6e2 | https://github.com/ElMijo/php-html-dom/blob/6f294e26f37571e100b885e32b76245c144da6e2/src/PHPHtmlDom/Core/PHPHtmlDomElement.php#L155-L165 | train |
courtney-miles/schnoop-schema | src/MySQL/Routine/RoutineFunction.php | RoutineFunction.makeParametersDDL | protected function makeParametersDDL($separator = " ")
{
$params = [];
foreach ($this->parameters as $parameter) {
$params[] = $parameter->getDDL();
}
return implode(',' . $separator, $params);
} | php | protected function makeParametersDDL($separator = " ")
{
$params = [];
foreach ($this->parameters as $parameter) {
$params[] = $parameter->getDDL();
}
return implode(',' . $separator, $params);
} | [
"protected",
"function",
"makeParametersDDL",
"(",
"$",
"separator",
"=",
"\" \"",
")",
"{",
"$",
"params",
"=",
"[",
"]",
";",
"foreach",
"(",
"$",
"this",
"->",
"parameters",
"as",
"$",
"parameter",
")",
"{",
"$",
"params",
"[",
"]",
"=",
"$",
"par... | Make the portion of DDL for describing the parameters.
@param string $separator String to apply between parameters.
@return string Parameters DDL. | [
"Make",
"the",
"portion",
"of",
"DDL",
"for",
"describing",
"the",
"parameters",
"."
] | f96e9922257860171ecdcdbb6b78182276e2f60d | https://github.com/courtney-miles/schnoop-schema/blob/f96e9922257860171ecdcdbb6b78182276e2f60d/src/MySQL/Routine/RoutineFunction.php#L161-L170 | train |
yii2lab/yii2-rbac | src/domain/repositories/disc/AssignmentRepository.php | AssignmentRepository.saveAssignments | protected function saveAssignments()
{
$assignmentData = [];
foreach ($this->assignments as $userId => $assignments) {
foreach ($assignments as $name => $assignment) {
/* @var $assignment Assignment */
$assignmentData[$userId][] = $assignment->roleName;
}
}
DiscHelper::saveToFile($assignmentData,... | php | protected function saveAssignments()
{
$assignmentData = [];
foreach ($this->assignments as $userId => $assignments) {
foreach ($assignments as $name => $assignment) {
/* @var $assignment Assignment */
$assignmentData[$userId][] = $assignment->roleName;
}
}
DiscHelper::saveToFile($assignmentData,... | [
"protected",
"function",
"saveAssignments",
"(",
")",
"{",
"$",
"assignmentData",
"=",
"[",
"]",
";",
"foreach",
"(",
"$",
"this",
"->",
"assignments",
"as",
"$",
"userId",
"=>",
"$",
"assignments",
")",
"{",
"foreach",
"(",
"$",
"assignments",
"as",
"$"... | Saves assignments data into persistent storage. | [
"Saves",
"assignments",
"data",
"into",
"persistent",
"storage",
"."
] | e72ac0359af660690c161451f864208b2d20919d | https://github.com/yii2lab/yii2-rbac/blob/e72ac0359af660690c161451f864208b2d20919d/src/domain/repositories/disc/AssignmentRepository.php#L197-L209 | train |
yii2lab/yii2-rbac | src/domain/repositories/disc/AssignmentRepository.php | AssignmentRepository.load | protected function load()
{
$this->assignments = [];
$assignments = DiscHelper::loadFromFile($this->assignmentFile);
$assignmentsMtime = @filemtime($this->assignmentFile);
foreach ($assignments as $userId => $roles) {
foreach ($roles as $role) {
$this->assignments[$userId][$role] = new Assignment([
... | php | protected function load()
{
$this->assignments = [];
$assignments = DiscHelper::loadFromFile($this->assignmentFile);
$assignmentsMtime = @filemtime($this->assignmentFile);
foreach ($assignments as $userId => $roles) {
foreach ($roles as $role) {
$this->assignments[$userId][$role] = new Assignment([
... | [
"protected",
"function",
"load",
"(",
")",
"{",
"$",
"this",
"->",
"assignments",
"=",
"[",
"]",
";",
"$",
"assignments",
"=",
"DiscHelper",
"::",
"loadFromFile",
"(",
"$",
"this",
"->",
"assignmentFile",
")",
";",
"$",
"assignmentsMtime",
"=",
"@",
"fil... | Loads authorization data from persistent storage. | [
"Loads",
"authorization",
"data",
"from",
"persistent",
"storage",
"."
] | e72ac0359af660690c161451f864208b2d20919d | https://github.com/yii2lab/yii2-rbac/blob/e72ac0359af660690c161451f864208b2d20919d/src/domain/repositories/disc/AssignmentRepository.php#L222-L237 | train |
tigron/skeleton-migrate | console/create.php | Migrate_Create.create_package_migration | private function create_package_migration($name) {
list($packagename, $name) = explode('/', $name);
$skeleton_packages = \Skeleton\Core\Skeleton::get_all();
$package = null;
foreach ($skeleton_packages as $skeleton_package) {
if ($skeleton_package->name == $packagename) {
$package = $skeleton_package;
... | php | private function create_package_migration($name) {
list($packagename, $name) = explode('/', $name);
$skeleton_packages = \Skeleton\Core\Skeleton::get_all();
$package = null;
foreach ($skeleton_packages as $skeleton_package) {
if ($skeleton_package->name == $packagename) {
$package = $skeleton_package;
... | [
"private",
"function",
"create_package_migration",
"(",
"$",
"name",
")",
"{",
"list",
"(",
"$",
"packagename",
",",
"$",
"name",
")",
"=",
"explode",
"(",
"'/'",
",",
"$",
"name",
")",
";",
"$",
"skeleton_packages",
"=",
"\\",
"Skeleton",
"\\",
"Core",
... | Create package migration
@access private
@param string $name
@return string $path | [
"Create",
"package",
"migration"
] | 53b6ea56e928d4f925257949e59467d2d9cbafd4 | https://github.com/tigron/skeleton-migrate/blob/53b6ea56e928d4f925257949e59467d2d9cbafd4/console/create.php#L64-L100 | train |
tigron/skeleton-migrate | console/create.php | Migrate_Create.create_project_migration | private function create_project_migration($name) {
$name = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $name);
$datetime = date('Ymd_His');
$filename = $datetime . '_' . strtolower($name) . '.php';
$classname = 'Migration_' . $datetime . '_' . ucfirst($name);
$template = fi... | php | private function create_project_migration($name) {
$name = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $name);
$datetime = date('Ymd_His');
$filename = $datetime . '_' . strtolower($name) . '.php';
$classname = 'Migration_' . $datetime . '_' . ucfirst($name);
$template = fi... | [
"private",
"function",
"create_project_migration",
"(",
"$",
"name",
")",
"{",
"$",
"name",
"=",
"preg_replace",
"(",
"array",
"(",
"'/\\s/'",
",",
"'/\\.[\\.]+/'",
",",
"'/[^\\w_\\.\\-]/'",
")",
",",
"array",
"(",
"'_'",
",",
"'.'",
",",
"''",
")",
",",
... | Create project migration
@access private
@param string $name
@return string $path | [
"Create",
"project",
"migration"
] | 53b6ea56e928d4f925257949e59467d2d9cbafd4 | https://github.com/tigron/skeleton-migrate/blob/53b6ea56e928d4f925257949e59467d2d9cbafd4/console/create.php#L109-L121 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.table | public static function table($table)
{
//as all calls will start with this function, first check if database connection has being established
if(Connect::getConn()==null){
//lets just return the object of the class in-case of connection error (developer will handle the rest)
... | php | public static function table($table)
{
//as all calls will start with this function, first check if database connection has being established
if(Connect::getConn()==null){
//lets just return the object of the class in-case of connection error (developer will handle the rest)
... | [
"public",
"static",
"function",
"table",
"(",
"$",
"table",
")",
"{",
"//as all calls will start with this function, first check if database connection has being established",
"if",
"(",
"Connect",
"::",
"getConn",
"(",
")",
"==",
"null",
")",
"{",
"//lets just return the o... | Sets the table on to which the various statements are executed.
@param $table
@return string | $this | [
"Sets",
"the",
"table",
"on",
"to",
"which",
"the",
"various",
"statements",
"are",
"executed",
"."
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L34-L44 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.sanitize | private static function sanitize($data)
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
} | php | private static function sanitize($data)
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
} | [
"private",
"static",
"function",
"sanitize",
"(",
"$",
"data",
")",
"{",
"$",
"data",
"=",
"trim",
"(",
"$",
"data",
")",
";",
"$",
"data",
"=",
"stripslashes",
"(",
"$",
"data",
")",
";",
"$",
"data",
"=",
"htmlspecialchars",
"(",
"$",
"data",
")"... | Sanitizes the data input values
@param $data
@return string | [
"Sanitizes",
"the",
"data",
"input",
"values"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L51-L57 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.orWhere | public function orWhere($param){
if (func_num_args() == 3) {
$operator =strtolower(func_get_arg(1));
if (is_numeric(array_search($operator, $this->condition))) {
$this->whereby .=' or '.self::sanitize(func_get_arg(0))
.' '. $operator . ' \''
... | php | public function orWhere($param){
if (func_num_args() == 3) {
$operator =strtolower(func_get_arg(1));
if (is_numeric(array_search($operator, $this->condition))) {
$this->whereby .=' or '.self::sanitize(func_get_arg(0))
.' '. $operator . ' \''
... | [
"public",
"function",
"orWhere",
"(",
"$",
"param",
")",
"{",
"if",
"(",
"func_num_args",
"(",
")",
"==",
"3",
")",
"{",
"$",
"operator",
"=",
"strtolower",
"(",
"func_get_arg",
"(",
"1",
")",
")",
";",
"if",
"(",
"is_numeric",
"(",
"array_search",
"... | Adds condition for or in where clause
@see where
@param $param
@return $this | [
"Adds",
"condition",
"for",
"or",
"in",
"where",
"clause"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L172-L195 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.orderBy | public function orderBy($column = '', $sort = 'desc')
{
$column=self::sanitize($column);
$sort=strtoupper(self::sanitize($sort));
/*check if the sort method passed is valid */
if (!(hash_equals('DESC',$sort) || hash_equals('ASC',$sort))){
static::$response["status"] = "e... | php | public function orderBy($column = '', $sort = 'desc')
{
$column=self::sanitize($column);
$sort=strtoupper(self::sanitize($sort));
/*check if the sort method passed is valid */
if (!(hash_equals('DESC',$sort) || hash_equals('ASC',$sort))){
static::$response["status"] = "e... | [
"public",
"function",
"orderBy",
"(",
"$",
"column",
"=",
"''",
",",
"$",
"sort",
"=",
"'desc'",
")",
"{",
"$",
"column",
"=",
"self",
"::",
"sanitize",
"(",
"$",
"column",
")",
";",
"$",
"sort",
"=",
"strtoupper",
"(",
"self",
"::",
"sanitize",
"(... | Set order in which the return results will be return
@param string $column :column to base the order on
@param string $sort :asc or desc
@return $this|mixed | [
"Set",
"order",
"in",
"which",
"the",
"return",
"results",
"will",
"be",
"return"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L203-L222 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.get | public function get($limit = 0, $offset = 0)
{
//check if there is an error
if (static::$response['status'] == "error") {
return static::terminate(static::$response);
}
//check if the limit is a number
if (!is_numeric($limit)) {
static::$response["sta... | php | public function get($limit = 0, $offset = 0)
{
//check if there is an error
if (static::$response['status'] == "error") {
return static::terminate(static::$response);
}
//check if the limit is a number
if (!is_numeric($limit)) {
static::$response["sta... | [
"public",
"function",
"get",
"(",
"$",
"limit",
"=",
"0",
",",
"$",
"offset",
"=",
"0",
")",
"{",
"//check if there is an error",
"if",
"(",
"static",
"::",
"$",
"response",
"[",
"'status'",
"]",
"==",
"\"error\"",
")",
"{",
"return",
"static",
"::",
"... | Fetch records form database
@param int $limit :optional limit of records to be retrieved
@param int $offset :the index which the record should be retrieved from
@return array|string | [
"Fetch",
"records",
"form",
"database"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L245-L302 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.fetch | protected function fetch($sql)
{
try {
try {
$stm = Connect::getConn()->prepare($sql);
} catch (Exception $e) {
static::$response["status"] = "error";
static::$response["response"] = $e->getMessage();
static::$response['... | php | protected function fetch($sql)
{
try {
try {
$stm = Connect::getConn()->prepare($sql);
} catch (Exception $e) {
static::$response["status"] = "error";
static::$response["response"] = $e->getMessage();
static::$response['... | [
"protected",
"function",
"fetch",
"(",
"$",
"sql",
")",
"{",
"try",
"{",
"try",
"{",
"$",
"stm",
"=",
"Connect",
"::",
"getConn",
"(",
")",
"->",
"prepare",
"(",
"$",
"sql",
")",
";",
"}",
"catch",
"(",
"Exception",
"$",
"e",
")",
"{",
"static",
... | Executes a query that returns data
@param $sql
@return array|string | [
"Executes",
"a",
"query",
"that",
"returns",
"data"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L310-L365 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.all | public function all()
{
$table = trim(self::$table);
if (!empty($table)) {
$query = /** @lang text */
"SELECT * FROM {$table}";
if(!empty($this->groupby)){
$query.=' GROUP BY '.$this->groupby;
}
if (!empty($this->orde... | php | public function all()
{
$table = trim(self::$table);
if (!empty($table)) {
$query = /** @lang text */
"SELECT * FROM {$table}";
if(!empty($this->groupby)){
$query.=' GROUP BY '.$this->groupby;
}
if (!empty($this->orde... | [
"public",
"function",
"all",
"(",
")",
"{",
"$",
"table",
"=",
"trim",
"(",
"self",
"::",
"$",
"table",
")",
";",
"if",
"(",
"!",
"empty",
"(",
"$",
"table",
")",
")",
"{",
"$",
"query",
"=",
"/** @lang text */",
"\"SELECT * FROM {$table}\"",
";",
"i... | Fetch all data without limits or offset | [
"Fetch",
"all",
"data",
"without",
"limits",
"or",
"offset"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L370-L397 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.insert | public function insert($values)
{
try {
if (func_num_args() > 0 && !is_array($values)) {
$this->values = array_merge($this->values, self::sanitizeAV(func_get_args()));
} else if (is_array($values)) {
$this->values = self::sanitize($values);
... | php | public function insert($values)
{
try {
if (func_num_args() > 0 && !is_array($values)) {
$this->values = array_merge($this->values, self::sanitizeAV(func_get_args()));
} else if (is_array($values)) {
$this->values = self::sanitize($values);
... | [
"public",
"function",
"insert",
"(",
"$",
"values",
")",
"{",
"try",
"{",
"if",
"(",
"func_num_args",
"(",
")",
">",
"0",
"&&",
"!",
"is_array",
"(",
"$",
"values",
")",
")",
"{",
"$",
"this",
"->",
"values",
"=",
"array_merge",
"(",
"$",
"this",
... | Sets the values to be inserted
@param $values
@return $this|string | [
"Sets",
"the",
"values",
"to",
"be",
"inserted"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L413-L434 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.into | public function into($columns)
{
//if columns count does not match values count, throw an error.
$valuesCount = count($this->values);
$colStringCount = 0;
if (is_string($columns)) {
try {
$colStringCount = count(
explode(',', $columns)... | php | public function into($columns)
{
//if columns count does not match values count, throw an error.
$valuesCount = count($this->values);
$colStringCount = 0;
if (is_string($columns)) {
try {
$colStringCount = count(
explode(',', $columns)... | [
"public",
"function",
"into",
"(",
"$",
"columns",
")",
"{",
"//if columns count does not match values count, throw an error.",
"$",
"valuesCount",
"=",
"count",
"(",
"$",
"this",
"->",
"values",
")",
";",
"$",
"colStringCount",
"=",
"0",
";",
"if",
"(",
"is_str... | Sets the column to which the values will be inserted
@param $columns
@return string | [
"Sets",
"the",
"column",
"to",
"which",
"the",
"values",
"will",
"be",
"inserted"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L441-L477 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.doInsert | protected function doInsert()
{
//check if there is an error from previous function execution
if (static::$response["status"] == "error") {
return static::terminate(static::$response);
}
//convert each columns to ? parameter
$columnParam = array_map(function () {
... | php | protected function doInsert()
{
//check if there is an error from previous function execution
if (static::$response["status"] == "error") {
return static::terminate(static::$response);
}
//convert each columns to ? parameter
$columnParam = array_map(function () {
... | [
"protected",
"function",
"doInsert",
"(",
")",
"{",
"//check if there is an error from previous function execution",
"if",
"(",
"static",
"::",
"$",
"response",
"[",
"\"status\"",
"]",
"==",
"\"error\"",
")",
"{",
"return",
"static",
"::",
"terminate",
"(",
"static"... | Performs the actual database insert
@return string | [
"Performs",
"the",
"actual",
"database",
"insert"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L483-L530 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.isAssocStr | private function isAssocStr($array)
{
if(!is_array($array)){
return false;
}
for (reset($array); is_int(key($array));
next($array)) {
if (is_null(key($array)))
return false;
}
return true;
} | php | private function isAssocStr($array)
{
if(!is_array($array)){
return false;
}
for (reset($array); is_int(key($array));
next($array)) {
if (is_null(key($array)))
return false;
}
return true;
} | [
"private",
"function",
"isAssocStr",
"(",
"$",
"array",
")",
"{",
"if",
"(",
"!",
"is_array",
"(",
"$",
"array",
")",
")",
"{",
"return",
"false",
";",
"}",
"for",
"(",
"reset",
"(",
"$",
"array",
")",
";",
"is_int",
"(",
"key",
"(",
"$",
"array"... | Function to check if an array is association or sequential
@param $array
@return bool | [
"Function",
"to",
"check",
"if",
"an",
"array",
"is",
"association",
"or",
"sequential"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L607-L618 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.exec | protected function exec($query)
{
try {
Connect::getConn()->exec($query);
} catch (Exception $e) {
static::$response["status"] = "error";
static::$response["response"] = $e->getMessage();
static::$response["code"] = $e->getCode();
return s... | php | protected function exec($query)
{
try {
Connect::getConn()->exec($query);
} catch (Exception $e) {
static::$response["status"] = "error";
static::$response["response"] = $e->getMessage();
static::$response["code"] = $e->getCode();
return s... | [
"protected",
"function",
"exec",
"(",
"$",
"query",
")",
"{",
"try",
"{",
"Connect",
"::",
"getConn",
"(",
")",
"->",
"exec",
"(",
"$",
"query",
")",
";",
"}",
"catch",
"(",
"Exception",
"$",
"e",
")",
"{",
"static",
"::",
"$",
"response",
"[",
"... | Executes a query that does not return any results
@param $query
@return null|string | [
"Executes",
"a",
"query",
"that",
"does",
"not",
"return",
"any",
"results"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L657-L669 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.valTable | private static function valTable(){
if(static::$table==null || ! is_string(static::$table)){
static::$response["status"] = "error";
static::$response["response"] = "check the table name provided";
static::$response["code"]=5000;
return self::terminate(static::$res... | php | private static function valTable(){
if(static::$table==null || ! is_string(static::$table)){
static::$response["status"] = "error";
static::$response["response"] = "check the table name provided";
static::$response["code"]=5000;
return self::terminate(static::$res... | [
"private",
"static",
"function",
"valTable",
"(",
")",
"{",
"if",
"(",
"static",
"::",
"$",
"table",
"==",
"null",
"||",
"!",
"is_string",
"(",
"static",
"::",
"$",
"table",
")",
")",
"{",
"static",
"::",
"$",
"response",
"[",
"\"status\"",
"]",
"=",... | Validate that the table name has been provided and is a string | [
"Validate",
"that",
"the",
"table",
"name",
"has",
"been",
"provided",
"and",
"is",
"a",
"string"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L700-L711 | train |
mimidotsuser/sqlQueryuilder | src/Builder.php | Builder.drop | public function drop()
{
static::valTable();
$sql = /** @lang text */
"DROP TABLE " . self::$table;
try {
$this->exec($sql);
static::$response["status"] = "success";
static::$response["response"] = "success";
return self::terminate... | php | public function drop()
{
static::valTable();
$sql = /** @lang text */
"DROP TABLE " . self::$table;
try {
$this->exec($sql);
static::$response["status"] = "success";
static::$response["response"] = "success";
return self::terminate... | [
"public",
"function",
"drop",
"(",
")",
"{",
"static",
"::",
"valTable",
"(",
")",
";",
"$",
"sql",
"=",
"/** @lang text */",
"\"DROP TABLE \"",
".",
"self",
"::",
"$",
"table",
";",
"try",
"{",
"$",
"this",
"->",
"exec",
"(",
"$",
"sql",
")",
";",
... | Function to drop a table
@return string | [
"Function",
"to",
"drop",
"a",
"table"
] | a9339b6dea5be52b79095b9c001684c162a09bf6 | https://github.com/mimidotsuser/sqlQueryuilder/blob/a9339b6dea5be52b79095b9c001684c162a09bf6/src/Builder.php#L717-L736 | train |
Etenil/assegai | src/assegai/modules/Module.php | Module.setDependencies | function setDependencies(\assegai\Server $server, ModuleContainer $modules)
{
$this->server = $server;
$this->modules = $modules;
} | php | function setDependencies(\assegai\Server $server, ModuleContainer $modules)
{
$this->server = $server;
$this->modules = $modules;
} | [
"function",
"setDependencies",
"(",
"\\",
"assegai",
"\\",
"Server",
"$",
"server",
",",
"ModuleContainer",
"$",
"modules",
")",
"{",
"$",
"this",
"->",
"server",
"=",
"$",
"server",
";",
"$",
"this",
"->",
"modules",
"=",
"$",
"modules",
";",
"}"
] | Default module constructor. Loads options into properties.
@param array $options is an associative array whose keys will
be mapped to properties for speed populating of the object. | [
"Default",
"module",
"constructor",
".",
"Loads",
"options",
"into",
"properties",
"."
] | d43cce1a88f1c332f60dd0a4374b17764852af9e | https://github.com/Etenil/assegai/blob/d43cce1a88f1c332f60dd0a4374b17764852af9e/src/assegai/modules/Module.php#L41-L45 | train |
Etenil/assegai | src/assegai/modules/Module.php | Module.getOption | protected function getOption($option, $default = false)
{
return isset($this->options[$option])? $this->options[$option] : $default;
} | php | protected function getOption($option, $default = false)
{
return isset($this->options[$option])? $this->options[$option] : $default;
} | [
"protected",
"function",
"getOption",
"(",
"$",
"option",
",",
"$",
"default",
"=",
"false",
")",
"{",
"return",
"isset",
"(",
"$",
"this",
"->",
"options",
"[",
"$",
"option",
"]",
")",
"?",
"$",
"this",
"->",
"options",
"[",
"$",
"option",
"]",
"... | Just a convenient wrapper to retrieve an option.
@param string $option is the option's name to retrieve.
@param mixed $default default value returned if option doesn't
exist. Default is false.
@return the value or default value. | [
"Just",
"a",
"convenient",
"wrapper",
"to",
"retrieve",
"an",
"option",
"."
] | d43cce1a88f1c332f60dd0a4374b17764852af9e | https://github.com/Etenil/assegai/blob/d43cce1a88f1c332f60dd0a4374b17764852af9e/src/assegai/modules/Module.php#L76-L79 | train |
3ev/wordpress-core | src/Tev/Field/Model/PostField.php | PostField.getValue | public function getValue()
{
$val = $this->base['value'];
if (is_array($val)) {
$posts = array();
foreach ($val as $p) {
$posts[] = $this->postFactory->create($this->getPostObject($p));
}
return $posts;
} elseif (strlen($val)... | php | public function getValue()
{
$val = $this->base['value'];
if (is_array($val)) {
$posts = array();
foreach ($val as $p) {
$posts[] = $this->postFactory->create($this->getPostObject($p));
}
return $posts;
} elseif (strlen($val)... | [
"public",
"function",
"getValue",
"(",
")",
"{",
"$",
"val",
"=",
"$",
"this",
"->",
"base",
"[",
"'value'",
"]",
";",
"if",
"(",
"is_array",
"(",
"$",
"val",
")",
")",
"{",
"$",
"posts",
"=",
"array",
"(",
")",
";",
"foreach",
"(",
"$",
"val",... | Get a single post object or array of post objects.
If no posts are configured, returned will result will be an empty array
if this is a mutli-select, or null if not.
@return \Tev\Post\Model\Post|\Tev\Post\Model\Post[]|null | [
"Get",
"a",
"single",
"post",
"object",
"or",
"array",
"of",
"post",
"objects",
"."
] | da674fbec5bf3d5bd2a2141680a4c141113eb6b0 | https://github.com/3ev/wordpress-core/blob/da674fbec5bf3d5bd2a2141680a4c141113eb6b0/src/Tev/Field/Model/PostField.php#L43-L64 | train |
armazon/armazon | src/Armazon/Servidor/Swoole.php | Swoole.detectarNucleosCPU | private function detectarNucleosCPU()
{
$cantidad_cpu = 1;
if (is_file('/proc/cpuinfo')) {
$cpu_info = file_get_contents('/proc/cpuinfo');
preg_match_all('/^processor/m', $cpu_info, $matches);
$cantidad_cpu = count($matches[0]);
} else if ('WIN' == strtoup... | php | private function detectarNucleosCPU()
{
$cantidad_cpu = 1;
if (is_file('/proc/cpuinfo')) {
$cpu_info = file_get_contents('/proc/cpuinfo');
preg_match_all('/^processor/m', $cpu_info, $matches);
$cantidad_cpu = count($matches[0]);
} else if ('WIN' == strtoup... | [
"private",
"function",
"detectarNucleosCPU",
"(",
")",
"{",
"$",
"cantidad_cpu",
"=",
"1",
";",
"if",
"(",
"is_file",
"(",
"'/proc/cpuinfo'",
")",
")",
"{",
"$",
"cpu_info",
"=",
"file_get_contents",
"(",
"'/proc/cpuinfo'",
")",
";",
"preg_match_all",
"(",
"... | Devuelve la cantidad de nucleos del CPU
@return int | [
"Devuelve",
"la",
"cantidad",
"de",
"nucleos",
"del",
"CPU"
] | ec76385ff80ce1659d81bc4050ef9483ab0ebe52 | https://github.com/armazon/armazon/blob/ec76385ff80ce1659d81bc4050ef9483ab0ebe52/src/Armazon/Servidor/Swoole.php#L17-L44 | train |
akumar2-velsof/guzzlehttp | src/Utils.php | Utils.getPath | public static function getPath($data, $path)
{
$path = explode('/', $path);
while (null !== ($part = array_shift($path))) {
if (!is_array($data) || !isset($data[$part])) {
return null;
}
$data = $data[$part];
}
return $data;
} | php | public static function getPath($data, $path)
{
$path = explode('/', $path);
while (null !== ($part = array_shift($path))) {
if (!is_array($data) || !isset($data[$part])) {
return null;
}
$data = $data[$part];
}
return $data;
} | [
"public",
"static",
"function",
"getPath",
"(",
"$",
"data",
",",
"$",
"path",
")",
"{",
"$",
"path",
"=",
"explode",
"(",
"'/'",
",",
"$",
"path",
")",
";",
"while",
"(",
"null",
"!==",
"(",
"$",
"part",
"=",
"array_shift",
"(",
"$",
"path",
")"... | Gets a value from an array using a path syntax to retrieve nested data.
This method does not allow for keys that contain "/". You must traverse
the array manually or using something more advanced like JMESPath to
work with keys that contain "/".
// Get the bar key of a set of nested arrays.
// This is equivalent to $... | [
"Gets",
"a",
"value",
"from",
"an",
"array",
"using",
"a",
"path",
"syntax",
"to",
"retrieve",
"nested",
"data",
"."
] | 9588a489c52b27e2d4047f146ddacffc3e111b7e | https://github.com/akumar2-velsof/guzzlehttp/blob/9588a489c52b27e2d4047f146ddacffc3e111b7e/src/Utils.php#L31-L43 | train |
akumar2-velsof/guzzlehttp | src/Utils.php | Utils.setPath | public static function setPath(&$data, $path, $value)
{
$queue = explode('/', $path);
// Optimization for simple sets.
if (count($queue) === 1) {
$data[$path] = $value;
return;
}
$current =& $data;
while (null !== ($key = array_shift($queue)))... | php | public static function setPath(&$data, $path, $value)
{
$queue = explode('/', $path);
// Optimization for simple sets.
if (count($queue) === 1) {
$data[$path] = $value;
return;
}
$current =& $data;
while (null !== ($key = array_shift($queue)))... | [
"public",
"static",
"function",
"setPath",
"(",
"&",
"$",
"data",
",",
"$",
"path",
",",
"$",
"value",
")",
"{",
"$",
"queue",
"=",
"explode",
"(",
"'/'",
",",
"$",
"path",
")",
";",
"// Optimization for simple sets.",
"if",
"(",
"count",
"(",
"$",
"... | Set a value in a nested array key. Keys will be created as needed to set
the value.
This function does not support keys that contain "/" or "[]" characters
because these are special tokens used when traversing the data structure.
A value may be prepended to an existing array by using "[]" as the final
key of a path.
... | [
"Set",
"a",
"value",
"in",
"a",
"nested",
"array",
"key",
".",
"Keys",
"will",
"be",
"created",
"as",
"needed",
"to",
"set",
"the",
"value",
"."
] | 9588a489c52b27e2d4047f146ddacffc3e111b7e | https://github.com/akumar2-velsof/guzzlehttp/blob/9588a489c52b27e2d4047f146ddacffc3e111b7e/src/Utils.php#L67-L94 | train |
akumar2-velsof/guzzlehttp | src/Utils.php | Utils.uriTemplate | public static function uriTemplate($template, array $variables)
{
if (function_exists('\\uri_template')) {
return \uri_template($template, $variables);
}
static $uriTemplate;
if (!$uriTemplate) {
$uriTemplate = new UriTemplate();
}
return $ur... | php | public static function uriTemplate($template, array $variables)
{
if (function_exists('\\uri_template')) {
return \uri_template($template, $variables);
}
static $uriTemplate;
if (!$uriTemplate) {
$uriTemplate = new UriTemplate();
}
return $ur... | [
"public",
"static",
"function",
"uriTemplate",
"(",
"$",
"template",
",",
"array",
"$",
"variables",
")",
"{",
"if",
"(",
"function_exists",
"(",
"'\\\\uri_template'",
")",
")",
"{",
"return",
"\\",
"uri_template",
"(",
"$",
"template",
",",
"$",
"variables"... | Expands a URI template
@param string $template URI template
@param array $variables Template variables
@return string | [
"Expands",
"a",
"URI",
"template"
] | 9588a489c52b27e2d4047f146ddacffc3e111b7e | https://github.com/akumar2-velsof/guzzlehttp/blob/9588a489c52b27e2d4047f146ddacffc3e111b7e/src/Utils.php#L104-L116 | train |
akumar2-velsof/guzzlehttp | src/Utils.php | Utils.jsonDecode | public static function jsonDecode($json, $assoc = false, $depth = 512, $options = 0)
{
if ($json === '' || $json === null) {
return null;
}
static $jsonErrors = [
JSON_ERROR_DEPTH => 'JSON_ERROR_DEPTH - Maximum stack depth exceeded',
JSON_ERROR_STATE_MISM... | php | public static function jsonDecode($json, $assoc = false, $depth = 512, $options = 0)
{
if ($json === '' || $json === null) {
return null;
}
static $jsonErrors = [
JSON_ERROR_DEPTH => 'JSON_ERROR_DEPTH - Maximum stack depth exceeded',
JSON_ERROR_STATE_MISM... | [
"public",
"static",
"function",
"jsonDecode",
"(",
"$",
"json",
",",
"$",
"assoc",
"=",
"false",
",",
"$",
"depth",
"=",
"512",
",",
"$",
"options",
"=",
"0",
")",
"{",
"if",
"(",
"$",
"json",
"===",
"''",
"||",
"$",
"json",
"===",
"null",
")",
... | Wrapper for JSON decode that implements error detection with helpful
error messages.
@param string $json JSON data to parse
@param bool $assoc When true, returned objects will be converted
into associative arrays.
@param int $depth User specified recursion depth.
@param int $options Bitmask of JSON deco... | [
"Wrapper",
"for",
"JSON",
"decode",
"that",
"implements",
"error",
"detection",
"with",
"helpful",
"error",
"messages",
"."
] | 9588a489c52b27e2d4047f146ddacffc3e111b7e | https://github.com/akumar2-velsof/guzzlehttp/blob/9588a489c52b27e2d4047f146ddacffc3e111b7e/src/Utils.php#L132-L159 | train |
akumar2-velsof/guzzlehttp | src/Utils.php | Utils.getDefaultHandler | public static function getDefaultHandler()
{
$default = $future = null;
if (extension_loaded('curl')) {
$config = [
'select_timeout' => getenv('GUZZLE_CURL_SELECT_TIMEOUT') ?: 1
];
if ($maxHandles = getenv('GUZZLE_CURL_MAX_HANDLES')) {
... | php | public static function getDefaultHandler()
{
$default = $future = null;
if (extension_loaded('curl')) {
$config = [
'select_timeout' => getenv('GUZZLE_CURL_SELECT_TIMEOUT') ?: 1
];
if ($maxHandles = getenv('GUZZLE_CURL_MAX_HANDLES')) {
... | [
"public",
"static",
"function",
"getDefaultHandler",
"(",
")",
"{",
"$",
"default",
"=",
"$",
"future",
"=",
"null",
";",
"if",
"(",
"extension_loaded",
"(",
"'curl'",
")",
")",
"{",
"$",
"config",
"=",
"[",
"'select_timeout'",
"=>",
"getenv",
"(",
"'GUZ... | Create a default handler to use based on the environment
@throws \RuntimeException if no viable Handler is available. | [
"Create",
"a",
"default",
"handler",
"to",
"use",
"based",
"on",
"the",
"environment"
] | 9588a489c52b27e2d4047f146ddacffc3e111b7e | https://github.com/akumar2-velsof/guzzlehttp/blob/9588a489c52b27e2d4047f146ddacffc3e111b7e/src/Utils.php#L185-L214 | train |
mlocati/concrete5-translation-library | src/Parser.php | Parser.parseDirectory | final public function parseDirectory($rootDirectory, $relativePath, $translations = null, $subParsersFilter = false, $exclude3rdParty = true)
{
if (!is_object($translations)) {
$translations = new \Gettext\Translations();
}
$dir = (string) $rootDirectory;
if ($dir !== '')... | php | final public function parseDirectory($rootDirectory, $relativePath, $translations = null, $subParsersFilter = false, $exclude3rdParty = true)
{
if (!is_object($translations)) {
$translations = new \Gettext\Translations();
}
$dir = (string) $rootDirectory;
if ($dir !== '')... | [
"final",
"public",
"function",
"parseDirectory",
"(",
"$",
"rootDirectory",
",",
"$",
"relativePath",
",",
"$",
"translations",
"=",
"null",
",",
"$",
"subParsersFilter",
"=",
"false",
",",
"$",
"exclude3rdParty",
"=",
"true",
")",
"{",
"if",
"(",
"!",
"is... | Extracts translations from a directory.
@param string $rootDirectory The base directory where we start looking translations from
@param string $relativePath The relative path (translations references will be prepended with this path)
@param \Gettext\Translations... | [
"Extracts",
"translations",
"from",
"a",
"directory",
"."
] | 26f806c8c1ecb6ce63115a4058ab396303622e00 | https://github.com/mlocati/concrete5-translation-library/blob/26f806c8c1ecb6ce63115a4058ab396303622e00/src/Parser.php#L74-L98 | train |
mlocati/concrete5-translation-library | src/Parser.php | Parser.parseRunningConcrete5 | final public function parseRunningConcrete5($translations = null, $subParsersFilter = false)
{
if (!is_object($translations)) {
$translations = new \Gettext\Translations();
}
$runningVersion = '';
if (defined('\C5_EXECUTE') && defined('\APP_VERSION') && is_string(\APP_VER... | php | final public function parseRunningConcrete5($translations = null, $subParsersFilter = false)
{
if (!is_object($translations)) {
$translations = new \Gettext\Translations();
}
$runningVersion = '';
if (defined('\C5_EXECUTE') && defined('\APP_VERSION') && is_string(\APP_VER... | [
"final",
"public",
"function",
"parseRunningConcrete5",
"(",
"$",
"translations",
"=",
"null",
",",
"$",
"subParsersFilter",
"=",
"false",
")",
"{",
"if",
"(",
"!",
"is_object",
"(",
"$",
"translations",
")",
")",
"{",
"$",
"translations",
"=",
"new",
"\\"... | Extracts translations from a running concrete5 instance.
@param \Gettext\Translations|null=null $translations The translations object where the translatable strings will be added (if null we'll create a new Translations instance)
@param array|false $subParsersFilter A list of sub-parsers handle... | [
"Extracts",
"translations",
"from",
"a",
"running",
"concrete5",
"instance",
"."
] | 26f806c8c1ecb6ce63115a4058ab396303622e00 | https://github.com/mlocati/concrete5-translation-library/blob/26f806c8c1ecb6ce63115a4058ab396303622e00/src/Parser.php#L134-L149 | train |
mlocati/concrete5-translation-library | src/Parser.php | Parser.getDirectoryStructure | final protected static function getDirectoryStructure($rootDirectory, $exclude3rdParty = true)
{
$rootDirectory = rtrim(str_replace(DIRECTORY_SEPARATOR, '/', $rootDirectory), '/');
if (!isset(self::$cache[__FUNCTION__])) {
self::$cache[__FUNCTION__] = array();
}
$cacheKey... | php | final protected static function getDirectoryStructure($rootDirectory, $exclude3rdParty = true)
{
$rootDirectory = rtrim(str_replace(DIRECTORY_SEPARATOR, '/', $rootDirectory), '/');
if (!isset(self::$cache[__FUNCTION__])) {
self::$cache[__FUNCTION__] = array();
}
$cacheKey... | [
"final",
"protected",
"static",
"function",
"getDirectoryStructure",
"(",
"$",
"rootDirectory",
",",
"$",
"exclude3rdParty",
"=",
"true",
")",
"{",
"$",
"rootDirectory",
"=",
"rtrim",
"(",
"str_replace",
"(",
"DIRECTORY_SEPARATOR",
",",
"'/'",
",",
"$",
"rootDir... | Returns the directory structure underneath a given directory.
@param string $rootDirectory The root directory
@param bool $exclude3rdParty=true Exclude concrete5 3rd party directories (namely directories called 'vendor' and '3rdparty')
@return array | [
"Returns",
"the",
"directory",
"structure",
"underneath",
"a",
"given",
"directory",
"."
] | 26f806c8c1ecb6ce63115a4058ab396303622e00 | https://github.com/mlocati/concrete5-translation-library/blob/26f806c8c1ecb6ce63115a4058ab396303622e00/src/Parser.php#L189-L201 | train |
mlocati/concrete5-translation-library | src/Parser.php | Parser.getAllParsers | final public static function getAllParsers()
{
$result = array();
$dir = __DIR__.'/Parser';
if (is_dir($dir) && is_readable($dir)) {
$matches = null;
foreach (scandir($dir) as $item) {
if (($item[0] !== '.') && preg_match('/^(.+)\.php$/i', $item, $matc... | php | final public static function getAllParsers()
{
$result = array();
$dir = __DIR__.'/Parser';
if (is_dir($dir) && is_readable($dir)) {
$matches = null;
foreach (scandir($dir) as $item) {
if (($item[0] !== '.') && preg_match('/^(.+)\.php$/i', $item, $matc... | [
"final",
"public",
"static",
"function",
"getAllParsers",
"(",
")",
"{",
"$",
"result",
"=",
"array",
"(",
")",
";",
"$",
"dir",
"=",
"__DIR__",
".",
"'/Parser'",
";",
"if",
"(",
"is_dir",
"(",
"$",
"dir",
")",
"&&",
"is_readable",
"(",
"$",
"dir",
... | Retrieves all the available parsers.
@return array[\C5TL\Parser] | [
"Retrieves",
"all",
"the",
"available",
"parsers",
"."
] | 26f806c8c1ecb6ce63115a4058ab396303622e00 | https://github.com/mlocati/concrete5-translation-library/blob/26f806c8c1ecb6ce63115a4058ab396303622e00/src/Parser.php#L256-L271 | train |
CodeCollab/Http | src/Cookie/Cookie.php | Cookie.send | public function send()
{
setcookie(
$this->name,
$this->value,
(int) $this->expire->format('U'),
$this->path,
$this->domain,
$this->secure,
$this->httpOnly
);
} | php | public function send()
{
setcookie(
$this->name,
$this->value,
(int) $this->expire->format('U'),
$this->path,
$this->domain,
$this->secure,
$this->httpOnly
);
} | [
"public",
"function",
"send",
"(",
")",
"{",
"setcookie",
"(",
"$",
"this",
"->",
"name",
",",
"$",
"this",
"->",
"value",
",",
"(",
"int",
")",
"$",
"this",
"->",
"expire",
"->",
"format",
"(",
"'U'",
")",
",",
"$",
"this",
"->",
"path",
",",
... | Sends the cookie header | [
"Sends",
"the",
"cookie",
"header"
] | b1f8306b20daebcf26ed4b13c032c5bc008a0861 | https://github.com/CodeCollab/Http/blob/b1f8306b20daebcf26ed4b13c032c5bc008a0861/src/Cookie/Cookie.php#L85-L96 | train |
luoxiaojun1992/lb_framework | components/Route.php | Route.triggerAopEvent | protected static function triggerAopEvent(
$controller_id,
$action_name,
$request = null,
$response = null
) {
$context = [
'controller_id' => $controller_id,
'action_id' => $action_name,
];
if ($request) {
$context['re... | php | protected static function triggerAopEvent(
$controller_id,
$action_name,
$request = null,
$response = null
) {
$context = [
'controller_id' => $controller_id,
'action_id' => $action_name,
];
if ($request) {
$context['re... | [
"protected",
"static",
"function",
"triggerAopEvent",
"(",
"$",
"controller_id",
",",
"$",
"action_name",
",",
"$",
"request",
"=",
"null",
",",
"$",
"response",
"=",
"null",
")",
"{",
"$",
"context",
"=",
"[",
"'controller_id'",
"=>",
"$",
"controller_id",
... | Trigger AOP Event
@param $controller_id
@param $action_name
@param null $request
@param null $response | [
"Trigger",
"AOP",
"Event"
] | 12a865729e7738d7d1e07371ad7203243c4571fa | https://github.com/luoxiaojun1992/lb_framework/blob/12a865729e7738d7d1e07371ad7203243c4571fa/components/Route.php#L295-L320 | train |
vincenttouzet/BootstrapFormBundle | Form/DataTransformer/DateRangeToStringTransformer.php | DateRangeToStringTransformer.transform | public function transform($value)
{
if ( $value ) {
$from = '';
if ( $value->getFrom() ) {
$from = $value->getFrom()->format('Y-m-d');
}
$to = '';
if ( $value->getTo() ) {
$to = $value->getTo()->format('Y-m-d');
... | php | public function transform($value)
{
if ( $value ) {
$from = '';
if ( $value->getFrom() ) {
$from = $value->getFrom()->format('Y-m-d');
}
$to = '';
if ( $value->getTo() ) {
$to = $value->getTo()->format('Y-m-d');
... | [
"public",
"function",
"transform",
"(",
"$",
"value",
")",
"{",
"if",
"(",
"$",
"value",
")",
"{",
"$",
"from",
"=",
"''",
";",
"if",
"(",
"$",
"value",
"->",
"getFrom",
"(",
")",
")",
"{",
"$",
"from",
"=",
"$",
"value",
"->",
"getFrom",
"(",
... | Transforms a DateRange into a string.
@param DateRange $value DateRange value.
@return string string value. | [
"Transforms",
"a",
"DateRange",
"into",
"a",
"string",
"."
] | d648c825ca9f7020336023e82a1059fc070727ac | https://github.com/vincenttouzet/BootstrapFormBundle/blob/d648c825ca9f7020336023e82a1059fc070727ac/Form/DataTransformer/DateRangeToStringTransformer.php#L48-L66 | train |
vincenttouzet/BootstrapFormBundle | Form/DataTransformer/DateRangeToStringTransformer.php | DateRangeToStringTransformer.reverseTransform | public function reverseTransform($value)
{
$parts = explode($this->dateSeparator, $value);
$from = isset($parts[0]) ? $parts[0] : null;
$to = isset($parts[1]) ? $parts[1] : null;
return new DAteRange($from, $to);
} | php | public function reverseTransform($value)
{
$parts = explode($this->dateSeparator, $value);
$from = isset($parts[0]) ? $parts[0] : null;
$to = isset($parts[1]) ? $parts[1] : null;
return new DAteRange($from, $to);
} | [
"public",
"function",
"reverseTransform",
"(",
"$",
"value",
")",
"{",
"$",
"parts",
"=",
"explode",
"(",
"$",
"this",
"->",
"dateSeparator",
",",
"$",
"value",
")",
";",
"$",
"from",
"=",
"isset",
"(",
"$",
"parts",
"[",
"0",
"]",
")",
"?",
"$",
... | Transforms a string into a DateRange.
@param string $value String value.
@return DateRange DateRange value. | [
"Transforms",
"a",
"string",
"into",
"a",
"DateRange",
"."
] | d648c825ca9f7020336023e82a1059fc070727ac | https://github.com/vincenttouzet/BootstrapFormBundle/blob/d648c825ca9f7020336023e82a1059fc070727ac/Form/DataTransformer/DateRangeToStringTransformer.php#L75-L81 | train |
cyberspectrum/i18n-contao | src/Extractor/TableExtractor.php | TableExtractor.decode | private function decode(array $row): ?array
{
if (null === ($encoded = $row[$this->name()])) {
return null;
}
if (false === ($decoded = unserialize($encoded, ['allowed_classes' => false]))) {
return null;
}
if (!\is_array($decoded)) {
ret... | php | private function decode(array $row): ?array
{
if (null === ($encoded = $row[$this->name()])) {
return null;
}
if (false === ($decoded = unserialize($encoded, ['allowed_classes' => false]))) {
return null;
}
if (!\is_array($decoded)) {
ret... | [
"private",
"function",
"decode",
"(",
"array",
"$",
"row",
")",
":",
"?",
"array",
"{",
"if",
"(",
"null",
"===",
"(",
"$",
"encoded",
"=",
"$",
"row",
"[",
"$",
"this",
"->",
"name",
"(",
")",
"]",
")",
")",
"{",
"return",
"null",
";",
"}",
... | Decode the row value.
@param array $row The row.
@return array|null | [
"Decode",
"the",
"row",
"value",
"."
] | 038cf6ea9c609a734d7476fba256bc4b0db236b7 | https://github.com/cyberspectrum/i18n-contao/blob/038cf6ea9c609a734d7476fba256bc4b0db236b7/src/Extractor/TableExtractor.php#L144-L158 | train |
ARCANEDEV/Markup | src/Entities/Tag/ElementCollection.php | ElementCollection.render | public function render()
{
$output = $this->each(function($tag) {
/** @var Tag $tag */
return $tag->render();
});
return implode('', $output->toArray());
} | php | public function render()
{
$output = $this->each(function($tag) {
/** @var Tag $tag */
return $tag->render();
});
return implode('', $output->toArray());
} | [
"public",
"function",
"render",
"(",
")",
"{",
"$",
"output",
"=",
"$",
"this",
"->",
"each",
"(",
"function",
"(",
"$",
"tag",
")",
"{",
"/** @var Tag $tag */",
"return",
"$",
"tag",
"->",
"render",
"(",
")",
";",
"}",
")",
";",
"return",
"implode",... | Render tag elements
@return string | [
"Render",
"tag",
"elements"
] | 881331df74b27614d025c365daacbae6aa865612 | https://github.com/ARCANEDEV/Markup/blob/881331df74b27614d025c365daacbae6aa865612/src/Entities/Tag/ElementCollection.php#L56-L64 | train |
ARCANEDEV/Markup | src/Entities/Tag/ElementCollection.php | ElementCollection.getNextItem | private function getNextItem(Tag $item, $items)
{
$currentItem = $items[0];
while ($currentItem !== null and $currentItem !== $item) {
$currentItem = next($items);
}
$next = next($items);
return $next !== false ? $next : null;
} | php | private function getNextItem(Tag $item, $items)
{
$currentItem = $items[0];
while ($currentItem !== null and $currentItem !== $item) {
$currentItem = next($items);
}
$next = next($items);
return $next !== false ? $next : null;
} | [
"private",
"function",
"getNextItem",
"(",
"Tag",
"$",
"item",
",",
"$",
"items",
")",
"{",
"$",
"currentItem",
"=",
"$",
"items",
"[",
"0",
"]",
";",
"while",
"(",
"$",
"currentItem",
"!==",
"null",
"and",
"$",
"currentItem",
"!==",
"$",
"item",
")"... | Get next item from items array
@param Tag $item
@param array $items
@return Tag|null | [
"Get",
"next",
"item",
"from",
"items",
"array"
] | 881331df74b27614d025c365daacbae6aa865612 | https://github.com/ARCANEDEV/Markup/blob/881331df74b27614d025c365daacbae6aa865612/src/Entities/Tag/ElementCollection.php#L78-L89 | train |
ARCANEDEV/Markup | src/Entities/Tag/ElementCollection.php | ElementCollection.remove | public function remove($tag)
{
if ($this->count() == 0) {
return [$this, null];
}
$deleted = null;
foreach ($this->items as $key => $element) {
if ($element === $tag) {
$this->forget($key);
$deleted = $tag;
b... | php | public function remove($tag)
{
if ($this->count() == 0) {
return [$this, null];
}
$deleted = null;
foreach ($this->items as $key => $element) {
if ($element === $tag) {
$this->forget($key);
$deleted = $tag;
b... | [
"public",
"function",
"remove",
"(",
"$",
"tag",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"count",
"(",
")",
"==",
"0",
")",
"{",
"return",
"[",
"$",
"this",
",",
"null",
"]",
";",
"}",
"$",
"deleted",
"=",
"null",
";",
"foreach",
"(",
"$",
"t... | Remove tag element from collection
@param Tag $tag
@return array | [
"Remove",
"tag",
"element",
"from",
"collection"
] | 881331df74b27614d025c365daacbae6aa865612 | https://github.com/ARCANEDEV/Markup/blob/881331df74b27614d025c365daacbae6aa865612/src/Entities/Tag/ElementCollection.php#L98-L117 | train |
sellerlabs/php-standard | src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php | Chroma_Sniffs_Commenting_FunctionCommentSniff.findUseStatements | protected function findUseStatements(File $file)
{
if (array_key_exists($file->getFilename(), static::$useCache)) {
return static::$useCache[$file->getFilename()];
}
$tokens = $file->getTokens();
$usePosition = $file->findNext(T_USE, 0);
$useStatements = [];
... | php | protected function findUseStatements(File $file)
{
if (array_key_exists($file->getFilename(), static::$useCache)) {
return static::$useCache[$file->getFilename()];
}
$tokens = $file->getTokens();
$usePosition = $file->findNext(T_USE, 0);
$useStatements = [];
... | [
"protected",
"function",
"findUseStatements",
"(",
"File",
"$",
"file",
")",
"{",
"if",
"(",
"array_key_exists",
"(",
"$",
"file",
"->",
"getFilename",
"(",
")",
",",
"static",
"::",
"$",
"useCache",
")",
")",
"{",
"return",
"static",
"::",
"$",
"useCach... | Find all use statements.
@param PHP_CodeSniffer_File $file
@return array | [
"Find",
"all",
"use",
"statements",
"."
] | cd5c919c5aad1aba6f2486a81867172d0eb167f7 | https://github.com/sellerlabs/php-standard/blob/cd5c919c5aad1aba6f2486a81867172d0eb167f7/src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php#L323-L391 | train |
sellerlabs/php-standard | src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php | Chroma_Sniffs_Commenting_FunctionCommentSniff.shouldIgnoreUse | protected function shouldIgnoreUse(File $file, $stackPtr)
{
$tokens = $file->getTokens();
// Ignore USE keywords inside closures.
$next = $file->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
if ($tokens[$next]['code'] === T_OPEN_PARENTHESIS) {
return true;
... | php | protected function shouldIgnoreUse(File $file, $stackPtr)
{
$tokens = $file->getTokens();
// Ignore USE keywords inside closures.
$next = $file->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
if ($tokens[$next]['code'] === T_OPEN_PARENTHESIS) {
return true;
... | [
"protected",
"function",
"shouldIgnoreUse",
"(",
"File",
"$",
"file",
",",
"$",
"stackPtr",
")",
"{",
"$",
"tokens",
"=",
"$",
"file",
"->",
"getTokens",
"(",
")",
";",
"// Ignore USE keywords inside closures.",
"$",
"next",
"=",
"$",
"file",
"->",
"findNext... | Check whether or not a USE statement should be ignored.
@param PHP_CodeSniffer_File $file
@param $stackPtr
@return bool | [
"Check",
"whether",
"or",
"not",
"a",
"USE",
"statement",
"should",
"be",
"ignored",
"."
] | cd5c919c5aad1aba6f2486a81867172d0eb167f7 | https://github.com/sellerlabs/php-standard/blob/cd5c919c5aad1aba6f2486a81867172d0eb167f7/src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php#L401-L417 | train |
sellerlabs/php-standard | src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php | Chroma_Sniffs_Commenting_FunctionCommentSniff.resolveArrayType | protected function resolveArrayType($type)
{
if (strrpos($type, '[]', -2) !== false) {
return substr($type, 0, strlen($type) - 2);
}
return $type;
} | php | protected function resolveArrayType($type)
{
if (strrpos($type, '[]', -2) !== false) {
return substr($type, 0, strlen($type) - 2);
}
return $type;
} | [
"protected",
"function",
"resolveArrayType",
"(",
"$",
"type",
")",
"{",
"if",
"(",
"strrpos",
"(",
"$",
"type",
",",
"'[]'",
",",
"-",
"2",
")",
"!==",
"false",
")",
"{",
"return",
"substr",
"(",
"$",
"type",
",",
"0",
",",
"strlen",
"(",
"$",
"... | Attempt to resolve the type of an array.
@param $type
@return string | [
"Attempt",
"to",
"resolve",
"the",
"type",
"of",
"an",
"array",
"."
] | cd5c919c5aad1aba6f2486a81867172d0eb167f7 | https://github.com/sellerlabs/php-standard/blob/cd5c919c5aad1aba6f2486a81867172d0eb167f7/src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php#L468-L475 | train |
sellerlabs/php-standard | src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php | Chroma_Sniffs_Commenting_FunctionCommentSniff.extractNamespace | protected function extractNamespace(
File $file
) {
$namespace = '';
$tokens = $file->getTokens();
$prev = $file->findNext(T_NAMESPACE, 0);
for ($i = $prev + 2; $i < count($tokens); $i++) {
if (!in_array($tokens[$i]['code'], [T_STRING, T_NS_SEPARATOR])) {
... | php | protected function extractNamespace(
File $file
) {
$namespace = '';
$tokens = $file->getTokens();
$prev = $file->findNext(T_NAMESPACE, 0);
for ($i = $prev + 2; $i < count($tokens); $i++) {
if (!in_array($tokens[$i]['code'], [T_STRING, T_NS_SEPARATOR])) {
... | [
"protected",
"function",
"extractNamespace",
"(",
"File",
"$",
"file",
")",
"{",
"$",
"namespace",
"=",
"''",
";",
"$",
"tokens",
"=",
"$",
"file",
"->",
"getTokens",
"(",
")",
";",
"$",
"prev",
"=",
"$",
"file",
"->",
"findNext",
"(",
"T_NAMESPACE",
... | Extract the first namespace found in the file.
@param PHP_CodeSniffer_File $file
@return string | [
"Extract",
"the",
"first",
"namespace",
"found",
"in",
"the",
"file",
"."
] | cd5c919c5aad1aba6f2486a81867172d0eb167f7 | https://github.com/sellerlabs/php-standard/blob/cd5c919c5aad1aba6f2486a81867172d0eb167f7/src/SellerLabs/Standards/Chroma/Sniffs/Commenting/FunctionCommentSniff.php#L561-L579 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.