Line 21... |
Line 21... |
21 |
class Saisie extends WidgetCommun {
|
21 |
class Saisie extends WidgetCommun {
|
Line 22... |
Line 22... |
22 |
|
22 |
|
23 |
const DS = DIRECTORY_SEPARATOR;
|
23 |
const DS = DIRECTORY_SEPARATOR;
|
24 |
const PROJET_DEFAUT = 'defaut';
|
24 |
const PROJET_DEFAUT = 'defaut';
|
- |
|
25 |
const WS_SAISIE = 'CelWidgetSaisie';
|
25 |
const WS_SAISIE = 'CelWidgetSaisie';
|
26 |
const WS_UPLOAD = 'CelWidgetUploadImageTemp';
|
26 |
const WS_OBS = 'CelObs';
|
27 |
const WS_OBS = 'CelObs';
|
27 |
const WS_NOM = 'noms';
|
28 |
const WS_NOM = 'noms';
|
28 |
private $NS_PROJET_VERSION = '1.01';
|
29 |
private $NS_PROJET_VERSION = '1.01';
|
29 |
const EFLORE_API_VERSION = '0.1';
|
30 |
const EFLORE_API_VERSION = '0.1';
|
Line 105... |
Line 106... |
105 |
$widget['squelette'] = $this->projet;
|
106 |
$widget['squelette'] = $this->projet;
|
106 |
$widget['donnees'] = array();
|
107 |
$widget['donnees'] = array();
|
107 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
108 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
108 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
109 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
109 |
$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
|
110 |
$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
|
- |
|
111 |
$widget['donnees']['url_ws_upload'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_UPLOAD);
|
110 |
$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
|
112 |
$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
|
Line 111... |
Line 113... |
111 |
|
113 |
|
112 |
|
114 |
|