| Server IP : 91.134.83.25 / Your IP : 216.73.216.137 Web Server : Apache System : Linux plesk.serveurapc.fr 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64 User : marrasse ( 10057) PHP Version : 8.2.32 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/as-cp.fr/wpascp/wp-content/plugins/loco-translate/src/mvc/ |
Upload File : |
<?php
/**
*
*/
class Loco_mvc_HiddenFields extends Loco_mvc_ViewParams {
/**
* @internal
* Echo all hidden fields to output buffer
*/
public function _e(){
foreach( $this as $name => $value ){
echo '<input type="hidden" name="',$this->escape($name),'" value="',$this->escape($value),'" />';
}
}
/**
* Add a nonce field
* @param string $action action passed to wp_create_nonce
*/
public function setNonce( string $action ):self {
$this['loco-nonce'] = wp_create_nonce( $action );
return $this;
}
/**
* Get the nonce field, assuming set
*/
public function getNonce():string {
return $this['loco-nonce'] ?? '';
}
/**
* Load postdata fields
*/
public function addPost( Loco_mvc_PostParams $post ):self {
foreach( $post->getSerial() as $pair ){
$this[ $pair[0] ] = $pair[1] ?? '';
}
return $this;
}
/**
* Append arguments to a URL
* @param string $base optional base url
* @return string full URL with query string
*/
public function getHref( string $base = '' ):string {
$query = http_build_query($this->getArrayCopy());
$sep = false === strpos($base,'?') ? '?' : '&';
return $base.$sep.$query;
}
}