本文整理匯總了PHP中Workflow::obtener_nodo方法的典型用法代碼示例。如果您正苦於以下問題:PHP Workflow::obtener_nodo方法的具體用法?PHP Workflow::obtener_nodo怎麽用?PHP Workflow::obtener_nodo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Workflow
的用法示例。
在下文中一共展示了Workflow::obtener_nodo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: generar_arbol_descendientes_sobre_grafo
function generar_arbol_descendientes_sobre_grafo($grafo)
{
if (is_null($this->siguiente_caso_true) || is_null($this->siguiente_caso_false)) {
throw new Exception("Error al dibujar arbol, este choice node no tiene siguientes!.");
}
$nombre_partida = "{$this->name}\\n({$this->accion})";
if (!empty($this->siguiente_caso_true)) {
$siguiente_caso_true = Workflow::obtener_nodo($this->siguiente_caso_true);
$nombre_llegada_true = "{$siguiente_caso_true->name}\\n({$siguiente_caso_true->accion})";
} else {
$nombre_llegada_true = 'Ejecución Terminada';
}
if (!empty($this->siguiente_caso_false)) {
$siguiente_caso_false = Workflow::obtener_nodo($this->siguiente_caso_false);
$nombre_llegada_false = "{$siguiente_caso_false->name}\\n({$siguiente_caso_false->accion})";
} else {
$nombre_llegada_false = 'Ejecución Terminada';
}
$nombre_partida = "{$this->name}\\n({$this->accion})";
$grafo->agregar($nombre_partida, $nombre_llegada_true, "VERDADERO", '#9ac836', 'octagon', 'ne');
$grafo->agregar($nombre_partida, $nombre_llegada_false, "FALSO", '#ff9c00', 'octagon', 'se');
if (!$grafo->existe_nodo_salida($nombre_llegada_true)) {
$siguiente_caso_true->generar_arbol_descendientes_sobre_grafo($grafo);
}
if (!$grafo->existe_nodo_salida($nombre_llegada_false)) {
$siguiente_caso_false->generar_arbol_descendientes_sobre_grafo($grafo);
}
}
示例2: generar_arbol_descendientes_sobre_grafo
function generar_arbol_descendientes_sobre_grafo($grafo)
{
$nombre_llegada = 'Ejecución Terminada';
$nombre_partida = "{$this->name}\\n({$this->accion})";
if (!empty($this->siguiente)) {
$siguiente = Workflow::obtener_nodo($this->siguiente);
$nombre_llegada = "{$siguiente->name}\\n({$siguiente->accion})";
}
$grafo->agregar($nombre_partida, $nombre_llegada);
if (!$grafo->existe_nodo_salida($nombre_llegada)) {
$siguiente->generar_arbol_descendientes_sobre_grafo($grafo);
}
}
示例3: obtener_nodo
public function obtener_nodo()
{
return Workflow::obtener_nodo($this->node_id);
}
示例4: obtener_nodo_inicial
function obtener_nodo_inicial()
{
$id = $this->start_node_id;
assert(!is_null($id));
return Workflow::obtener_nodo($id);
}