me,myself,english and programming..

ATK Framework – Introduction

What is ATK?

ATK is a special purpose framework, targeted at business applications. It allows you to build an application with very small amounts of code.

intro

 

 

 

 

 

 

 

 

Imagine if you can write code like this.

  class kelas extends atkNode
  {
    function kelas()
    {
      $this->atkNode($this->node);
      $this->add(new atkAttribute("kelas_id", AF_AUTOKEY));
      $this->add(new atkAttribute("nama_kelas",AF_SEARCHABLE|AF_OBLIGATORY));
      $this->setTable("tblkelas");
    }
  }

and the result will be something like below with all the CRUD functionality.

sample-kelas

 

 

 

 

 

 

 

 

it’s very great right ? yes..it is.

Till then..happy coding.

p/s : Sorry if I cannot entertain/answer all the question that you guys/gals post. My life is not going smoothly this year. I hope next year will be better. InsyaAllah….

Post a Comment