menu.php 276 B

1234567891011121314151617
  1. <?php
  2. class Menu extends Controller{
  3. function main()
  4. {
  5. if(method::post('popup')){
  6. $this->yonetim->menu_name_save(method::post());
  7. }
  8. if(method::post('yazi_submit')){
  9. output(method::post());
  10. }
  11. import::view('menu');
  12. }
  13. }