Skip to content
Snippets Groups Projects
Commit a33d0d20 authored by goujonpa's avatar goujonpa
Browse files

phonefield

parent 082dc40e
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,13 @@
class Client extends Personne
{
public $_specialFields = array(
"num_tel" => array(
"t" => "PhoneField",
"label" => "Numero de telephone",
));
protected $num_tel;
public function num_tel()
......@@ -13,4 +20,5 @@ class Client extends Personne
{
$this->num_tel = $num_tel;
}
}
\ No newline at end of file
......@@ -25,4 +25,13 @@ class PhoneField extends Field
return false;
}
public function show() {
$num = $this->value;
$html = "";
for($i = 0; i < 5; i++) {
$html += substr($num, 2*$i, 2);
$html += ".";
}
return $html;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment