lms
Administrador
- Mensajes
- 7.741
- Puntuación de reacciones
- 2.163
- Puntos
- 2.613
- Sitio web
- xenfacil.com
- Versión de XenForo
- 2.1.x
- Página web
- Web
Insertar CODE, HTML o PHP:
public function actionNumero()
{
//Selecciona la ID del usuario
$_userId = $this->_input->filterSingle('user_id', XenForo_Input::UINT);
if ($_userId)[COLOR=#ff0000][B]{[/B][/COLOR]
$userId = $this->_input->filterSingle('user_id', XenForo_Input::UINT);
[COLOR=#ff0000][B]}[/B][/COLOR]else[B][COLOR=#ff0000]{[/COLOR][/B]
$userId = XenForo_Visitor::getUserId();
[COLOR=#ff0000][B]}[/B][/COLOR]
$id = $this->getModelFromCache('XenForo_Model_User2')->getId($userId);
$numero = $this->getModelFromCache('XenForo_Model_User2')->getNumero($userId);
$viewParams = array(
'id' => [S][COLOR=#ff0000][B]$players[/B][/COLOR][/S][B][COLOR=#0000ff]$id[/COLOR][/B],
'numero' => $numero
);
return $this->responseView('XenForo_ViewPublic_Misc_Empty', 'user/Update', $viewParams);
}
Insertar CODE, HTML o PHP:
<xen:foreach loop="$users" value="$user" i="$i">
<form action="{xen:link team/NumeroUpdate}" method="post" class="Form">
<label for="ctrl_custom_title">{$user.name} {$user.surname}:</label>
<select name="[COLOR=#0000ff][B]numero[][/B][/COLOR]" class="textCtrl OptOut" id="ctrl_style_id" autofocus="[COLOR=#0000ff][B]true[/B][/COLOR][S]on[/S]">
<xen:if is="{$numero} == '1'"><option value="{$numero}">{$numero}</option>
<option value="2">2</option>
<xen:elseif is="{$numero} == '2'" /><option value="1">1</option>
<option value="{$numero}">{$numero}</option>
<xen:else />
<option value="1">1</option>
<option value="2">2</option>
</xen:if>
[S]</optgroup>[/S]
</select>
[S]{$user.numero}[/S]
<input type="hidden" name="$player_id" value="{$user.id}" /><br />
</xen:foreach>
<input type="submit" value="{xen:phrase save}" class="button primary" accesskey="s" />
<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
</form>
Insertar CODE, HTML o PHP:
$settings = $this->_input->filter(array(
'id' => array(XenForo_Input::UINT, 'array' => true),
'numero' => XenForo_Input::STRING)
));
Mira a ver si así.
Salud2