id
int32 0
241k
| 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
sequence | docstring
stringlengths 3
47.2k
| docstring_tokens
sequence | sha
stringlengths 40
40
| url
stringlengths 91
247
|
---|---|---|---|---|---|---|---|---|---|---|---|
0 | remi-san/serializer | src/Hydrator/HydratorFactory.php | HydratorFactory.getHydratorClassName | public function getHydratorClassName($fqcn)
{
$config = new Configuration($fqcn);
$config->setAutoGenerateProxies($this->generateProxies);
$config->setGeneratedClassesTargetDir($this->cacheDir);
return $config->createFactory()->getHydratorClass();
} | php | public function getHydratorClassName($fqcn)
{
$config = new Configuration($fqcn);
$config->setAutoGenerateProxies($this->generateProxies);
$config->setGeneratedClassesTargetDir($this->cacheDir);
return $config->createFactory()->getHydratorClass();
} | [
"public",
"function",
"getHydratorClassName",
"(",
"$",
"fqcn",
")",
"{",
"$",
"config",
"=",
"new",
"Configuration",
"(",
"$",
"fqcn",
")",
";",
"$",
"config",
"->",
"setAutoGenerateProxies",
"(",
"$",
"this",
"->",
"generateProxies",
")",
";",
"$",
"config",
"->",
"setGeneratedClassesTargetDir",
"(",
"$",
"this",
"->",
"cacheDir",
")",
";",
"return",
"$",
"config",
"->",
"createFactory",
"(",
")",
"->",
"getHydratorClass",
"(",
")",
";",
"}"
] | Gets the hydrator class name.
@param string $fqcn
@return string | [
"Gets",
"the",
"hydrator",
"class",
"name",
"."
] | 1310963b096860d7bdf9b5d3e3f73d9ca088b69b | https://github.com/remi-san/serializer/blob/1310963b096860d7bdf9b5d3e3f73d9ca088b69b/src/Hydrator/HydratorFactory.php#L53-L60 |
1 | porkchopsandwiches/baseline-silex-application | lib/src/PorkChopSandwiches/Silex/Baseline/Application.php | Application.bootstrapEnvironment | protected function bootstrapEnvironment () {
$this["debug"] = !!$this["app.config"]["environment.debug"];
Errorhandler::register();
ExceptionHandler::register($this["debug"]);
Request::enableHttpMethodParameterOverride();
} | php | protected function bootstrapEnvironment () {
$this["debug"] = !!$this["app.config"]["environment.debug"];
Errorhandler::register();
ExceptionHandler::register($this["debug"]);
Request::enableHttpMethodParameterOverride();
} | [
"protected",
"function",
"bootstrapEnvironment",
"(",
")",
"{",
"$",
"this",
"[",
"\"debug\"",
"]",
"=",
"!",
"!",
"$",
"this",
"[",
"\"app.config\"",
"]",
"[",
"\"environment.debug\"",
"]",
";",
"Errorhandler",
"::",
"register",
"(",
")",
";",
"ExceptionHandler",
"::",
"register",
"(",
"$",
"this",
"[",
"\"debug\"",
"]",
")",
";",
"Request",
"::",
"enableHttpMethodParameterOverride",
"(",
")",
";",
"}"
] | Prepare the environment, registering the Error and Exception handlers, and allowing HTTP method parameter overriding. | [
"Prepare",
"the",
"environment",
"registering",
"the",
"Error",
"and",
"Exception",
"handlers",
"and",
"allowing",
"HTTP",
"method",
"parameter",
"overriding",
"."
] | 1375545a6a8555498c39c9e3790e5522f258a749 | https://github.com/porkchopsandwiches/baseline-silex-application/blob/1375545a6a8555498c39c9e3790e5522f258a749/lib/src/PorkChopSandwiches/Silex/Baseline/Application.php#L172-L177 |
2 | phunc-org/Phunc | src/ValidLanguage.php | ValidLanguage.valid | public function valid($language)
{
if (empty($language)) {
return false;
}
if ($language == 'en' || $language == 'de' || $language == 'pl' || $language == 'ru') {
return true;
}
return false;
} | php | public function valid($language)
{
if (empty($language)) {
return false;
}
if ($language == 'en' || $language == 'de' || $language == 'pl' || $language == 'ru') {
return true;
}
return false;
} | [
"public",
"function",
"valid",
"(",
"$",
"language",
")",
"{",
"if",
"(",
"empty",
"(",
"$",
"language",
")",
")",
"{",
"return",
"false",
";",
"}",
"if",
"(",
"$",
"language",
"==",
"'en'",
"||",
"$",
"language",
"==",
"'de'",
"||",
"$",
"language",
"==",
"'pl'",
"||",
"$",
"language",
"==",
"'ru'",
")",
"{",
"return",
"true",
";",
"}",
"return",
"false",
";",
"}"
] | validation of language
@param $language
@return bool | [
"validation",
"of",
"language"
] | 80c69d5a63e352c8e0c3330e3b8bb1288d0a9256 | https://github.com/phunc-org/Phunc/blob/80c69d5a63e352c8e0c3330e3b8bb1288d0a9256/src/ValidLanguage.php#L33-L42 |
3 | themichaelhall/bluemvc-forms | src/Option.php | Option.getHtml | public function getHtml(array $attributes = []): string
{
return self::buildTag('option', $this->getLabel(),
array_merge(
[
'value' => $this->getValue(),
'selected' => $this->isSelected,
],
$attributes)
);
} | php | public function getHtml(array $attributes = []): string
{
return self::buildTag('option', $this->getLabel(),
array_merge(
[
'value' => $this->getValue(),
'selected' => $this->isSelected,
],
$attributes)
);
} | [
"public",
"function",
"getHtml",
"(",
"array",
"$",
"attributes",
"=",
"[",
"]",
")",
":",
"string",
"{",
"return",
"self",
"::",
"buildTag",
"(",
"'option'",
",",
"$",
"this",
"->",
"getLabel",
"(",
")",
",",
"array_merge",
"(",
"[",
"'value'",
"=>",
"$",
"this",
"->",
"getValue",
"(",
")",
",",
"'selected'",
"=>",
"$",
"this",
"->",
"isSelected",
",",
"]",
",",
"$",
"attributes",
")",
")",
";",
"}"
] | Returns the option html.
@since 1.0.0
@param array $attributes The attributes.
@return string The option html. | [
"Returns",
"the",
"option",
"html",
"."
] | 8f0e29aaf71eba70b50697384b22edaf72f2f45b | https://github.com/themichaelhall/bluemvc-forms/blob/8f0e29aaf71eba70b50697384b22edaf72f2f45b/src/Option.php#L47-L57 |
4 | polderknowledge/entityservice | src/Event/EntityEvent.php | EntityEvent.setEntityClassName | public function setEntityClassName($name)
{
$trimmedName = trim($name, '\\');
if (!class_exists($trimmedName)) {
throw new RuntimeException(sprintf('The class "%s" does not exist.', $trimmedName));
}
$this->entityClassName = $trimmedName;
return $this;
} | php | public function setEntityClassName($name)
{
$trimmedName = trim($name, '\\');
if (!class_exists($trimmedName)) {
throw new RuntimeException(sprintf('The class "%s" does not exist.', $trimmedName));
}
$this->entityClassName = $trimmedName;
return $this;
} | [
"public",
"function",
"setEntityClassName",
"(",
"$",
"name",
")",
"{",
"$",
"trimmedName",
"=",
"trim",
"(",
"$",
"name",
",",
"'\\\\'",
")",
";",
"if",
"(",
"!",
"class_exists",
"(",
"$",
"trimmedName",
")",
")",
"{",
"throw",
"new",
"RuntimeException",
"(",
"sprintf",
"(",
"'The class \"%s\" does not exist.'",
",",
"$",
"trimmedName",
")",
")",
";",
"}",
"$",
"this",
"->",
"entityClassName",
"=",
"$",
"trimmedName",
";",
"return",
"$",
"this",
";",
"}"
] | Sets the FQCN of the entity that is used.
@param string $name The FQCN of the entity.
@return EntityEvent Returns the instance of this class so that chaining can be used.
@throws RuntimeException | [
"Sets",
"the",
"FQCN",
"of",
"the",
"entity",
"that",
"is",
"used",
"."
] | f48994b4ea33b1d3b56a24d255cbfb99c1eaaf15 | https://github.com/polderknowledge/entityservice/blob/f48994b4ea33b1d3b56a24d255cbfb99c1eaaf15/src/Event/EntityEvent.php#L110-L121 |
5 | Messere/php-value-mask | src/Mask/Mask.php | Mask.maybeAppendWithKey | private function maybeAppendWithKey(string $key, array &$result, array $values): void
{
if ([] !== $values) {
$result[$key] = $values;
}
} | php | private function maybeAppendWithKey(string $key, array &$result, array $values): void
{
if ([] !== $values) {
$result[$key] = $values;
}
} | [
"private",
"function",
"maybeAppendWithKey",
"(",
"string",
"$",
"key",
",",
"array",
"&",
"$",
"result",
",",
"array",
"$",
"values",
")",
":",
"void",
"{",
"if",
"(",
"[",
"]",
"!==",
"$",
"values",
")",
"{",
"$",
"result",
"[",
"$",
"key",
"]",
"=",
"$",
"values",
";",
"}",
"}"
] | append values to result if not empty
@param string $key
@param array $result
@param array $values | [
"append",
"values",
"to",
"result",
"if",
"not",
"empty"
] | 9c972f70f328de734833133a8a2b879adbe31c79 | https://github.com/Messere/php-value-mask/blob/9c972f70f328de734833133a8a2b879adbe31c79/src/Mask/Mask.php#L78-L83 |
6 | gossi/trixionary | src/model/Base/Skill.php | Skill.setObject | public function setObject(ChildObject $v = null)
{
// aggregate_column_relation behavior
if (null !== $this->aObject && $v !== $this->aObject) {
$this->oldObjectSkillCount = $this->aObject;
}
if ($v === null) {
$this->setObjectId(NULL);
} else {
$this->setObjectId($v->getId());
}
$this->aObject = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildObject object, it will not be re-added.
if ($v !== null) {
$v->addSkill($this);
}
return $this;
} | php | public function setObject(ChildObject $v = null)
{
// aggregate_column_relation behavior
if (null !== $this->aObject && $v !== $this->aObject) {
$this->oldObjectSkillCount = $this->aObject;
}
if ($v === null) {
$this->setObjectId(NULL);
} else {
$this->setObjectId($v->getId());
}
$this->aObject = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildObject object, it will not be re-added.
if ($v !== null) {
$v->addSkill($this);
}
return $this;
} | [
"public",
"function",
"setObject",
"(",
"ChildObject",
"$",
"v",
"=",
"null",
")",
"{",
"// aggregate_column_relation behavior",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"aObject",
"&&",
"$",
"v",
"!==",
"$",
"this",
"->",
"aObject",
")",
"{",
"$",
"this",
"->",
"oldObjectSkillCount",
"=",
"$",
"this",
"->",
"aObject",
";",
"}",
"if",
"(",
"$",
"v",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"setObjectId",
"(",
"NULL",
")",
";",
"}",
"else",
"{",
"$",
"this",
"->",
"setObjectId",
"(",
"$",
"v",
"->",
"getId",
"(",
")",
")",
";",
"}",
"$",
"this",
"->",
"aObject",
"=",
"$",
"v",
";",
"// Add binding for other direction of this n:n relationship.",
"// If this object has already been added to the ChildObject object, it will not be re-added.",
"if",
"(",
"$",
"v",
"!==",
"null",
")",
"{",
"$",
"v",
"->",
"addSkill",
"(",
"$",
"this",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Declares an association between this object and a ChildObject object.
@param ChildObject $v
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support)
@throws PropelException | [
"Declares",
"an",
"association",
"between",
"this",
"object",
"and",
"a",
"ChildObject",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L4779-L4801 |
7 | gossi/trixionary | src/model/Base/Skill.php | Skill.getObject | public function getObject(ConnectionInterface $con = null)
{
if ($this->aObject === null && ($this->object_id !== null)) {
$this->aObject = ChildObjectQuery::create()->findPk($this->object_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aObject->addSkills($this);
*/
}
return $this->aObject;
} | php | public function getObject(ConnectionInterface $con = null)
{
if ($this->aObject === null && ($this->object_id !== null)) {
$this->aObject = ChildObjectQuery::create()->findPk($this->object_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aObject->addSkills($this);
*/
}
return $this->aObject;
} | [
"public",
"function",
"getObject",
"(",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"aObject",
"===",
"null",
"&&",
"(",
"$",
"this",
"->",
"object_id",
"!==",
"null",
")",
")",
"{",
"$",
"this",
"->",
"aObject",
"=",
"ChildObjectQuery",
"::",
"create",
"(",
")",
"->",
"findPk",
"(",
"$",
"this",
"->",
"object_id",
",",
"$",
"con",
")",
";",
"/* The following can be used additionally to\n guarantee the related object contains a reference\n to this object. This level of coupling may, however, be\n undesirable since it could result in an only partially populated collection\n in the referenced object.\n $this->aObject->addSkills($this);\n */",
"}",
"return",
"$",
"this",
"->",
"aObject",
";",
"}"
] | Get the associated ChildObject object
@param ConnectionInterface $con Optional Connection object.
@return ChildObject The associated ChildObject object.
@throws PropelException | [
"Get",
"the",
"associated",
"ChildObject",
"object"
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L4811-L4825 |
8 | gossi/trixionary | src/model/Base/Skill.php | Skill.setFeaturedPicture | public function setFeaturedPicture(ChildPicture $v = null)
{
if ($v === null) {
$this->setPictureId(NULL);
} else {
$this->setPictureId($v->getId());
}
$this->aFeaturedPicture = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildPicture object, it will not be re-added.
if ($v !== null) {
$v->addFeaturedSkill($this);
}
return $this;
} | php | public function setFeaturedPicture(ChildPicture $v = null)
{
if ($v === null) {
$this->setPictureId(NULL);
} else {
$this->setPictureId($v->getId());
}
$this->aFeaturedPicture = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildPicture object, it will not be re-added.
if ($v !== null) {
$v->addFeaturedSkill($this);
}
return $this;
} | [
"public",
"function",
"setFeaturedPicture",
"(",
"ChildPicture",
"$",
"v",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"v",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"setPictureId",
"(",
"NULL",
")",
";",
"}",
"else",
"{",
"$",
"this",
"->",
"setPictureId",
"(",
"$",
"v",
"->",
"getId",
"(",
")",
")",
";",
"}",
"$",
"this",
"->",
"aFeaturedPicture",
"=",
"$",
"v",
";",
"// Add binding for other direction of this n:n relationship.",
"// If this object has already been added to the ChildPicture object, it will not be re-added.",
"if",
"(",
"$",
"v",
"!==",
"null",
")",
"{",
"$",
"v",
"->",
"addFeaturedSkill",
"(",
"$",
"this",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Declares an association between this object and a ChildPicture object.
@param ChildPicture $v
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support)
@throws PropelException | [
"Declares",
"an",
"association",
"between",
"this",
"object",
"and",
"a",
"ChildPicture",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L4936-L4954 |
9 | gossi/trixionary | src/model/Base/Skill.php | Skill.getFeaturedPicture | public function getFeaturedPicture(ConnectionInterface $con = null)
{
if ($this->aFeaturedPicture === null && ($this->picture_id !== null)) {
$this->aFeaturedPicture = ChildPictureQuery::create()->findPk($this->picture_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aFeaturedPicture->addFeaturedSkills($this);
*/
}
return $this->aFeaturedPicture;
} | php | public function getFeaturedPicture(ConnectionInterface $con = null)
{
if ($this->aFeaturedPicture === null && ($this->picture_id !== null)) {
$this->aFeaturedPicture = ChildPictureQuery::create()->findPk($this->picture_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aFeaturedPicture->addFeaturedSkills($this);
*/
}
return $this->aFeaturedPicture;
} | [
"public",
"function",
"getFeaturedPicture",
"(",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"aFeaturedPicture",
"===",
"null",
"&&",
"(",
"$",
"this",
"->",
"picture_id",
"!==",
"null",
")",
")",
"{",
"$",
"this",
"->",
"aFeaturedPicture",
"=",
"ChildPictureQuery",
"::",
"create",
"(",
")",
"->",
"findPk",
"(",
"$",
"this",
"->",
"picture_id",
",",
"$",
"con",
")",
";",
"/* The following can be used additionally to\n guarantee the related object contains a reference\n to this object. This level of coupling may, however, be\n undesirable since it could result in an only partially populated collection\n in the referenced object.\n $this->aFeaturedPicture->addFeaturedSkills($this);\n */",
"}",
"return",
"$",
"this",
"->",
"aFeaturedPicture",
";",
"}"
] | Get the associated ChildPicture object
@param ConnectionInterface $con Optional Connection object.
@return ChildPicture The associated ChildPicture object.
@throws PropelException | [
"Get",
"the",
"associated",
"ChildPicture",
"object"
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L4964-L4978 |
10 | gossi/trixionary | src/model/Base/Skill.php | Skill.setKstrukturRoot | public function setKstrukturRoot(ChildKstruktur $v = null)
{
if ($v === null) {
$this->setKstrukturId(NULL);
} else {
$this->setKstrukturId($v->getId());
}
$this->aKstrukturRoot = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildKstruktur object, it will not be re-added.
if ($v !== null) {
$v->addRootSkill($this);
}
return $this;
} | php | public function setKstrukturRoot(ChildKstruktur $v = null)
{
if ($v === null) {
$this->setKstrukturId(NULL);
} else {
$this->setKstrukturId($v->getId());
}
$this->aKstrukturRoot = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildKstruktur object, it will not be re-added.
if ($v !== null) {
$v->addRootSkill($this);
}
return $this;
} | [
"public",
"function",
"setKstrukturRoot",
"(",
"ChildKstruktur",
"$",
"v",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"v",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"setKstrukturId",
"(",
"NULL",
")",
";",
"}",
"else",
"{",
"$",
"this",
"->",
"setKstrukturId",
"(",
"$",
"v",
"->",
"getId",
"(",
")",
")",
";",
"}",
"$",
"this",
"->",
"aKstrukturRoot",
"=",
"$",
"v",
";",
"// Add binding for other direction of this n:n relationship.",
"// If this object has already been added to the ChildKstruktur object, it will not be re-added.",
"if",
"(",
"$",
"v",
"!==",
"null",
")",
"{",
"$",
"v",
"->",
"addRootSkill",
"(",
"$",
"this",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Declares an association between this object and a ChildKstruktur object.
@param ChildKstruktur $v
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support)
@throws PropelException | [
"Declares",
"an",
"association",
"between",
"this",
"object",
"and",
"a",
"ChildKstruktur",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5089-L5107 |
11 | gossi/trixionary | src/model/Base/Skill.php | Skill.getKstrukturRoot | public function getKstrukturRoot(ConnectionInterface $con = null)
{
if ($this->aKstrukturRoot === null && ($this->kstruktur_id !== null)) {
$this->aKstrukturRoot = ChildKstrukturQuery::create()->findPk($this->kstruktur_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aKstrukturRoot->addRootSkills($this);
*/
}
return $this->aKstrukturRoot;
} | php | public function getKstrukturRoot(ConnectionInterface $con = null)
{
if ($this->aKstrukturRoot === null && ($this->kstruktur_id !== null)) {
$this->aKstrukturRoot = ChildKstrukturQuery::create()->findPk($this->kstruktur_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aKstrukturRoot->addRootSkills($this);
*/
}
return $this->aKstrukturRoot;
} | [
"public",
"function",
"getKstrukturRoot",
"(",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"aKstrukturRoot",
"===",
"null",
"&&",
"(",
"$",
"this",
"->",
"kstruktur_id",
"!==",
"null",
")",
")",
"{",
"$",
"this",
"->",
"aKstrukturRoot",
"=",
"ChildKstrukturQuery",
"::",
"create",
"(",
")",
"->",
"findPk",
"(",
"$",
"this",
"->",
"kstruktur_id",
",",
"$",
"con",
")",
";",
"/* The following can be used additionally to\n guarantee the related object contains a reference\n to this object. This level of coupling may, however, be\n undesirable since it could result in an only partially populated collection\n in the referenced object.\n $this->aKstrukturRoot->addRootSkills($this);\n */",
"}",
"return",
"$",
"this",
"->",
"aKstrukturRoot",
";",
"}"
] | Get the associated ChildKstruktur object
@param ConnectionInterface $con Optional Connection object.
@return ChildKstruktur The associated ChildKstruktur object.
@throws PropelException | [
"Get",
"the",
"associated",
"ChildKstruktur",
"object"
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5117-L5131 |
12 | gossi/trixionary | src/model/Base/Skill.php | Skill.setFunctionPhaseRoot | public function setFunctionPhaseRoot(ChildFunctionPhase $v = null)
{
if ($v === null) {
$this->setFunctionPhaseId(NULL);
} else {
$this->setFunctionPhaseId($v->getId());
}
$this->aFunctionPhaseRoot = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildFunctionPhase object, it will not be re-added.
if ($v !== null) {
$v->addRootSkill($this);
}
return $this;
} | php | public function setFunctionPhaseRoot(ChildFunctionPhase $v = null)
{
if ($v === null) {
$this->setFunctionPhaseId(NULL);
} else {
$this->setFunctionPhaseId($v->getId());
}
$this->aFunctionPhaseRoot = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the ChildFunctionPhase object, it will not be re-added.
if ($v !== null) {
$v->addRootSkill($this);
}
return $this;
} | [
"public",
"function",
"setFunctionPhaseRoot",
"(",
"ChildFunctionPhase",
"$",
"v",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"v",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"setFunctionPhaseId",
"(",
"NULL",
")",
";",
"}",
"else",
"{",
"$",
"this",
"->",
"setFunctionPhaseId",
"(",
"$",
"v",
"->",
"getId",
"(",
")",
")",
";",
"}",
"$",
"this",
"->",
"aFunctionPhaseRoot",
"=",
"$",
"v",
";",
"// Add binding for other direction of this n:n relationship.",
"// If this object has already been added to the ChildFunctionPhase object, it will not be re-added.",
"if",
"(",
"$",
"v",
"!==",
"null",
")",
"{",
"$",
"v",
"->",
"addRootSkill",
"(",
"$",
"this",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Declares an association between this object and a ChildFunctionPhase object.
@param ChildFunctionPhase $v
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support)
@throws PropelException | [
"Declares",
"an",
"association",
"between",
"this",
"object",
"and",
"a",
"ChildFunctionPhase",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5140-L5158 |
13 | gossi/trixionary | src/model/Base/Skill.php | Skill.getFunctionPhaseRoot | public function getFunctionPhaseRoot(ConnectionInterface $con = null)
{
if ($this->aFunctionPhaseRoot === null && ($this->function_phase_id !== null)) {
$this->aFunctionPhaseRoot = ChildFunctionPhaseQuery::create()->findPk($this->function_phase_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aFunctionPhaseRoot->addRootSkills($this);
*/
}
return $this->aFunctionPhaseRoot;
} | php | public function getFunctionPhaseRoot(ConnectionInterface $con = null)
{
if ($this->aFunctionPhaseRoot === null && ($this->function_phase_id !== null)) {
$this->aFunctionPhaseRoot = ChildFunctionPhaseQuery::create()->findPk($this->function_phase_id, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aFunctionPhaseRoot->addRootSkills($this);
*/
}
return $this->aFunctionPhaseRoot;
} | [
"public",
"function",
"getFunctionPhaseRoot",
"(",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"aFunctionPhaseRoot",
"===",
"null",
"&&",
"(",
"$",
"this",
"->",
"function_phase_id",
"!==",
"null",
")",
")",
"{",
"$",
"this",
"->",
"aFunctionPhaseRoot",
"=",
"ChildFunctionPhaseQuery",
"::",
"create",
"(",
")",
"->",
"findPk",
"(",
"$",
"this",
"->",
"function_phase_id",
",",
"$",
"con",
")",
";",
"/* The following can be used additionally to\n guarantee the related object contains a reference\n to this object. This level of coupling may, however, be\n undesirable since it could result in an only partially populated collection\n in the referenced object.\n $this->aFunctionPhaseRoot->addRootSkills($this);\n */",
"}",
"return",
"$",
"this",
"->",
"aFunctionPhaseRoot",
";",
"}"
] | Get the associated ChildFunctionPhase object
@param ConnectionInterface $con Optional Connection object.
@return ChildFunctionPhase The associated ChildFunctionPhase object.
@throws PropelException | [
"Get",
"the",
"associated",
"ChildFunctionPhase",
"object"
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5168-L5182 |
14 | gossi/trixionary | src/model/Base/Skill.php | Skill.initVariations | public function initVariations($overrideExisting = true)
{
if (null !== $this->collVariations && !$overrideExisting) {
return;
}
$this->collVariations = new ObjectCollection();
$this->collVariations->setModel('\gossi\trixionary\model\Skill');
} | php | public function initVariations($overrideExisting = true)
{
if (null !== $this->collVariations && !$overrideExisting) {
return;
}
$this->collVariations = new ObjectCollection();
$this->collVariations->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initVariations",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collVariations",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collVariations",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collVariations",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collVariations collection.
By default this just sets the collVariations collection to an empty array (like clearcollVariations());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collVariations",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5279-L5286 |
15 | gossi/trixionary | src/model/Base/Skill.php | Skill.getVariationsJoinSport | public function getVariationsJoinSport(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillQuery::create(null, $criteria);
$query->joinWith('Sport', $joinBehavior);
return $this->getVariations($query, $con);
} | php | public function getVariationsJoinSport(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillQuery::create(null, $criteria);
$query->joinWith('Sport', $joinBehavior);
return $this->getVariations($query, $con);
} | [
"public",
"function",
"getVariationsJoinSport",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildSkillQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'Sport'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getVariations",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related Variations from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildSkill[] List of ChildSkill objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"Variations",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5480-L5486 |
16 | gossi/trixionary | src/model/Base/Skill.php | Skill.initMultiples | public function initMultiples($overrideExisting = true)
{
if (null !== $this->collMultiples && !$overrideExisting) {
return;
}
$this->collMultiples = new ObjectCollection();
$this->collMultiples->setModel('\gossi\trixionary\model\Skill');
} | php | public function initMultiples($overrideExisting = true)
{
if (null !== $this->collMultiples && !$overrideExisting) {
return;
}
$this->collMultiples = new ObjectCollection();
$this->collMultiples->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initMultiples",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collMultiples",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collMultiples",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collMultiples",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collMultiples collection.
By default this just sets the collMultiples collection to an empty array (like clearcollMultiples());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collMultiples",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L5722-L5729 |
17 | gossi/trixionary | src/model/Base/Skill.php | Skill.getMultiplesJoinFunctionPhaseRoot | public function getMultiplesJoinFunctionPhaseRoot(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillQuery::create(null, $criteria);
$query->joinWith('FunctionPhaseRoot', $joinBehavior);
return $this->getMultiples($query, $con);
} | php | public function getMultiplesJoinFunctionPhaseRoot(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillQuery::create(null, $criteria);
$query->joinWith('FunctionPhaseRoot', $joinBehavior);
return $this->getMultiples($query, $con);
} | [
"public",
"function",
"getMultiplesJoinFunctionPhaseRoot",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildSkillQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'FunctionPhaseRoot'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getMultiples",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related Multiples from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildSkill[] List of ChildSkill objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"Multiples",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L6123-L6129 |
18 | gossi/trixionary | src/model/Base/Skill.php | Skill.initLineagesRelatedBySkillId | public function initLineagesRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collLineagesRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collLineagesRelatedBySkillId = new ObjectCollection();
$this->collLineagesRelatedBySkillId->setModel('\gossi\trixionary\model\Lineage');
} | php | public function initLineagesRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collLineagesRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collLineagesRelatedBySkillId = new ObjectCollection();
$this->collLineagesRelatedBySkillId->setModel('\gossi\trixionary\model\Lineage');
} | [
"public",
"function",
"initLineagesRelatedBySkillId",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collLineagesRelatedBySkillId",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collLineagesRelatedBySkillId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collLineagesRelatedBySkillId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Lineage'",
")",
";",
"}"
] | Initializes the collLineagesRelatedBySkillId collection.
By default this just sets the collLineagesRelatedBySkillId collection to an empty array (like clearcollLineagesRelatedBySkillId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collLineagesRelatedBySkillId",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L6165-L6172 |
19 | gossi/trixionary | src/model/Base/Skill.php | Skill.initLineagesRelatedByAncestorId | public function initLineagesRelatedByAncestorId($overrideExisting = true)
{
if (null !== $this->collLineagesRelatedByAncestorId && !$overrideExisting) {
return;
}
$this->collLineagesRelatedByAncestorId = new ObjectCollection();
$this->collLineagesRelatedByAncestorId->setModel('\gossi\trixionary\model\Lineage');
} | php | public function initLineagesRelatedByAncestorId($overrideExisting = true)
{
if (null !== $this->collLineagesRelatedByAncestorId && !$overrideExisting) {
return;
}
$this->collLineagesRelatedByAncestorId = new ObjectCollection();
$this->collLineagesRelatedByAncestorId->setModel('\gossi\trixionary\model\Lineage');
} | [
"public",
"function",
"initLineagesRelatedByAncestorId",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collLineagesRelatedByAncestorId",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collLineagesRelatedByAncestorId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collLineagesRelatedByAncestorId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Lineage'",
")",
";",
"}"
] | Initializes the collLineagesRelatedByAncestorId collection.
By default this just sets the collLineagesRelatedByAncestorId collection to an empty array (like clearcollLineagesRelatedByAncestorId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collLineagesRelatedByAncestorId",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L6383-L6390 |
20 | gossi/trixionary | src/model/Base/Skill.php | Skill.initChildren | public function initChildren($overrideExisting = true)
{
if (null !== $this->collChildren && !$overrideExisting) {
return;
}
$this->collChildren = new ObjectCollection();
$this->collChildren->setModel('\gossi\trixionary\model\SkillDependency');
} | php | public function initChildren($overrideExisting = true)
{
if (null !== $this->collChildren && !$overrideExisting) {
return;
}
$this->collChildren = new ObjectCollection();
$this->collChildren->setModel('\gossi\trixionary\model\SkillDependency');
} | [
"public",
"function",
"initChildren",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collChildren",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collChildren",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collChildren",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillDependency'",
")",
";",
"}"
] | Initializes the collChildren collection.
By default this just sets the collChildren collection to an empty array (like clearcollChildren());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collChildren",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L6601-L6608 |
21 | gossi/trixionary | src/model/Base/Skill.php | Skill.initParents | public function initParents($overrideExisting = true)
{
if (null !== $this->collParents && !$overrideExisting) {
return;
}
$this->collParents = new ObjectCollection();
$this->collParents->setModel('\gossi\trixionary\model\SkillDependency');
} | php | public function initParents($overrideExisting = true)
{
if (null !== $this->collParents && !$overrideExisting) {
return;
}
$this->collParents = new ObjectCollection();
$this->collParents->setModel('\gossi\trixionary\model\SkillDependency');
} | [
"public",
"function",
"initParents",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collParents",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collParents",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collParents",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillDependency'",
")",
";",
"}"
] | Initializes the collParents collection.
By default this just sets the collParents collection to an empty array (like clearcollParents());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collParents",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L6822-L6829 |
22 | gossi/trixionary | src/model/Base/Skill.php | Skill.initParts | public function initParts($overrideExisting = true)
{
if (null !== $this->collParts && !$overrideExisting) {
return;
}
$this->collParts = new ObjectCollection();
$this->collParts->setModel('\gossi\trixionary\model\SkillPart');
} | php | public function initParts($overrideExisting = true)
{
if (null !== $this->collParts && !$overrideExisting) {
return;
}
$this->collParts = new ObjectCollection();
$this->collParts->setModel('\gossi\trixionary\model\SkillPart');
} | [
"public",
"function",
"initParts",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collParts",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collParts",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collParts",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillPart'",
")",
";",
"}"
] | Initializes the collParts collection.
By default this just sets the collParts collection to an empty array (like clearcollParts());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collParts",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7043-L7050 |
23 | gossi/trixionary | src/model/Base/Skill.php | Skill.initComposites | public function initComposites($overrideExisting = true)
{
if (null !== $this->collComposites && !$overrideExisting) {
return;
}
$this->collComposites = new ObjectCollection();
$this->collComposites->setModel('\gossi\trixionary\model\SkillPart');
} | php | public function initComposites($overrideExisting = true)
{
if (null !== $this->collComposites && !$overrideExisting) {
return;
}
$this->collComposites = new ObjectCollection();
$this->collComposites->setModel('\gossi\trixionary\model\SkillPart');
} | [
"public",
"function",
"initComposites",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collComposites",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collComposites",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collComposites",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillPart'",
")",
";",
"}"
] | Initializes the collComposites collection.
By default this just sets the collComposites collection to an empty array (like clearcollComposites());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collComposites",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7264-L7271 |
24 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillGroups | public function initSkillGroups($overrideExisting = true)
{
if (null !== $this->collSkillGroups && !$overrideExisting) {
return;
}
$this->collSkillGroups = new ObjectCollection();
$this->collSkillGroups->setModel('\gossi\trixionary\model\SkillGroup');
} | php | public function initSkillGroups($overrideExisting = true)
{
if (null !== $this->collSkillGroups && !$overrideExisting) {
return;
}
$this->collSkillGroups = new ObjectCollection();
$this->collSkillGroups->setModel('\gossi\trixionary\model\SkillGroup');
} | [
"public",
"function",
"initSkillGroups",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collSkillGroups",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collSkillGroups",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillGroups",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillGroup'",
")",
";",
"}"
] | Initializes the collSkillGroups collection.
By default this just sets the collSkillGroups collection to an empty array (like clearcollSkillGroups());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collSkillGroups",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7485-L7492 |
25 | gossi/trixionary | src/model/Base/Skill.php | Skill.getSkillGroups | public function getSkillGroups(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collSkillGroupsPartial && !$this->isNew();
if (null === $this->collSkillGroups || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillGroups) {
// return empty collection
$this->initSkillGroups();
} else {
$collSkillGroups = ChildSkillGroupQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collSkillGroupsPartial && count($collSkillGroups)) {
$this->initSkillGroups(false);
foreach ($collSkillGroups as $obj) {
if (false == $this->collSkillGroups->contains($obj)) {
$this->collSkillGroups->append($obj);
}
}
$this->collSkillGroupsPartial = true;
}
return $collSkillGroups;
}
if ($partial && $this->collSkillGroups) {
foreach ($this->collSkillGroups as $obj) {
if ($obj->isNew()) {
$collSkillGroups[] = $obj;
}
}
}
$this->collSkillGroups = $collSkillGroups;
$this->collSkillGroupsPartial = false;
}
}
return $this->collSkillGroups;
} | php | public function getSkillGroups(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collSkillGroupsPartial && !$this->isNew();
if (null === $this->collSkillGroups || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillGroups) {
// return empty collection
$this->initSkillGroups();
} else {
$collSkillGroups = ChildSkillGroupQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collSkillGroupsPartial && count($collSkillGroups)) {
$this->initSkillGroups(false);
foreach ($collSkillGroups as $obj) {
if (false == $this->collSkillGroups->contains($obj)) {
$this->collSkillGroups->append($obj);
}
}
$this->collSkillGroupsPartial = true;
}
return $collSkillGroups;
}
if ($partial && $this->collSkillGroups) {
foreach ($this->collSkillGroups as $obj) {
if ($obj->isNew()) {
$collSkillGroups[] = $obj;
}
}
}
$this->collSkillGroups = $collSkillGroups;
$this->collSkillGroupsPartial = false;
}
}
return $this->collSkillGroups;
} | [
"public",
"function",
"getSkillGroups",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collSkillGroupsPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collSkillGroups",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collSkillGroups",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initSkillGroups",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collSkillGroups",
"=",
"ChildSkillGroupQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collSkillGroupsPartial",
"&&",
"count",
"(",
"$",
"collSkillGroups",
")",
")",
"{",
"$",
"this",
"->",
"initSkillGroups",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collSkillGroups",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collSkillGroups",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collSkillGroups",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collSkillGroupsPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collSkillGroups",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collSkillGroups",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collSkillGroups",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collSkillGroups",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collSkillGroups",
"=",
"$",
"collSkillGroups",
";",
"$",
"this",
"->",
"collSkillGroupsPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collSkillGroups",
";",
"}"
] | Gets an array of ChildSkillGroup objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildSkillGroup[] List of ChildSkillGroup objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildSkillGroup",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7508-L7550 |
26 | gossi/trixionary | src/model/Base/Skill.php | Skill.addSkillGroup | public function addSkillGroup(ChildSkillGroup $l)
{
if ($this->collSkillGroups === null) {
$this->initSkillGroups();
$this->collSkillGroupsPartial = true;
}
if (!$this->collSkillGroups->contains($l)) {
$this->doAddSkillGroup($l);
}
return $this;
} | php | public function addSkillGroup(ChildSkillGroup $l)
{
if ($this->collSkillGroups === null) {
$this->initSkillGroups();
$this->collSkillGroupsPartial = true;
}
if (!$this->collSkillGroups->contains($l)) {
$this->doAddSkillGroup($l);
}
return $this;
} | [
"public",
"function",
"addSkillGroup",
"(",
"ChildSkillGroup",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collSkillGroups",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initSkillGroups",
"(",
")",
";",
"$",
"this",
"->",
"collSkillGroupsPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collSkillGroups",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddSkillGroup",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildSkillGroup object to this object
through the ChildSkillGroup foreign key attribute.
@param ChildSkillGroup $l ChildSkillGroup
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildSkillGroup",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildSkillGroup",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7629-L7641 |
27 | gossi/trixionary | src/model/Base/Skill.php | Skill.getSkillGroupsJoinGroup | public function getSkillGroupsJoinGroup(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillGroupQuery::create(null, $criteria);
$query->joinWith('Group', $joinBehavior);
return $this->getSkillGroups($query, $con);
} | php | public function getSkillGroupsJoinGroup(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildSkillGroupQuery::create(null, $criteria);
$query->joinWith('Group', $joinBehavior);
return $this->getSkillGroups($query, $con);
} | [
"public",
"function",
"getSkillGroupsJoinGroup",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildSkillGroupQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'Group'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getSkillGroups",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related SkillGroups from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildSkillGroup[] List of ChildSkillGroup objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"SkillGroups",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7689-L7695 |
28 | gossi/trixionary | src/model/Base/Skill.php | Skill.initPictures | public function initPictures($overrideExisting = true)
{
if (null !== $this->collPictures && !$overrideExisting) {
return;
}
$this->collPictures = new ObjectCollection();
$this->collPictures->setModel('\gossi\trixionary\model\Picture');
} | php | public function initPictures($overrideExisting = true)
{
if (null !== $this->collPictures && !$overrideExisting) {
return;
}
$this->collPictures = new ObjectCollection();
$this->collPictures->setModel('\gossi\trixionary\model\Picture');
} | [
"public",
"function",
"initPictures",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collPictures",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collPictures",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collPictures",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Picture'",
")",
";",
"}"
] | Initializes the collPictures collection.
By default this just sets the collPictures collection to an empty array (like clearcollPictures());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collPictures",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7731-L7738 |
29 | gossi/trixionary | src/model/Base/Skill.php | Skill.getPictures | public function getPictures(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collPicturesPartial && !$this->isNew();
if (null === $this->collPictures || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collPictures) {
// return empty collection
$this->initPictures();
} else {
$collPictures = ChildPictureQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collPicturesPartial && count($collPictures)) {
$this->initPictures(false);
foreach ($collPictures as $obj) {
if (false == $this->collPictures->contains($obj)) {
$this->collPictures->append($obj);
}
}
$this->collPicturesPartial = true;
}
return $collPictures;
}
if ($partial && $this->collPictures) {
foreach ($this->collPictures as $obj) {
if ($obj->isNew()) {
$collPictures[] = $obj;
}
}
}
$this->collPictures = $collPictures;
$this->collPicturesPartial = false;
}
}
return $this->collPictures;
} | php | public function getPictures(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collPicturesPartial && !$this->isNew();
if (null === $this->collPictures || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collPictures) {
// return empty collection
$this->initPictures();
} else {
$collPictures = ChildPictureQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collPicturesPartial && count($collPictures)) {
$this->initPictures(false);
foreach ($collPictures as $obj) {
if (false == $this->collPictures->contains($obj)) {
$this->collPictures->append($obj);
}
}
$this->collPicturesPartial = true;
}
return $collPictures;
}
if ($partial && $this->collPictures) {
foreach ($this->collPictures as $obj) {
if ($obj->isNew()) {
$collPictures[] = $obj;
}
}
}
$this->collPictures = $collPictures;
$this->collPicturesPartial = false;
}
}
return $this->collPictures;
} | [
"public",
"function",
"getPictures",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collPicturesPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collPictures",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collPictures",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initPictures",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collPictures",
"=",
"ChildPictureQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collPicturesPartial",
"&&",
"count",
"(",
"$",
"collPictures",
")",
")",
"{",
"$",
"this",
"->",
"initPictures",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collPictures",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collPictures",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collPictures",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collPicturesPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collPictures",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collPictures",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collPictures",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collPictures",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collPictures",
"=",
"$",
"collPictures",
";",
"$",
"this",
"->",
"collPicturesPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collPictures",
";",
"}"
] | Gets an array of ChildPicture objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildPicture[] List of ChildPicture objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildPicture",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7754-L7796 |
30 | gossi/trixionary | src/model/Base/Skill.php | Skill.countPictures | public function countPictures(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collPicturesPartial && !$this->isNew();
if (null === $this->collPictures || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collPictures) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getPictures());
}
$query = ChildPictureQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collPictures);
} | php | public function countPictures(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collPicturesPartial && !$this->isNew();
if (null === $this->collPictures || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collPictures) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getPictures());
}
$query = ChildPictureQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collPictures);
} | [
"public",
"function",
"countPictures",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collPicturesPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collPictures",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collPictures",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getPictures",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildPictureQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collPictures",
")",
";",
"}"
] | Returns the number of related Picture objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related Picture objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"Picture",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7840-L7863 |
31 | gossi/trixionary | src/model/Base/Skill.php | Skill.addPicture | public function addPicture(ChildPicture $l)
{
if ($this->collPictures === null) {
$this->initPictures();
$this->collPicturesPartial = true;
}
if (!$this->collPictures->contains($l)) {
$this->doAddPicture($l);
}
return $this;
} | php | public function addPicture(ChildPicture $l)
{
if ($this->collPictures === null) {
$this->initPictures();
$this->collPicturesPartial = true;
}
if (!$this->collPictures->contains($l)) {
$this->doAddPicture($l);
}
return $this;
} | [
"public",
"function",
"addPicture",
"(",
"ChildPicture",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collPictures",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initPictures",
"(",
")",
";",
"$",
"this",
"->",
"collPicturesPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collPictures",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddPicture",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildPicture object to this object
through the ChildPicture foreign key attribute.
@param ChildPicture $l ChildPicture
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildPicture",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildPicture",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7872-L7884 |
32 | gossi/trixionary | src/model/Base/Skill.php | Skill.initVideos | public function initVideos($overrideExisting = true)
{
if (null !== $this->collVideos && !$overrideExisting) {
return;
}
$this->collVideos = new ObjectCollection();
$this->collVideos->setModel('\gossi\trixionary\model\Video');
} | php | public function initVideos($overrideExisting = true)
{
if (null !== $this->collVideos && !$overrideExisting) {
return;
}
$this->collVideos = new ObjectCollection();
$this->collVideos->setModel('\gossi\trixionary\model\Video');
} | [
"public",
"function",
"initVideos",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collVideos",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collVideos",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collVideos",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Video'",
")",
";",
"}"
] | Initializes the collVideos collection.
By default this just sets the collVideos collection to an empty array (like clearcollVideos());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collVideos",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7949-L7956 |
33 | gossi/trixionary | src/model/Base/Skill.php | Skill.getVideos | public function getVideos(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collVideosPartial && !$this->isNew();
if (null === $this->collVideos || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collVideos) {
// return empty collection
$this->initVideos();
} else {
$collVideos = ChildVideoQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collVideosPartial && count($collVideos)) {
$this->initVideos(false);
foreach ($collVideos as $obj) {
if (false == $this->collVideos->contains($obj)) {
$this->collVideos->append($obj);
}
}
$this->collVideosPartial = true;
}
return $collVideos;
}
if ($partial && $this->collVideos) {
foreach ($this->collVideos as $obj) {
if ($obj->isNew()) {
$collVideos[] = $obj;
}
}
}
$this->collVideos = $collVideos;
$this->collVideosPartial = false;
}
}
return $this->collVideos;
} | php | public function getVideos(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collVideosPartial && !$this->isNew();
if (null === $this->collVideos || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collVideos) {
// return empty collection
$this->initVideos();
} else {
$collVideos = ChildVideoQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collVideosPartial && count($collVideos)) {
$this->initVideos(false);
foreach ($collVideos as $obj) {
if (false == $this->collVideos->contains($obj)) {
$this->collVideos->append($obj);
}
}
$this->collVideosPartial = true;
}
return $collVideos;
}
if ($partial && $this->collVideos) {
foreach ($this->collVideos as $obj) {
if ($obj->isNew()) {
$collVideos[] = $obj;
}
}
}
$this->collVideos = $collVideos;
$this->collVideosPartial = false;
}
}
return $this->collVideos;
} | [
"public",
"function",
"getVideos",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collVideosPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collVideos",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collVideos",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initVideos",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collVideos",
"=",
"ChildVideoQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collVideosPartial",
"&&",
"count",
"(",
"$",
"collVideos",
")",
")",
"{",
"$",
"this",
"->",
"initVideos",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collVideos",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collVideos",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collVideos",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collVideosPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collVideos",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collVideos",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collVideos",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collVideos",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collVideos",
"=",
"$",
"collVideos",
";",
"$",
"this",
"->",
"collVideosPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collVideos",
";",
"}"
] | Gets an array of ChildVideo objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildVideo[] List of ChildVideo objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildVideo",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L7972-L8014 |
34 | gossi/trixionary | src/model/Base/Skill.php | Skill.addVideo | public function addVideo(ChildVideo $l)
{
if ($this->collVideos === null) {
$this->initVideos();
$this->collVideosPartial = true;
}
if (!$this->collVideos->contains($l)) {
$this->doAddVideo($l);
}
return $this;
} | php | public function addVideo(ChildVideo $l)
{
if ($this->collVideos === null) {
$this->initVideos();
$this->collVideosPartial = true;
}
if (!$this->collVideos->contains($l)) {
$this->doAddVideo($l);
}
return $this;
} | [
"public",
"function",
"addVideo",
"(",
"ChildVideo",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collVideos",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initVideos",
"(",
")",
";",
"$",
"this",
"->",
"collVideosPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collVideos",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddVideo",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildVideo object to this object
through the ChildVideo foreign key attribute.
@param ChildVideo $l ChildVideo
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildVideo",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildVideo",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8090-L8102 |
35 | gossi/trixionary | src/model/Base/Skill.php | Skill.getVideosJoinReference | public function getVideosJoinReference(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildVideoQuery::create(null, $criteria);
$query->joinWith('Reference', $joinBehavior);
return $this->getVideos($query, $con);
} | php | public function getVideosJoinReference(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildVideoQuery::create(null, $criteria);
$query->joinWith('Reference', $joinBehavior);
return $this->getVideos($query, $con);
} | [
"public",
"function",
"getVideosJoinReference",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildVideoQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'Reference'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getVideos",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related Videos from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildVideo[] List of ChildVideo objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"Videos",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8150-L8156 |
36 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillReferences | public function initSkillReferences($overrideExisting = true)
{
if (null !== $this->collSkillReferences && !$overrideExisting) {
return;
}
$this->collSkillReferences = new ObjectCollection();
$this->collSkillReferences->setModel('\gossi\trixionary\model\SkillReference');
} | php | public function initSkillReferences($overrideExisting = true)
{
if (null !== $this->collSkillReferences && !$overrideExisting) {
return;
}
$this->collSkillReferences = new ObjectCollection();
$this->collSkillReferences->setModel('\gossi\trixionary\model\SkillReference');
} | [
"public",
"function",
"initSkillReferences",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collSkillReferences",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collSkillReferences",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillReferences",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillReference'",
")",
";",
"}"
] | Initializes the collSkillReferences collection.
By default this just sets the collSkillReferences collection to an empty array (like clearcollSkillReferences());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collSkillReferences",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8192-L8199 |
37 | gossi/trixionary | src/model/Base/Skill.php | Skill.countSkillReferences | public function countSkillReferences(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collSkillReferencesPartial && !$this->isNew();
if (null === $this->collSkillReferences || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillReferences) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getSkillReferences());
}
$query = ChildSkillReferenceQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collSkillReferences);
} | php | public function countSkillReferences(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collSkillReferencesPartial && !$this->isNew();
if (null === $this->collSkillReferences || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillReferences) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getSkillReferences());
}
$query = ChildSkillReferenceQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collSkillReferences);
} | [
"public",
"function",
"countSkillReferences",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collSkillReferencesPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collSkillReferences",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collSkillReferences",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getSkillReferences",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildSkillReferenceQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collSkillReferences",
")",
";",
"}"
] | Returns the number of related SkillReference objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related SkillReference objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"SkillReference",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8304-L8327 |
38 | gossi/trixionary | src/model/Base/Skill.php | Skill.addSkillReference | public function addSkillReference(ChildSkillReference $l)
{
if ($this->collSkillReferences === null) {
$this->initSkillReferences();
$this->collSkillReferencesPartial = true;
}
if (!$this->collSkillReferences->contains($l)) {
$this->doAddSkillReference($l);
}
return $this;
} | php | public function addSkillReference(ChildSkillReference $l)
{
if ($this->collSkillReferences === null) {
$this->initSkillReferences();
$this->collSkillReferencesPartial = true;
}
if (!$this->collSkillReferences->contains($l)) {
$this->doAddSkillReference($l);
}
return $this;
} | [
"public",
"function",
"addSkillReference",
"(",
"ChildSkillReference",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collSkillReferences",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initSkillReferences",
"(",
")",
";",
"$",
"this",
"->",
"collSkillReferencesPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collSkillReferences",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddSkillReference",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildSkillReference object to this object
through the ChildSkillReference foreign key attribute.
@param ChildSkillReference $l ChildSkillReference
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildSkillReference",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildSkillReference",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8336-L8348 |
39 | gossi/trixionary | src/model/Base/Skill.php | Skill.initStructureNodes | public function initStructureNodes($overrideExisting = true)
{
if (null !== $this->collStructureNodes && !$overrideExisting) {
return;
}
$this->collStructureNodes = new ObjectCollection();
$this->collStructureNodes->setModel('\gossi\trixionary\model\StructureNode');
} | php | public function initStructureNodes($overrideExisting = true)
{
if (null !== $this->collStructureNodes && !$overrideExisting) {
return;
}
$this->collStructureNodes = new ObjectCollection();
$this->collStructureNodes->setModel('\gossi\trixionary\model\StructureNode');
} | [
"public",
"function",
"initStructureNodes",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collStructureNodes",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collStructureNodes",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collStructureNodes",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\StructureNode'",
")",
";",
"}"
] | Initializes the collStructureNodes collection.
By default this just sets the collStructureNodes collection to an empty array (like clearcollStructureNodes());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collStructureNodes",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8438-L8445 |
40 | gossi/trixionary | src/model/Base/Skill.php | Skill.getStructureNodes | public function getStructureNodes(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collStructureNodesPartial && !$this->isNew();
if (null === $this->collStructureNodes || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collStructureNodes) {
// return empty collection
$this->initStructureNodes();
} else {
$collStructureNodes = ChildStructureNodeQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collStructureNodesPartial && count($collStructureNodes)) {
$this->initStructureNodes(false);
foreach ($collStructureNodes as $obj) {
if (false == $this->collStructureNodes->contains($obj)) {
$this->collStructureNodes->append($obj);
}
}
$this->collStructureNodesPartial = true;
}
return $collStructureNodes;
}
if ($partial && $this->collStructureNodes) {
foreach ($this->collStructureNodes as $obj) {
if ($obj->isNew()) {
$collStructureNodes[] = $obj;
}
}
}
$this->collStructureNodes = $collStructureNodes;
$this->collStructureNodesPartial = false;
}
}
return $this->collStructureNodes;
} | php | public function getStructureNodes(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collStructureNodesPartial && !$this->isNew();
if (null === $this->collStructureNodes || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collStructureNodes) {
// return empty collection
$this->initStructureNodes();
} else {
$collStructureNodes = ChildStructureNodeQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collStructureNodesPartial && count($collStructureNodes)) {
$this->initStructureNodes(false);
foreach ($collStructureNodes as $obj) {
if (false == $this->collStructureNodes->contains($obj)) {
$this->collStructureNodes->append($obj);
}
}
$this->collStructureNodesPartial = true;
}
return $collStructureNodes;
}
if ($partial && $this->collStructureNodes) {
foreach ($this->collStructureNodes as $obj) {
if ($obj->isNew()) {
$collStructureNodes[] = $obj;
}
}
}
$this->collStructureNodes = $collStructureNodes;
$this->collStructureNodesPartial = false;
}
}
return $this->collStructureNodes;
} | [
"public",
"function",
"getStructureNodes",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collStructureNodesPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collStructureNodes",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collStructureNodes",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initStructureNodes",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collStructureNodes",
"=",
"ChildStructureNodeQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collStructureNodesPartial",
"&&",
"count",
"(",
"$",
"collStructureNodes",
")",
")",
"{",
"$",
"this",
"->",
"initStructureNodes",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collStructureNodes",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collStructureNodes",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collStructureNodes",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collStructureNodesPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collStructureNodes",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collStructureNodes",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collStructureNodes",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collStructureNodes",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collStructureNodes",
"=",
"$",
"collStructureNodes",
";",
"$",
"this",
"->",
"collStructureNodesPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collStructureNodes",
";",
"}"
] | Gets an array of ChildStructureNode objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildStructureNode[] List of ChildStructureNode objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildStructureNode",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8461-L8503 |
41 | gossi/trixionary | src/model/Base/Skill.php | Skill.countStructureNodes | public function countStructureNodes(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collStructureNodesPartial && !$this->isNew();
if (null === $this->collStructureNodes || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collStructureNodes) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getStructureNodes());
}
$query = ChildStructureNodeQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collStructureNodes);
} | php | public function countStructureNodes(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collStructureNodesPartial && !$this->isNew();
if (null === $this->collStructureNodes || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collStructureNodes) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getStructureNodes());
}
$query = ChildStructureNodeQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collStructureNodes);
} | [
"public",
"function",
"countStructureNodes",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collStructureNodesPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collStructureNodes",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collStructureNodes",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getStructureNodes",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildStructureNodeQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collStructureNodes",
")",
";",
"}"
] | Returns the number of related StructureNode objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related StructureNode objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"StructureNode",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8547-L8570 |
42 | gossi/trixionary | src/model/Base/Skill.php | Skill.addStructureNode | public function addStructureNode(ChildStructureNode $l)
{
if ($this->collStructureNodes === null) {
$this->initStructureNodes();
$this->collStructureNodesPartial = true;
}
if (!$this->collStructureNodes->contains($l)) {
$this->doAddStructureNode($l);
}
return $this;
} | php | public function addStructureNode(ChildStructureNode $l)
{
if ($this->collStructureNodes === null) {
$this->initStructureNodes();
$this->collStructureNodesPartial = true;
}
if (!$this->collStructureNodes->contains($l)) {
$this->doAddStructureNode($l);
}
return $this;
} | [
"public",
"function",
"addStructureNode",
"(",
"ChildStructureNode",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collStructureNodes",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initStructureNodes",
"(",
")",
";",
"$",
"this",
"->",
"collStructureNodesPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collStructureNodes",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddStructureNode",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildStructureNode object to this object
through the ChildStructureNode foreign key attribute.
@param ChildStructureNode $l ChildStructureNode
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildStructureNode",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildStructureNode",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8579-L8591 |
43 | gossi/trixionary | src/model/Base/Skill.php | Skill.initKstruktursRelatedBySkillId | public function initKstruktursRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collKstruktursRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collKstruktursRelatedBySkillId = new ObjectCollection();
$this->collKstruktursRelatedBySkillId->setModel('\gossi\trixionary\model\Kstruktur');
} | php | public function initKstruktursRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collKstruktursRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collKstruktursRelatedBySkillId = new ObjectCollection();
$this->collKstruktursRelatedBySkillId->setModel('\gossi\trixionary\model\Kstruktur');
} | [
"public",
"function",
"initKstruktursRelatedBySkillId",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Kstruktur'",
")",
";",
"}"
] | Initializes the collKstruktursRelatedBySkillId collection.
By default this just sets the collKstruktursRelatedBySkillId collection to an empty array (like clearcollKstruktursRelatedBySkillId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collKstruktursRelatedBySkillId",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8656-L8663 |
44 | gossi/trixionary | src/model/Base/Skill.php | Skill.getKstruktursRelatedBySkillId | public function getKstruktursRelatedBySkillId(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collKstruktursRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collKstruktursRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collKstruktursRelatedBySkillId) {
// return empty collection
$this->initKstruktursRelatedBySkillId();
} else {
$collKstruktursRelatedBySkillId = ChildKstrukturQuery::create(null, $criteria)
->filterBySkillRelatedBySkillId($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collKstruktursRelatedBySkillIdPartial && count($collKstruktursRelatedBySkillId)) {
$this->initKstruktursRelatedBySkillId(false);
foreach ($collKstruktursRelatedBySkillId as $obj) {
if (false == $this->collKstruktursRelatedBySkillId->contains($obj)) {
$this->collKstruktursRelatedBySkillId->append($obj);
}
}
$this->collKstruktursRelatedBySkillIdPartial = true;
}
return $collKstruktursRelatedBySkillId;
}
if ($partial && $this->collKstruktursRelatedBySkillId) {
foreach ($this->collKstruktursRelatedBySkillId as $obj) {
if ($obj->isNew()) {
$collKstruktursRelatedBySkillId[] = $obj;
}
}
}
$this->collKstruktursRelatedBySkillId = $collKstruktursRelatedBySkillId;
$this->collKstruktursRelatedBySkillIdPartial = false;
}
}
return $this->collKstruktursRelatedBySkillId;
} | php | public function getKstruktursRelatedBySkillId(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collKstruktursRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collKstruktursRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collKstruktursRelatedBySkillId) {
// return empty collection
$this->initKstruktursRelatedBySkillId();
} else {
$collKstruktursRelatedBySkillId = ChildKstrukturQuery::create(null, $criteria)
->filterBySkillRelatedBySkillId($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collKstruktursRelatedBySkillIdPartial && count($collKstruktursRelatedBySkillId)) {
$this->initKstruktursRelatedBySkillId(false);
foreach ($collKstruktursRelatedBySkillId as $obj) {
if (false == $this->collKstruktursRelatedBySkillId->contains($obj)) {
$this->collKstruktursRelatedBySkillId->append($obj);
}
}
$this->collKstruktursRelatedBySkillIdPartial = true;
}
return $collKstruktursRelatedBySkillId;
}
if ($partial && $this->collKstruktursRelatedBySkillId) {
foreach ($this->collKstruktursRelatedBySkillId as $obj) {
if ($obj->isNew()) {
$collKstruktursRelatedBySkillId[] = $obj;
}
}
}
$this->collKstruktursRelatedBySkillId = $collKstruktursRelatedBySkillId;
$this->collKstruktursRelatedBySkillIdPartial = false;
}
}
return $this->collKstruktursRelatedBySkillId;
} | [
"public",
"function",
"getKstruktursRelatedBySkillId",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initKstruktursRelatedBySkillId",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collKstruktursRelatedBySkillId",
"=",
"ChildKstrukturQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkillRelatedBySkillId",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"&&",
"count",
"(",
"$",
"collKstruktursRelatedBySkillId",
")",
")",
"{",
"$",
"this",
"->",
"initKstruktursRelatedBySkillId",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collKstruktursRelatedBySkillId",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collKstruktursRelatedBySkillId",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collKstruktursRelatedBySkillId",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"=",
"$",
"collKstruktursRelatedBySkillId",
";",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
";",
"}"
] | Gets an array of ChildKstruktur objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildKstruktur[] List of ChildKstruktur objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildKstruktur",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8679-L8721 |
45 | gossi/trixionary | src/model/Base/Skill.php | Skill.countKstruktursRelatedBySkillId | public function countKstruktursRelatedBySkillId(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collKstruktursRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collKstruktursRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collKstruktursRelatedBySkillId) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getKstruktursRelatedBySkillId());
}
$query = ChildKstrukturQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkillRelatedBySkillId($this)
->count($con);
}
return count($this->collKstruktursRelatedBySkillId);
} | php | public function countKstruktursRelatedBySkillId(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collKstruktursRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collKstruktursRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collKstruktursRelatedBySkillId) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getKstruktursRelatedBySkillId());
}
$query = ChildKstrukturQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkillRelatedBySkillId($this)
->count($con);
}
return count($this->collKstruktursRelatedBySkillId);
} | [
"public",
"function",
"countKstruktursRelatedBySkillId",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getKstruktursRelatedBySkillId",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildKstrukturQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkillRelatedBySkillId",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
")",
";",
"}"
] | Returns the number of related Kstruktur objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related Kstruktur objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"Kstruktur",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8765-L8788 |
46 | gossi/trixionary | src/model/Base/Skill.php | Skill.addKstrukturRelatedBySkillId | public function addKstrukturRelatedBySkillId(ChildKstruktur $l)
{
if ($this->collKstruktursRelatedBySkillId === null) {
$this->initKstruktursRelatedBySkillId();
$this->collKstruktursRelatedBySkillIdPartial = true;
}
if (!$this->collKstruktursRelatedBySkillId->contains($l)) {
$this->doAddKstrukturRelatedBySkillId($l);
}
return $this;
} | php | public function addKstrukturRelatedBySkillId(ChildKstruktur $l)
{
if ($this->collKstruktursRelatedBySkillId === null) {
$this->initKstruktursRelatedBySkillId();
$this->collKstruktursRelatedBySkillIdPartial = true;
}
if (!$this->collKstruktursRelatedBySkillId->contains($l)) {
$this->doAddKstrukturRelatedBySkillId($l);
}
return $this;
} | [
"public",
"function",
"addKstrukturRelatedBySkillId",
"(",
"ChildKstruktur",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initKstruktursRelatedBySkillId",
"(",
")",
";",
"$",
"this",
"->",
"collKstruktursRelatedBySkillIdPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collKstruktursRelatedBySkillId",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddKstrukturRelatedBySkillId",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildKstruktur object to this object
through the ChildKstruktur foreign key attribute.
@param ChildKstruktur $l ChildKstruktur
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildKstruktur",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildKstruktur",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8797-L8809 |
47 | gossi/trixionary | src/model/Base/Skill.php | Skill.getKstruktursRelatedBySkillIdJoinStructureNode | public function getKstruktursRelatedBySkillIdJoinStructureNode(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildKstrukturQuery::create(null, $criteria);
$query->joinWith('StructureNode', $joinBehavior);
return $this->getKstruktursRelatedBySkillId($query, $con);
} | php | public function getKstruktursRelatedBySkillIdJoinStructureNode(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildKstrukturQuery::create(null, $criteria);
$query->joinWith('StructureNode', $joinBehavior);
return $this->getKstruktursRelatedBySkillId($query, $con);
} | [
"public",
"function",
"getKstruktursRelatedBySkillIdJoinStructureNode",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildKstrukturQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'StructureNode'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getKstruktursRelatedBySkillId",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related KstruktursRelatedBySkillId from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildKstruktur[] List of ChildKstruktur objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"KstruktursRelatedBySkillId",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8857-L8863 |
48 | gossi/trixionary | src/model/Base/Skill.php | Skill.initFunctionPhasesRelatedBySkillId | public function initFunctionPhasesRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collFunctionPhasesRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collFunctionPhasesRelatedBySkillId = new ObjectCollection();
$this->collFunctionPhasesRelatedBySkillId->setModel('\gossi\trixionary\model\FunctionPhase');
} | php | public function initFunctionPhasesRelatedBySkillId($overrideExisting = true)
{
if (null !== $this->collFunctionPhasesRelatedBySkillId && !$overrideExisting) {
return;
}
$this->collFunctionPhasesRelatedBySkillId = new ObjectCollection();
$this->collFunctionPhasesRelatedBySkillId->setModel('\gossi\trixionary\model\FunctionPhase');
} | [
"public",
"function",
"initFunctionPhasesRelatedBySkillId",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\FunctionPhase'",
")",
";",
"}"
] | Initializes the collFunctionPhasesRelatedBySkillId collection.
By default this just sets the collFunctionPhasesRelatedBySkillId collection to an empty array (like clearcollFunctionPhasesRelatedBySkillId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collFunctionPhasesRelatedBySkillId",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8899-L8906 |
49 | gossi/trixionary | src/model/Base/Skill.php | Skill.getFunctionPhasesRelatedBySkillId | public function getFunctionPhasesRelatedBySkillId(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collFunctionPhasesRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collFunctionPhasesRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collFunctionPhasesRelatedBySkillId) {
// return empty collection
$this->initFunctionPhasesRelatedBySkillId();
} else {
$collFunctionPhasesRelatedBySkillId = ChildFunctionPhaseQuery::create(null, $criteria)
->filterBySkillRelatedBySkillId($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collFunctionPhasesRelatedBySkillIdPartial && count($collFunctionPhasesRelatedBySkillId)) {
$this->initFunctionPhasesRelatedBySkillId(false);
foreach ($collFunctionPhasesRelatedBySkillId as $obj) {
if (false == $this->collFunctionPhasesRelatedBySkillId->contains($obj)) {
$this->collFunctionPhasesRelatedBySkillId->append($obj);
}
}
$this->collFunctionPhasesRelatedBySkillIdPartial = true;
}
return $collFunctionPhasesRelatedBySkillId;
}
if ($partial && $this->collFunctionPhasesRelatedBySkillId) {
foreach ($this->collFunctionPhasesRelatedBySkillId as $obj) {
if ($obj->isNew()) {
$collFunctionPhasesRelatedBySkillId[] = $obj;
}
}
}
$this->collFunctionPhasesRelatedBySkillId = $collFunctionPhasesRelatedBySkillId;
$this->collFunctionPhasesRelatedBySkillIdPartial = false;
}
}
return $this->collFunctionPhasesRelatedBySkillId;
} | php | public function getFunctionPhasesRelatedBySkillId(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collFunctionPhasesRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collFunctionPhasesRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collFunctionPhasesRelatedBySkillId) {
// return empty collection
$this->initFunctionPhasesRelatedBySkillId();
} else {
$collFunctionPhasesRelatedBySkillId = ChildFunctionPhaseQuery::create(null, $criteria)
->filterBySkillRelatedBySkillId($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collFunctionPhasesRelatedBySkillIdPartial && count($collFunctionPhasesRelatedBySkillId)) {
$this->initFunctionPhasesRelatedBySkillId(false);
foreach ($collFunctionPhasesRelatedBySkillId as $obj) {
if (false == $this->collFunctionPhasesRelatedBySkillId->contains($obj)) {
$this->collFunctionPhasesRelatedBySkillId->append($obj);
}
}
$this->collFunctionPhasesRelatedBySkillIdPartial = true;
}
return $collFunctionPhasesRelatedBySkillId;
}
if ($partial && $this->collFunctionPhasesRelatedBySkillId) {
foreach ($this->collFunctionPhasesRelatedBySkillId as $obj) {
if ($obj->isNew()) {
$collFunctionPhasesRelatedBySkillId[] = $obj;
}
}
}
$this->collFunctionPhasesRelatedBySkillId = $collFunctionPhasesRelatedBySkillId;
$this->collFunctionPhasesRelatedBySkillIdPartial = false;
}
}
return $this->collFunctionPhasesRelatedBySkillId;
} | [
"public",
"function",
"getFunctionPhasesRelatedBySkillId",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initFunctionPhasesRelatedBySkillId",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collFunctionPhasesRelatedBySkillId",
"=",
"ChildFunctionPhaseQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkillRelatedBySkillId",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"&&",
"count",
"(",
"$",
"collFunctionPhasesRelatedBySkillId",
")",
")",
"{",
"$",
"this",
"->",
"initFunctionPhasesRelatedBySkillId",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collFunctionPhasesRelatedBySkillId",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collFunctionPhasesRelatedBySkillId",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collFunctionPhasesRelatedBySkillId",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"=",
"$",
"collFunctionPhasesRelatedBySkillId",
";",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
";",
"}"
] | Gets an array of ChildFunctionPhase objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildFunctionPhase[] List of ChildFunctionPhase objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildFunctionPhase",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L8922-L8964 |
50 | gossi/trixionary | src/model/Base/Skill.php | Skill.countFunctionPhasesRelatedBySkillId | public function countFunctionPhasesRelatedBySkillId(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collFunctionPhasesRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collFunctionPhasesRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collFunctionPhasesRelatedBySkillId) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getFunctionPhasesRelatedBySkillId());
}
$query = ChildFunctionPhaseQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkillRelatedBySkillId($this)
->count($con);
}
return count($this->collFunctionPhasesRelatedBySkillId);
} | php | public function countFunctionPhasesRelatedBySkillId(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collFunctionPhasesRelatedBySkillIdPartial && !$this->isNew();
if (null === $this->collFunctionPhasesRelatedBySkillId || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collFunctionPhasesRelatedBySkillId) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getFunctionPhasesRelatedBySkillId());
}
$query = ChildFunctionPhaseQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkillRelatedBySkillId($this)
->count($con);
}
return count($this->collFunctionPhasesRelatedBySkillId);
} | [
"public",
"function",
"countFunctionPhasesRelatedBySkillId",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getFunctionPhasesRelatedBySkillId",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildFunctionPhaseQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkillRelatedBySkillId",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
")",
";",
"}"
] | Returns the number of related FunctionPhase objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related FunctionPhase objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"FunctionPhase",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9008-L9031 |
51 | gossi/trixionary | src/model/Base/Skill.php | Skill.addFunctionPhaseRelatedBySkillId | public function addFunctionPhaseRelatedBySkillId(ChildFunctionPhase $l)
{
if ($this->collFunctionPhasesRelatedBySkillId === null) {
$this->initFunctionPhasesRelatedBySkillId();
$this->collFunctionPhasesRelatedBySkillIdPartial = true;
}
if (!$this->collFunctionPhasesRelatedBySkillId->contains($l)) {
$this->doAddFunctionPhaseRelatedBySkillId($l);
}
return $this;
} | php | public function addFunctionPhaseRelatedBySkillId(ChildFunctionPhase $l)
{
if ($this->collFunctionPhasesRelatedBySkillId === null) {
$this->initFunctionPhasesRelatedBySkillId();
$this->collFunctionPhasesRelatedBySkillIdPartial = true;
}
if (!$this->collFunctionPhasesRelatedBySkillId->contains($l)) {
$this->doAddFunctionPhaseRelatedBySkillId($l);
}
return $this;
} | [
"public",
"function",
"addFunctionPhaseRelatedBySkillId",
"(",
"ChildFunctionPhase",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initFunctionPhasesRelatedBySkillId",
"(",
")",
";",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillIdPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collFunctionPhasesRelatedBySkillId",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddFunctionPhaseRelatedBySkillId",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildFunctionPhase object to this object
through the ChildFunctionPhase foreign key attribute.
@param ChildFunctionPhase $l ChildFunctionPhase
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildFunctionPhase",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildFunctionPhase",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9040-L9052 |
52 | gossi/trixionary | src/model/Base/Skill.php | Skill.getFunctionPhasesRelatedBySkillIdJoinStructureNode | public function getFunctionPhasesRelatedBySkillIdJoinStructureNode(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildFunctionPhaseQuery::create(null, $criteria);
$query->joinWith('StructureNode', $joinBehavior);
return $this->getFunctionPhasesRelatedBySkillId($query, $con);
} | php | public function getFunctionPhasesRelatedBySkillIdJoinStructureNode(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
{
$query = ChildFunctionPhaseQuery::create(null, $criteria);
$query->joinWith('StructureNode', $joinBehavior);
return $this->getFunctionPhasesRelatedBySkillId($query, $con);
} | [
"public",
"function",
"getFunctionPhasesRelatedBySkillIdJoinStructureNode",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
",",
"$",
"joinBehavior",
"=",
"Criteria",
"::",
"LEFT_JOIN",
")",
"{",
"$",
"query",
"=",
"ChildFunctionPhaseQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"$",
"query",
"->",
"joinWith",
"(",
"'StructureNode'",
",",
"$",
"joinBehavior",
")",
";",
"return",
"$",
"this",
"->",
"getFunctionPhasesRelatedBySkillId",
"(",
"$",
"query",
",",
"$",
"con",
")",
";",
"}"
] | If this collection has already been initialized with
an identical criteria, it returns the collection.
Otherwise if this Skill is new, it will return
an empty collection; or if this Skill has previously
been saved, it will retrieve related FunctionPhasesRelatedBySkillId from storage.
This method is protected by default in order to keep the public
api reasonable. You can provide public methods for those you
actually need in Skill.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@param string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
@return ObjectCollection|ChildFunctionPhase[] List of ChildFunctionPhase objects | [
"If",
"this",
"collection",
"has",
"already",
"been",
"initialized",
"with",
"an",
"identical",
"criteria",
"it",
"returns",
"the",
"collection",
".",
"Otherwise",
"if",
"this",
"Skill",
"is",
"new",
"it",
"will",
"return",
"an",
"empty",
"collection",
";",
"or",
"if",
"this",
"Skill",
"has",
"previously",
"been",
"saved",
"it",
"will",
"retrieve",
"related",
"FunctionPhasesRelatedBySkillId",
"from",
"storage",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9100-L9106 |
53 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillVersions | public function initSkillVersions($overrideExisting = true)
{
if (null !== $this->collSkillVersions && !$overrideExisting) {
return;
}
$this->collSkillVersions = new ObjectCollection();
$this->collSkillVersions->setModel('\gossi\trixionary\model\SkillVersion');
} | php | public function initSkillVersions($overrideExisting = true)
{
if (null !== $this->collSkillVersions && !$overrideExisting) {
return;
}
$this->collSkillVersions = new ObjectCollection();
$this->collSkillVersions->setModel('\gossi\trixionary\model\SkillVersion');
} | [
"public",
"function",
"initSkillVersions",
"(",
"$",
"overrideExisting",
"=",
"true",
")",
"{",
"if",
"(",
"null",
"!==",
"$",
"this",
"->",
"collSkillVersions",
"&&",
"!",
"$",
"overrideExisting",
")",
"{",
"return",
";",
"}",
"$",
"this",
"->",
"collSkillVersions",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillVersions",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\SkillVersion'",
")",
";",
"}"
] | Initializes the collSkillVersions collection.
By default this just sets the collSkillVersions collection to an empty array (like clearcollSkillVersions());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@param boolean $overrideExisting If set to true, the method call initializes
the collection even if it is not empty
@return void | [
"Initializes",
"the",
"collSkillVersions",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9142-L9149 |
54 | gossi/trixionary | src/model/Base/Skill.php | Skill.getSkillVersions | public function getSkillVersions(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collSkillVersionsPartial && !$this->isNew();
if (null === $this->collSkillVersions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillVersions) {
// return empty collection
$this->initSkillVersions();
} else {
$collSkillVersions = ChildSkillVersionQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collSkillVersionsPartial && count($collSkillVersions)) {
$this->initSkillVersions(false);
foreach ($collSkillVersions as $obj) {
if (false == $this->collSkillVersions->contains($obj)) {
$this->collSkillVersions->append($obj);
}
}
$this->collSkillVersionsPartial = true;
}
return $collSkillVersions;
}
if ($partial && $this->collSkillVersions) {
foreach ($this->collSkillVersions as $obj) {
if ($obj->isNew()) {
$collSkillVersions[] = $obj;
}
}
}
$this->collSkillVersions = $collSkillVersions;
$this->collSkillVersionsPartial = false;
}
}
return $this->collSkillVersions;
} | php | public function getSkillVersions(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collSkillVersionsPartial && !$this->isNew();
if (null === $this->collSkillVersions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillVersions) {
// return empty collection
$this->initSkillVersions();
} else {
$collSkillVersions = ChildSkillVersionQuery::create(null, $criteria)
->filterBySkill($this)
->find($con);
if (null !== $criteria) {
if (false !== $this->collSkillVersionsPartial && count($collSkillVersions)) {
$this->initSkillVersions(false);
foreach ($collSkillVersions as $obj) {
if (false == $this->collSkillVersions->contains($obj)) {
$this->collSkillVersions->append($obj);
}
}
$this->collSkillVersionsPartial = true;
}
return $collSkillVersions;
}
if ($partial && $this->collSkillVersions) {
foreach ($this->collSkillVersions as $obj) {
if ($obj->isNew()) {
$collSkillVersions[] = $obj;
}
}
}
$this->collSkillVersions = $collSkillVersions;
$this->collSkillVersionsPartial = false;
}
}
return $this->collSkillVersions;
} | [
"public",
"function",
"getSkillVersions",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collSkillVersionsPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collSkillVersions",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collSkillVersions",
")",
"{",
"// return empty collection",
"$",
"this",
"->",
"initSkillVersions",
"(",
")",
";",
"}",
"else",
"{",
"$",
"collSkillVersions",
"=",
"ChildSkillVersionQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"if",
"(",
"false",
"!==",
"$",
"this",
"->",
"collSkillVersionsPartial",
"&&",
"count",
"(",
"$",
"collSkillVersions",
")",
")",
"{",
"$",
"this",
"->",
"initSkillVersions",
"(",
"false",
")",
";",
"foreach",
"(",
"$",
"collSkillVersions",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"false",
"==",
"$",
"this",
"->",
"collSkillVersions",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"this",
"->",
"collSkillVersions",
"->",
"append",
"(",
"$",
"obj",
")",
";",
"}",
"}",
"$",
"this",
"->",
"collSkillVersionsPartial",
"=",
"true",
";",
"}",
"return",
"$",
"collSkillVersions",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collSkillVersions",
")",
"{",
"foreach",
"(",
"$",
"this",
"->",
"collSkillVersions",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"$",
"obj",
"->",
"isNew",
"(",
")",
")",
"{",
"$",
"collSkillVersions",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collSkillVersions",
"=",
"$",
"collSkillVersions",
";",
"$",
"this",
"->",
"collSkillVersionsPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collSkillVersions",
";",
"}"
] | Gets an array of ChildSkillVersion objects which contain a foreign key that references this object.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria optional Criteria object to narrow the query
@param ConnectionInterface $con optional connection object
@return ObjectCollection|ChildSkillVersion[] List of ChildSkillVersion objects
@throws PropelException | [
"Gets",
"an",
"array",
"of",
"ChildSkillVersion",
"objects",
"which",
"contain",
"a",
"foreign",
"key",
"that",
"references",
"this",
"object",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9165-L9207 |
55 | gossi/trixionary | src/model/Base/Skill.php | Skill.countSkillVersions | public function countSkillVersions(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collSkillVersionsPartial && !$this->isNew();
if (null === $this->collSkillVersions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillVersions) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getSkillVersions());
}
$query = ChildSkillVersionQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collSkillVersions);
} | php | public function countSkillVersions(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
{
$partial = $this->collSkillVersionsPartial && !$this->isNew();
if (null === $this->collSkillVersions || null !== $criteria || $partial) {
if ($this->isNew() && null === $this->collSkillVersions) {
return 0;
}
if ($partial && !$criteria) {
return count($this->getSkillVersions());
}
$query = ChildSkillVersionQuery::create(null, $criteria);
if ($distinct) {
$query->distinct();
}
return $query
->filterBySkill($this)
->count($con);
}
return count($this->collSkillVersions);
} | [
"public",
"function",
"countSkillVersions",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"$",
"distinct",
"=",
"false",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collSkillVersionsPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collSkillVersions",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
"&&",
"null",
"===",
"$",
"this",
"->",
"collSkillVersions",
")",
"{",
"return",
"0",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"!",
"$",
"criteria",
")",
"{",
"return",
"count",
"(",
"$",
"this",
"->",
"getSkillVersions",
"(",
")",
")",
";",
"}",
"$",
"query",
"=",
"ChildSkillVersionQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
";",
"if",
"(",
"$",
"distinct",
")",
"{",
"$",
"query",
"->",
"distinct",
"(",
")",
";",
"}",
"return",
"$",
"query",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
"->",
"count",
"(",
"$",
"con",
")",
";",
"}",
"return",
"count",
"(",
"$",
"this",
"->",
"collSkillVersions",
")",
";",
"}"
] | Returns the number of related SkillVersion objects.
@param Criteria $criteria
@param boolean $distinct
@param ConnectionInterface $con
@return int Count of related SkillVersion objects.
@throws PropelException | [
"Returns",
"the",
"number",
"of",
"related",
"SkillVersion",
"objects",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9254-L9277 |
56 | gossi/trixionary | src/model/Base/Skill.php | Skill.addSkillVersion | public function addSkillVersion(ChildSkillVersion $l)
{
if ($this->collSkillVersions === null) {
$this->initSkillVersions();
$this->collSkillVersionsPartial = true;
}
if (!$this->collSkillVersions->contains($l)) {
$this->doAddSkillVersion($l);
}
return $this;
} | php | public function addSkillVersion(ChildSkillVersion $l)
{
if ($this->collSkillVersions === null) {
$this->initSkillVersions();
$this->collSkillVersionsPartial = true;
}
if (!$this->collSkillVersions->contains($l)) {
$this->doAddSkillVersion($l);
}
return $this;
} | [
"public",
"function",
"addSkillVersion",
"(",
"ChildSkillVersion",
"$",
"l",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"collSkillVersions",
"===",
"null",
")",
"{",
"$",
"this",
"->",
"initSkillVersions",
"(",
")",
";",
"$",
"this",
"->",
"collSkillVersionsPartial",
"=",
"true",
";",
"}",
"if",
"(",
"!",
"$",
"this",
"->",
"collSkillVersions",
"->",
"contains",
"(",
"$",
"l",
")",
")",
"{",
"$",
"this",
"->",
"doAddSkillVersion",
"(",
"$",
"l",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Method called to associate a ChildSkillVersion object to this object
through the ChildSkillVersion foreign key attribute.
@param ChildSkillVersion $l ChildSkillVersion
@return $this|\gossi\trixionary\model\Skill The current object (for fluent API support) | [
"Method",
"called",
"to",
"associate",
"a",
"ChildSkillVersion",
"object",
"to",
"this",
"object",
"through",
"the",
"ChildSkillVersion",
"foreign",
"key",
"attribute",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9286-L9298 |
57 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillsRelatedByParentId | public function initSkillsRelatedByParentId()
{
$this->collSkillsRelatedByParentId = new ObjectCollection();
$this->collSkillsRelatedByParentIdPartial = true;
$this->collSkillsRelatedByParentId->setModel('\gossi\trixionary\model\Skill');
} | php | public function initSkillsRelatedByParentId()
{
$this->collSkillsRelatedByParentId = new ObjectCollection();
$this->collSkillsRelatedByParentIdPartial = true;
$this->collSkillsRelatedByParentId->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initSkillsRelatedByParentId",
"(",
")",
"{",
"$",
"this",
"->",
"collSkillsRelatedByParentId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByParentIdPartial",
"=",
"true",
";",
"$",
"this",
"->",
"collSkillsRelatedByParentId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collSkillsRelatedByParentId crossRef collection.
By default this just sets the collSkillsRelatedByParentId collection to an empty collection (like clearSkillsRelatedByParentId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@return void | [
"Initializes",
"the",
"collSkillsRelatedByParentId",
"crossRef",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9352-L9358 |
58 | gossi/trixionary | src/model/Base/Skill.php | Skill.removeSkillRelatedByParentId | public function removeSkillRelatedByParentId(ChildSkill $skillRelatedByParentId)
{
if ($this->getSkillsRelatedByParentId()->contains($skillRelatedByParentId)) { $skillDependency = new ChildSkillDependency();
$skillDependency->setSkillRelatedByParentId($skillRelatedByParentId);
if ($skillRelatedByParentId->isSkillRelatedByDependencyIdsLoaded()) {
//remove the back reference if available
$skillRelatedByParentId->getSkillRelatedByDependencyIds()->removeObject($this);
}
$skillDependency->setSkillRelatedByDependencyId($this);
$this->removeChild(clone $skillDependency);
$skillDependency->clear();
$this->collSkillsRelatedByParentId->remove($this->collSkillsRelatedByParentId->search($skillRelatedByParentId));
if (null === $this->skillsRelatedByParentIdScheduledForDeletion) {
$this->skillsRelatedByParentIdScheduledForDeletion = clone $this->collSkillsRelatedByParentId;
$this->skillsRelatedByParentIdScheduledForDeletion->clear();
}
$this->skillsRelatedByParentIdScheduledForDeletion->push($skillRelatedByParentId);
}
return $this;
} | php | public function removeSkillRelatedByParentId(ChildSkill $skillRelatedByParentId)
{
if ($this->getSkillsRelatedByParentId()->contains($skillRelatedByParentId)) { $skillDependency = new ChildSkillDependency();
$skillDependency->setSkillRelatedByParentId($skillRelatedByParentId);
if ($skillRelatedByParentId->isSkillRelatedByDependencyIdsLoaded()) {
//remove the back reference if available
$skillRelatedByParentId->getSkillRelatedByDependencyIds()->removeObject($this);
}
$skillDependency->setSkillRelatedByDependencyId($this);
$this->removeChild(clone $skillDependency);
$skillDependency->clear();
$this->collSkillsRelatedByParentId->remove($this->collSkillsRelatedByParentId->search($skillRelatedByParentId));
if (null === $this->skillsRelatedByParentIdScheduledForDeletion) {
$this->skillsRelatedByParentIdScheduledForDeletion = clone $this->collSkillsRelatedByParentId;
$this->skillsRelatedByParentIdScheduledForDeletion->clear();
}
$this->skillsRelatedByParentIdScheduledForDeletion->push($skillRelatedByParentId);
}
return $this;
} | [
"public",
"function",
"removeSkillRelatedByParentId",
"(",
"ChildSkill",
"$",
"skillRelatedByParentId",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"getSkillsRelatedByParentId",
"(",
")",
"->",
"contains",
"(",
"$",
"skillRelatedByParentId",
")",
")",
"{",
"$",
"skillDependency",
"=",
"new",
"ChildSkillDependency",
"(",
")",
";",
"$",
"skillDependency",
"->",
"setSkillRelatedByParentId",
"(",
"$",
"skillRelatedByParentId",
")",
";",
"if",
"(",
"$",
"skillRelatedByParentId",
"->",
"isSkillRelatedByDependencyIdsLoaded",
"(",
")",
")",
"{",
"//remove the back reference if available",
"$",
"skillRelatedByParentId",
"->",
"getSkillRelatedByDependencyIds",
"(",
")",
"->",
"removeObject",
"(",
"$",
"this",
")",
";",
"}",
"$",
"skillDependency",
"->",
"setSkillRelatedByDependencyId",
"(",
"$",
"this",
")",
";",
"$",
"this",
"->",
"removeChild",
"(",
"clone",
"$",
"skillDependency",
")",
";",
"$",
"skillDependency",
"->",
"clear",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByParentId",
"->",
"remove",
"(",
"$",
"this",
"->",
"collSkillsRelatedByParentId",
"->",
"search",
"(",
"$",
"skillRelatedByParentId",
")",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"skillsRelatedByParentIdScheduledForDeletion",
")",
"{",
"$",
"this",
"->",
"skillsRelatedByParentIdScheduledForDeletion",
"=",
"clone",
"$",
"this",
"->",
"collSkillsRelatedByParentId",
";",
"$",
"this",
"->",
"skillsRelatedByParentIdScheduledForDeletion",
"->",
"clear",
"(",
")",
";",
"}",
"$",
"this",
"->",
"skillsRelatedByParentIdScheduledForDeletion",
"->",
"push",
"(",
"$",
"skillRelatedByParentId",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Remove skillRelatedByParentId of this object
through the kk_trixionary_skill_dependency cross reference table.
@param ChildSkill $skillRelatedByParentId
@return ChildSkill The current object (for fluent API support) | [
"Remove",
"skillRelatedByParentId",
"of",
"this",
"object",
"through",
"the",
"kk_trixionary_skill_dependency",
"cross",
"reference",
"table",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9543-L9569 |
59 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillsRelatedByDependencyId | public function initSkillsRelatedByDependencyId()
{
$this->collSkillsRelatedByDependencyId = new ObjectCollection();
$this->collSkillsRelatedByDependencyIdPartial = true;
$this->collSkillsRelatedByDependencyId->setModel('\gossi\trixionary\model\Skill');
} | php | public function initSkillsRelatedByDependencyId()
{
$this->collSkillsRelatedByDependencyId = new ObjectCollection();
$this->collSkillsRelatedByDependencyIdPartial = true;
$this->collSkillsRelatedByDependencyId->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initSkillsRelatedByDependencyId",
"(",
")",
"{",
"$",
"this",
"->",
"collSkillsRelatedByDependencyId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByDependencyIdPartial",
"=",
"true",
";",
"$",
"this",
"->",
"collSkillsRelatedByDependencyId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collSkillsRelatedByDependencyId crossRef collection.
By default this just sets the collSkillsRelatedByDependencyId collection to an empty collection (like clearSkillsRelatedByDependencyId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@return void | [
"Initializes",
"the",
"collSkillsRelatedByDependencyId",
"crossRef",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9594-L9600 |
60 | gossi/trixionary | src/model/Base/Skill.php | Skill.removeSkillRelatedByDependencyId | public function removeSkillRelatedByDependencyId(ChildSkill $skillRelatedByDependencyId)
{
if ($this->getSkillsRelatedByDependencyId()->contains($skillRelatedByDependencyId)) { $skillDependency = new ChildSkillDependency();
$skillDependency->setSkillRelatedByDependencyId($skillRelatedByDependencyId);
if ($skillRelatedByDependencyId->isSkillRelatedByParentIdsLoaded()) {
//remove the back reference if available
$skillRelatedByDependencyId->getSkillRelatedByParentIds()->removeObject($this);
}
$skillDependency->setSkillRelatedByParentId($this);
$this->removeParent(clone $skillDependency);
$skillDependency->clear();
$this->collSkillsRelatedByDependencyId->remove($this->collSkillsRelatedByDependencyId->search($skillRelatedByDependencyId));
if (null === $this->skillsRelatedByDependencyIdScheduledForDeletion) {
$this->skillsRelatedByDependencyIdScheduledForDeletion = clone $this->collSkillsRelatedByDependencyId;
$this->skillsRelatedByDependencyIdScheduledForDeletion->clear();
}
$this->skillsRelatedByDependencyIdScheduledForDeletion->push($skillRelatedByDependencyId);
}
return $this;
} | php | public function removeSkillRelatedByDependencyId(ChildSkill $skillRelatedByDependencyId)
{
if ($this->getSkillsRelatedByDependencyId()->contains($skillRelatedByDependencyId)) { $skillDependency = new ChildSkillDependency();
$skillDependency->setSkillRelatedByDependencyId($skillRelatedByDependencyId);
if ($skillRelatedByDependencyId->isSkillRelatedByParentIdsLoaded()) {
//remove the back reference if available
$skillRelatedByDependencyId->getSkillRelatedByParentIds()->removeObject($this);
}
$skillDependency->setSkillRelatedByParentId($this);
$this->removeParent(clone $skillDependency);
$skillDependency->clear();
$this->collSkillsRelatedByDependencyId->remove($this->collSkillsRelatedByDependencyId->search($skillRelatedByDependencyId));
if (null === $this->skillsRelatedByDependencyIdScheduledForDeletion) {
$this->skillsRelatedByDependencyIdScheduledForDeletion = clone $this->collSkillsRelatedByDependencyId;
$this->skillsRelatedByDependencyIdScheduledForDeletion->clear();
}
$this->skillsRelatedByDependencyIdScheduledForDeletion->push($skillRelatedByDependencyId);
}
return $this;
} | [
"public",
"function",
"removeSkillRelatedByDependencyId",
"(",
"ChildSkill",
"$",
"skillRelatedByDependencyId",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"getSkillsRelatedByDependencyId",
"(",
")",
"->",
"contains",
"(",
"$",
"skillRelatedByDependencyId",
")",
")",
"{",
"$",
"skillDependency",
"=",
"new",
"ChildSkillDependency",
"(",
")",
";",
"$",
"skillDependency",
"->",
"setSkillRelatedByDependencyId",
"(",
"$",
"skillRelatedByDependencyId",
")",
";",
"if",
"(",
"$",
"skillRelatedByDependencyId",
"->",
"isSkillRelatedByParentIdsLoaded",
"(",
")",
")",
"{",
"//remove the back reference if available",
"$",
"skillRelatedByDependencyId",
"->",
"getSkillRelatedByParentIds",
"(",
")",
"->",
"removeObject",
"(",
"$",
"this",
")",
";",
"}",
"$",
"skillDependency",
"->",
"setSkillRelatedByParentId",
"(",
"$",
"this",
")",
";",
"$",
"this",
"->",
"removeParent",
"(",
"clone",
"$",
"skillDependency",
")",
";",
"$",
"skillDependency",
"->",
"clear",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByDependencyId",
"->",
"remove",
"(",
"$",
"this",
"->",
"collSkillsRelatedByDependencyId",
"->",
"search",
"(",
"$",
"skillRelatedByDependencyId",
")",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"skillsRelatedByDependencyIdScheduledForDeletion",
")",
"{",
"$",
"this",
"->",
"skillsRelatedByDependencyIdScheduledForDeletion",
"=",
"clone",
"$",
"this",
"->",
"collSkillsRelatedByDependencyId",
";",
"$",
"this",
"->",
"skillsRelatedByDependencyIdScheduledForDeletion",
"->",
"clear",
"(",
")",
";",
"}",
"$",
"this",
"->",
"skillsRelatedByDependencyIdScheduledForDeletion",
"->",
"push",
"(",
"$",
"skillRelatedByDependencyId",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Remove skillRelatedByDependencyId of this object
through the kk_trixionary_skill_dependency cross reference table.
@param ChildSkill $skillRelatedByDependencyId
@return ChildSkill The current object (for fluent API support) | [
"Remove",
"skillRelatedByDependencyId",
"of",
"this",
"object",
"through",
"the",
"kk_trixionary_skill_dependency",
"cross",
"reference",
"table",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9785-L9811 |
61 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillsRelatedByCompositeId | public function initSkillsRelatedByCompositeId()
{
$this->collSkillsRelatedByCompositeId = new ObjectCollection();
$this->collSkillsRelatedByCompositeIdPartial = true;
$this->collSkillsRelatedByCompositeId->setModel('\gossi\trixionary\model\Skill');
} | php | public function initSkillsRelatedByCompositeId()
{
$this->collSkillsRelatedByCompositeId = new ObjectCollection();
$this->collSkillsRelatedByCompositeIdPartial = true;
$this->collSkillsRelatedByCompositeId->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initSkillsRelatedByCompositeId",
"(",
")",
"{",
"$",
"this",
"->",
"collSkillsRelatedByCompositeId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByCompositeIdPartial",
"=",
"true",
";",
"$",
"this",
"->",
"collSkillsRelatedByCompositeId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collSkillsRelatedByCompositeId crossRef collection.
By default this just sets the collSkillsRelatedByCompositeId collection to an empty collection (like clearSkillsRelatedByCompositeId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@return void | [
"Initializes",
"the",
"collSkillsRelatedByCompositeId",
"crossRef",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L9836-L9842 |
62 | gossi/trixionary | src/model/Base/Skill.php | Skill.removeSkillRelatedByCompositeId | public function removeSkillRelatedByCompositeId(ChildSkill $skillRelatedByCompositeId)
{
if ($this->getSkillsRelatedByCompositeId()->contains($skillRelatedByCompositeId)) { $skillPart = new ChildSkillPart();
$skillPart->setSkillRelatedByCompositeId($skillRelatedByCompositeId);
if ($skillRelatedByCompositeId->isSkillRelatedByPartIdsLoaded()) {
//remove the back reference if available
$skillRelatedByCompositeId->getSkillRelatedByPartIds()->removeObject($this);
}
$skillPart->setSkillRelatedByPartId($this);
$this->removePart(clone $skillPart);
$skillPart->clear();
$this->collSkillsRelatedByCompositeId->remove($this->collSkillsRelatedByCompositeId->search($skillRelatedByCompositeId));
if (null === $this->skillsRelatedByCompositeIdScheduledForDeletion) {
$this->skillsRelatedByCompositeIdScheduledForDeletion = clone $this->collSkillsRelatedByCompositeId;
$this->skillsRelatedByCompositeIdScheduledForDeletion->clear();
}
$this->skillsRelatedByCompositeIdScheduledForDeletion->push($skillRelatedByCompositeId);
}
return $this;
} | php | public function removeSkillRelatedByCompositeId(ChildSkill $skillRelatedByCompositeId)
{
if ($this->getSkillsRelatedByCompositeId()->contains($skillRelatedByCompositeId)) { $skillPart = new ChildSkillPart();
$skillPart->setSkillRelatedByCompositeId($skillRelatedByCompositeId);
if ($skillRelatedByCompositeId->isSkillRelatedByPartIdsLoaded()) {
//remove the back reference if available
$skillRelatedByCompositeId->getSkillRelatedByPartIds()->removeObject($this);
}
$skillPart->setSkillRelatedByPartId($this);
$this->removePart(clone $skillPart);
$skillPart->clear();
$this->collSkillsRelatedByCompositeId->remove($this->collSkillsRelatedByCompositeId->search($skillRelatedByCompositeId));
if (null === $this->skillsRelatedByCompositeIdScheduledForDeletion) {
$this->skillsRelatedByCompositeIdScheduledForDeletion = clone $this->collSkillsRelatedByCompositeId;
$this->skillsRelatedByCompositeIdScheduledForDeletion->clear();
}
$this->skillsRelatedByCompositeIdScheduledForDeletion->push($skillRelatedByCompositeId);
}
return $this;
} | [
"public",
"function",
"removeSkillRelatedByCompositeId",
"(",
"ChildSkill",
"$",
"skillRelatedByCompositeId",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"getSkillsRelatedByCompositeId",
"(",
")",
"->",
"contains",
"(",
"$",
"skillRelatedByCompositeId",
")",
")",
"{",
"$",
"skillPart",
"=",
"new",
"ChildSkillPart",
"(",
")",
";",
"$",
"skillPart",
"->",
"setSkillRelatedByCompositeId",
"(",
"$",
"skillRelatedByCompositeId",
")",
";",
"if",
"(",
"$",
"skillRelatedByCompositeId",
"->",
"isSkillRelatedByPartIdsLoaded",
"(",
")",
")",
"{",
"//remove the back reference if available",
"$",
"skillRelatedByCompositeId",
"->",
"getSkillRelatedByPartIds",
"(",
")",
"->",
"removeObject",
"(",
"$",
"this",
")",
";",
"}",
"$",
"skillPart",
"->",
"setSkillRelatedByPartId",
"(",
"$",
"this",
")",
";",
"$",
"this",
"->",
"removePart",
"(",
"clone",
"$",
"skillPart",
")",
";",
"$",
"skillPart",
"->",
"clear",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByCompositeId",
"->",
"remove",
"(",
"$",
"this",
"->",
"collSkillsRelatedByCompositeId",
"->",
"search",
"(",
"$",
"skillRelatedByCompositeId",
")",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"skillsRelatedByCompositeIdScheduledForDeletion",
")",
"{",
"$",
"this",
"->",
"skillsRelatedByCompositeIdScheduledForDeletion",
"=",
"clone",
"$",
"this",
"->",
"collSkillsRelatedByCompositeId",
";",
"$",
"this",
"->",
"skillsRelatedByCompositeIdScheduledForDeletion",
"->",
"clear",
"(",
")",
";",
"}",
"$",
"this",
"->",
"skillsRelatedByCompositeIdScheduledForDeletion",
"->",
"push",
"(",
"$",
"skillRelatedByCompositeId",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Remove skillRelatedByCompositeId of this object
through the kk_trixionary_skill_part cross reference table.
@param ChildSkill $skillRelatedByCompositeId
@return ChildSkill The current object (for fluent API support) | [
"Remove",
"skillRelatedByCompositeId",
"of",
"this",
"object",
"through",
"the",
"kk_trixionary_skill_part",
"cross",
"reference",
"table",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L10027-L10053 |
63 | gossi/trixionary | src/model/Base/Skill.php | Skill.initSkillsRelatedByPartId | public function initSkillsRelatedByPartId()
{
$this->collSkillsRelatedByPartId = new ObjectCollection();
$this->collSkillsRelatedByPartIdPartial = true;
$this->collSkillsRelatedByPartId->setModel('\gossi\trixionary\model\Skill');
} | php | public function initSkillsRelatedByPartId()
{
$this->collSkillsRelatedByPartId = new ObjectCollection();
$this->collSkillsRelatedByPartIdPartial = true;
$this->collSkillsRelatedByPartId->setModel('\gossi\trixionary\model\Skill');
} | [
"public",
"function",
"initSkillsRelatedByPartId",
"(",
")",
"{",
"$",
"this",
"->",
"collSkillsRelatedByPartId",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByPartIdPartial",
"=",
"true",
";",
"$",
"this",
"->",
"collSkillsRelatedByPartId",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Skill'",
")",
";",
"}"
] | Initializes the collSkillsRelatedByPartId crossRef collection.
By default this just sets the collSkillsRelatedByPartId collection to an empty collection (like clearSkillsRelatedByPartId());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@return void | [
"Initializes",
"the",
"collSkillsRelatedByPartId",
"crossRef",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L10078-L10084 |
64 | gossi/trixionary | src/model/Base/Skill.php | Skill.removeSkillRelatedByPartId | public function removeSkillRelatedByPartId(ChildSkill $skillRelatedByPartId)
{
if ($this->getSkillsRelatedByPartId()->contains($skillRelatedByPartId)) { $skillPart = new ChildSkillPart();
$skillPart->setSkillRelatedByPartId($skillRelatedByPartId);
if ($skillRelatedByPartId->isSkillRelatedByCompositeIdsLoaded()) {
//remove the back reference if available
$skillRelatedByPartId->getSkillRelatedByCompositeIds()->removeObject($this);
}
$skillPart->setSkillRelatedByCompositeId($this);
$this->removeComposite(clone $skillPart);
$skillPart->clear();
$this->collSkillsRelatedByPartId->remove($this->collSkillsRelatedByPartId->search($skillRelatedByPartId));
if (null === $this->skillsRelatedByPartIdScheduledForDeletion) {
$this->skillsRelatedByPartIdScheduledForDeletion = clone $this->collSkillsRelatedByPartId;
$this->skillsRelatedByPartIdScheduledForDeletion->clear();
}
$this->skillsRelatedByPartIdScheduledForDeletion->push($skillRelatedByPartId);
}
return $this;
} | php | public function removeSkillRelatedByPartId(ChildSkill $skillRelatedByPartId)
{
if ($this->getSkillsRelatedByPartId()->contains($skillRelatedByPartId)) { $skillPart = new ChildSkillPart();
$skillPart->setSkillRelatedByPartId($skillRelatedByPartId);
if ($skillRelatedByPartId->isSkillRelatedByCompositeIdsLoaded()) {
//remove the back reference if available
$skillRelatedByPartId->getSkillRelatedByCompositeIds()->removeObject($this);
}
$skillPart->setSkillRelatedByCompositeId($this);
$this->removeComposite(clone $skillPart);
$skillPart->clear();
$this->collSkillsRelatedByPartId->remove($this->collSkillsRelatedByPartId->search($skillRelatedByPartId));
if (null === $this->skillsRelatedByPartIdScheduledForDeletion) {
$this->skillsRelatedByPartIdScheduledForDeletion = clone $this->collSkillsRelatedByPartId;
$this->skillsRelatedByPartIdScheduledForDeletion->clear();
}
$this->skillsRelatedByPartIdScheduledForDeletion->push($skillRelatedByPartId);
}
return $this;
} | [
"public",
"function",
"removeSkillRelatedByPartId",
"(",
"ChildSkill",
"$",
"skillRelatedByPartId",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"getSkillsRelatedByPartId",
"(",
")",
"->",
"contains",
"(",
"$",
"skillRelatedByPartId",
")",
")",
"{",
"$",
"skillPart",
"=",
"new",
"ChildSkillPart",
"(",
")",
";",
"$",
"skillPart",
"->",
"setSkillRelatedByPartId",
"(",
"$",
"skillRelatedByPartId",
")",
";",
"if",
"(",
"$",
"skillRelatedByPartId",
"->",
"isSkillRelatedByCompositeIdsLoaded",
"(",
")",
")",
"{",
"//remove the back reference if available",
"$",
"skillRelatedByPartId",
"->",
"getSkillRelatedByCompositeIds",
"(",
")",
"->",
"removeObject",
"(",
"$",
"this",
")",
";",
"}",
"$",
"skillPart",
"->",
"setSkillRelatedByCompositeId",
"(",
"$",
"this",
")",
";",
"$",
"this",
"->",
"removeComposite",
"(",
"clone",
"$",
"skillPart",
")",
";",
"$",
"skillPart",
"->",
"clear",
"(",
")",
";",
"$",
"this",
"->",
"collSkillsRelatedByPartId",
"->",
"remove",
"(",
"$",
"this",
"->",
"collSkillsRelatedByPartId",
"->",
"search",
"(",
"$",
"skillRelatedByPartId",
")",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"skillsRelatedByPartIdScheduledForDeletion",
")",
"{",
"$",
"this",
"->",
"skillsRelatedByPartIdScheduledForDeletion",
"=",
"clone",
"$",
"this",
"->",
"collSkillsRelatedByPartId",
";",
"$",
"this",
"->",
"skillsRelatedByPartIdScheduledForDeletion",
"->",
"clear",
"(",
")",
";",
"}",
"$",
"this",
"->",
"skillsRelatedByPartIdScheduledForDeletion",
"->",
"push",
"(",
"$",
"skillRelatedByPartId",
")",
";",
"}",
"return",
"$",
"this",
";",
"}"
] | Remove skillRelatedByPartId of this object
through the kk_trixionary_skill_part cross reference table.
@param ChildSkill $skillRelatedByPartId
@return ChildSkill The current object (for fluent API support) | [
"Remove",
"skillRelatedByPartId",
"of",
"this",
"object",
"through",
"the",
"kk_trixionary_skill_part",
"cross",
"reference",
"table",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L10269-L10295 |
65 | gossi/trixionary | src/model/Base/Skill.php | Skill.initGroups | public function initGroups()
{
$this->collGroups = new ObjectCollection();
$this->collGroupsPartial = true;
$this->collGroups->setModel('\gossi\trixionary\model\Group');
} | php | public function initGroups()
{
$this->collGroups = new ObjectCollection();
$this->collGroupsPartial = true;
$this->collGroups->setModel('\gossi\trixionary\model\Group');
} | [
"public",
"function",
"initGroups",
"(",
")",
"{",
"$",
"this",
"->",
"collGroups",
"=",
"new",
"ObjectCollection",
"(",
")",
";",
"$",
"this",
"->",
"collGroupsPartial",
"=",
"true",
";",
"$",
"this",
"->",
"collGroups",
"->",
"setModel",
"(",
"'\\gossi\\trixionary\\model\\Group'",
")",
";",
"}"
] | Initializes the collGroups crossRef collection.
By default this just sets the collGroups collection to an empty collection (like clearGroups());
however, you may wish to override this method in your stub class to provide setting appropriate
to your application -- for example, setting the initial array to the values stored in database.
@return void | [
"Initializes",
"the",
"collGroups",
"crossRef",
"collection",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L10320-L10326 |
66 | gossi/trixionary | src/model/Base/Skill.php | Skill.getGroups | public function getGroups(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collGroupsPartial && !$this->isNew();
if (null === $this->collGroups || null !== $criteria || $partial) {
if ($this->isNew()) {
// return empty collection
if (null === $this->collGroups) {
$this->initGroups();
}
} else {
$query = ChildGroupQuery::create(null, $criteria)
->filterBySkill($this);
$collGroups = $query->find($con);
if (null !== $criteria) {
return $collGroups;
}
if ($partial && $this->collGroups) {
//make sure that already added objects gets added to the list of the database.
foreach ($this->collGroups as $obj) {
if (!$collGroups->contains($obj)) {
$collGroups[] = $obj;
}
}
}
$this->collGroups = $collGroups;
$this->collGroupsPartial = false;
}
}
return $this->collGroups;
} | php | public function getGroups(Criteria $criteria = null, ConnectionInterface $con = null)
{
$partial = $this->collGroupsPartial && !$this->isNew();
if (null === $this->collGroups || null !== $criteria || $partial) {
if ($this->isNew()) {
// return empty collection
if (null === $this->collGroups) {
$this->initGroups();
}
} else {
$query = ChildGroupQuery::create(null, $criteria)
->filterBySkill($this);
$collGroups = $query->find($con);
if (null !== $criteria) {
return $collGroups;
}
if ($partial && $this->collGroups) {
//make sure that already added objects gets added to the list of the database.
foreach ($this->collGroups as $obj) {
if (!$collGroups->contains($obj)) {
$collGroups[] = $obj;
}
}
}
$this->collGroups = $collGroups;
$this->collGroupsPartial = false;
}
}
return $this->collGroups;
} | [
"public",
"function",
"getGroups",
"(",
"Criteria",
"$",
"criteria",
"=",
"null",
",",
"ConnectionInterface",
"$",
"con",
"=",
"null",
")",
"{",
"$",
"partial",
"=",
"$",
"this",
"->",
"collGroupsPartial",
"&&",
"!",
"$",
"this",
"->",
"isNew",
"(",
")",
";",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collGroups",
"||",
"null",
"!==",
"$",
"criteria",
"||",
"$",
"partial",
")",
"{",
"if",
"(",
"$",
"this",
"->",
"isNew",
"(",
")",
")",
"{",
"// return empty collection",
"if",
"(",
"null",
"===",
"$",
"this",
"->",
"collGroups",
")",
"{",
"$",
"this",
"->",
"initGroups",
"(",
")",
";",
"}",
"}",
"else",
"{",
"$",
"query",
"=",
"ChildGroupQuery",
"::",
"create",
"(",
"null",
",",
"$",
"criteria",
")",
"->",
"filterBySkill",
"(",
"$",
"this",
")",
";",
"$",
"collGroups",
"=",
"$",
"query",
"->",
"find",
"(",
"$",
"con",
")",
";",
"if",
"(",
"null",
"!==",
"$",
"criteria",
")",
"{",
"return",
"$",
"collGroups",
";",
"}",
"if",
"(",
"$",
"partial",
"&&",
"$",
"this",
"->",
"collGroups",
")",
"{",
"//make sure that already added objects gets added to the list of the database.",
"foreach",
"(",
"$",
"this",
"->",
"collGroups",
"as",
"$",
"obj",
")",
"{",
"if",
"(",
"!",
"$",
"collGroups",
"->",
"contains",
"(",
"$",
"obj",
")",
")",
"{",
"$",
"collGroups",
"[",
"]",
"=",
"$",
"obj",
";",
"}",
"}",
"}",
"$",
"this",
"->",
"collGroups",
"=",
"$",
"collGroups",
";",
"$",
"this",
"->",
"collGroupsPartial",
"=",
"false",
";",
"}",
"}",
"return",
"$",
"this",
"->",
"collGroups",
";",
"}"
] | Gets a collection of ChildGroup objects related by a many-to-many relationship
to the current object by way of the kk_trixionary_skill_group cross-reference table.
If the $criteria is not null, it is used to always fetch the results from the database.
Otherwise the results are fetched from the database the first time, then cached.
Next time the same method is called without $criteria, the cached collection is returned.
If this ChildSkill is new, it will return
an empty collection or the current collection; the criteria is ignored on a new object.
@param Criteria $criteria Optional query object to filter the query
@param ConnectionInterface $con Optional connection object
@return ObjectCollection|ChildGroup[] List of ChildGroup objects | [
"Gets",
"a",
"collection",
"of",
"ChildGroup",
"objects",
"related",
"by",
"a",
"many",
"-",
"to",
"-",
"many",
"relationship",
"to",
"the",
"current",
"object",
"by",
"way",
"of",
"the",
"kk_trixionary_skill_group",
"cross",
"-",
"reference",
"table",
"."
] | 221a6c5322473d7d7f8e322958a3ee46d87da150 | https://github.com/gossi/trixionary/blob/221a6c5322473d7d7f8e322958a3ee46d87da150/src/model/Base/Skill.php#L10353-L10386 |
End of preview. Expand
in Dataset Viewer.
- Downloads last month
- 85