Part of the EllisLab Network
   
1 of 9
1
iScaffold v1.1 - CRUD Generator
Posted: 01 May 2009 11:46 AM   [ Ignore ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008

Hello friends,

This tool will generate the Controller Model and View from a given table.
I tried to be as generic as possible so this should work for everybody.

This is an updated release, it should work out of the box. Just put it into your htdocs/www
directory and configure the database.php file.

Info
1. After you download extract the content to your htdocs directory.
2. Change the config/database.php and enter the details of the database,
you want to generate.
3. Generate the code with the app.
4. Your code is ready at /output

If you want to change the output or put your styling in it, you have to
change the files located at /templates directory to fit it your own needs.

Have fun! smile
- Ömür & Yorick


Download
iScaffold v1.1 - Download
iScaffold @ Goole Code

Feel free to report issues our your feature requests in the google code project page too.
Issue/Feature request

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
Posted: 02 May 2009 09:38 AM   [ Ignore ]   [ # 1 ]  
Summer Student
Avatar
Total Posts:  11
Joined  10-27-2008

Hi, I am using Codeigniter 1.7.1 in Windows XP with XAMPP. You code takes me to the welcome page, but after I click the hyper link in the bottom, I am getting 404 page not found error.

Please help me here

Regards
Narayanan

Profile
 
 
Posted: 02 May 2009 09:39 AM   [ Ignore ]   [ # 2 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008

hello, its probberly the issue with .htaccess file.

OK please RE DOWNLOAD the package. Now it has no
htaccess file and is also configured to work out of the box.

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
Posted: 02 May 2009 10:09 AM   [ Ignore ]   [ # 3 ]  
Grad Student
Avatar
Rank
Total Posts:  67
Joined  12-12-2007

Good works, congratulations Herr Kaleun! Your application is useful for newbies and experienced users. I hope you shall develop this application much better.

Thanks.

 Signature 

audentis fortuna iuvat
CodeIgniter Turkey

Profile
 
 
Posted: 02 May 2009 10:12 AM   [ Ignore ]   [ # 4 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008
fatigue - 02 May 2009 10:09 AM

Good works, congratulations Herr Kaleun! Your application is useful for newbies and experienced users. I hope you shall develop this application much better.

Thanks.

Thank you very much smile
I want to develop it into a full blown application manager program.
Lets see what the time will bring us raspberry

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
Posted: 02 May 2009 10:36 AM   [ Ignore ]   [ # 5 ]  
Summer Student
Avatar
Total Posts:  11
Joined  10-27-2008

Fantastic! It worked now. Good Job. I am waiting to see a full blown application manager program.

Regards
Narayanan

Profile
 
 
Posted: 02 May 2009 10:42 AM   [ Ignore ]   [ # 6 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008

im happy that you liked it smile
i hope it will find good use among all users.

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
Posted: 02 May 2009 02:40 PM   [ Ignore ]   [ # 7 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  590
Joined  05-02-2009

I just tried your app and I have to say, wow! It works out pretty well, with the exception of the shitty English wink

However I was wondering, when I take a look at the generated controller for a table A LOT of functions popup, for example the following:

function enroll( )
    
{
        $data_enroll
= $this->model_users->enroll_users( );
        
//$data['data_enroll'] = $data_enroll;
        
        
echo '<pre>';
        
print_r( $data_enroll );
        echo
'</pre>';
        
        echo
anchor( 'Users/create', 'Create New' );        
    
}

I’m not really sure what it does, but it might just be because I’m relatively new to CI smile

 Signature 

READ THE USERMANUAL BEFORE POSTING ON THE FORUM
http://www.yorickpeterse.com/

Profile
 
 
Posted: 02 May 2009 02:44 PM   [ Ignore ]   [ # 8 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008
Yorick Peterse - 02 May 2009 02:40 PM

I just tried your app and I have to say, wow! It works out pretty well, with the exception of the shitty English wink

However I was wondering, when I take a look at the generated controller for a table A LOT of functions popup, for example the following:

function enroll( )
    
{
        $data_enroll
= $this->model_users->enroll_users( );
        
//$data['data_enroll'] = $data_enroll;
        
        
echo '<pre>';
        
print_r( $data_enroll );
        echo
'</pre>';
        
        echo
anchor( 'Users/create', 'Create New' );        
    
}

I’m not really sure what it does, but it might just be because I’m relatively new to CI smile

Thank you and apologies smile
I’m a native german and turkish speaker, english is kinda ok and japanese is on the way, i try
to give my best smile

good question, you cant use the word list as a (controller) function name because there is
a NASTY name conflict with PHP. So i used enroll.
That displays the info of the entire table, symbolic for ‘list’

i hope it is of use to you smile

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
Posted: 02 May 2009 03:12 PM   [ Ignore ]   [ # 9 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  590
Joined  05-02-2009
herrkaleun - 02 May 2009 02:44 PM
Yorick Peterse - 02 May 2009 02:40 PM

I just tried your app and I have to say, wow! It works out pretty well, with the exception of the shitty English wink

However I was wondering, when I take a look at the generated controller for a table A LOT of functions popup, for example the following:

function enroll( )
    
{
        $data_enroll
= $this->model_users->enroll_users( );
        
//$data['data_enroll'] = $data_enroll;
        
        
echo '<pre>';
        
print_r( $data_enroll );
        echo
'</pre>';
        
        echo
anchor( 'Users/create', 'Create New' );        
    
}

I’m not really sure what it does, but it might just be because I’m relatively new to CI smile

Thank you and apologies smile
I’m a native german and turkish speaker, english is kinda ok and japanese is on the way, i try
to give my best smile

good question, you cant use the word list as a (controller) function name because there is
a NASTY name conflict with PHP. So i used enroll.
That displays the info of the entire table, symbolic for ‘list’

i hope it is of use to you smile

Aah ok, now I understand. If you want I can translate the application into both Dutch and English as I am capable of reading german (though I can’t speak it).

 Signature 

READ THE USERMANUAL BEFORE POSTING ON THE FORUM
http://www.yorickpeterse.com/

Profile
 
 
Posted: 02 May 2009 03:14 PM   [ Ignore ]   [ # 10 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  283
Joined  05-08-2008

sure smile
it would be cool if we make that in the final release smile
i definitely keep that in mind smile

 Signature 

mit freundlichen Grüßen, Herr Kaleun

iScaffold - Check this out, it saves time smile

Profile
 
 
   
1 of 9
1
 
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 819, on March 11, 2010 10:15 AM
Total Registered Members: 119469 Total Logged-in Users: 23
Total Topics: 125732 Total Anonymous Users: 1
Total Replies: 661658 Total Guests: 364
Total Posts: 787390    
Members ( View Memberlist )