summaryrefslogblamecommitdiffstats
path: root/public/settergetter.php
blob: 42cda1637b8843427540c21909ab62df0b2d2e14 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
     

                                                     










                                                                          



                                  
                                                      
   






                                                            
 

                                                 
 

                         
                                       


                                                     

 
      










                                                             

 
<?php
/*
 * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
* This program is free software distributed under the GPL version 2.
* See http://gpl.openslx.org/
*
* If you have any feedback please consult http://feedback.openslx.org/ and
* send your suggestions, praise, or complaints to feedback@openslx.org
*
* General information about OpenSLX can be found at http://openslx.org/
*/
function print_a($v) {
  echo"<pre style='background-color:#FFCC33'>"; print_r($v); echo"</pre>";
}
function setget($name) {
  $withdash = $name;
  $withoutdash = substr($name, 1);
  return
  '	public function get'.ucfirst($withoutdash).'()
  {
  return $this->'.$withdash.';
}
public function set'.ucfirst($withoutdash).'($'.$withdash.')
{
$this->'.$withdash.' = $'.$withdash.';
}
';
}
if(isset($_POST['submit'])) {
  $ar = explode("\n", trim($_POST['variables']));

  $output = "";
  foreach($ar as $item) {
    $output .= setget("_".trim($item));
  }
  print_a($output);
  echo "<a href='".$_SERVER['PHP_SELF']."'>back</a>";
}

else {
  ?>
  
  Jeweils ein Variablenname pro Zeile :
  <br>
  <form method='post' action='<?php $_SERVER['PHP_SELF'];?>'>
  	<textarea name='variables'>
                                        </textarea>
  	<br> <input type='submit' name='submit'
  		value='setter und getter generieren'>
  </form>
  <?php
}