Welcome Guest, Not a member yet? Register   Sign In
Discontinued
#62

[eluser]steward[/eluser]
Hey this is very cool.

Only I don't want my table prefix in the controller names and so forth.

So I changed your list of links for each table into a form, with a checkbox for each table name, and some extra fields for what I want to name my stuff.


Code:
function_select()
{
...
        $this->load->helper('form');
        $rows='';
        foreach ($tables as $table)
        {
            $rows .= form_checkbox(
                                array(
                                'name'    => 'NAMETABLE',
                              'value'   => $table,
                                'checked' => FALSE,
                                'style'   => ''
                                ) );
            $rows .= " $table<BR />\n";
        }
        $form='';
        $form .= form_open('generate/ProcessTable/process');
        $form .= $rows;
        $form .= form_input('gen[NAMEMODEL]', 'MyModel');
        $form .= "<BR />\n";
        $form .= form_input('gen[NAMEVIEW]', 'MyView');
        $form .= "<BR />\n";
        $form .= form_input('gen[NAMECONTROLLER]', 'MyController');
        $form .= "<BR />\n";
        $form .= form_submit('submit','gen');
        $form .= form_close();
        echo $form;
    }

    function ProcessTable ( $table_name )
    {
        $table_name    = $this->input->get_post('NAMETABLE');
        $gen                = $this->input->get_post('gen');

$name_controller     = ucfirst( strtolower( $gen['NAMECONTROLLER'] ) );
$name_view                = ucfirst( strtolower( $gen['NAMEVIEW'] ) );
$name_model                = ucfirst( strtolower( $gen['NAMEMODEL'] ) );
$name_model_lower    = strtolower( $name_model );

echo '<PRE>';
print_r($gen);
echo '</PRE>';
echo "<BR>table_name=$table_name";
echo "<BR>name_controller=$name_controller";
echo "<BR>name_model=$name_model";
echo "<BR>name_view=$name_view";
die('<P>end');

... you have doubled up "$table_name" to also be the controller name etc.

In the next release, if you set those variables at the top of the ProcessTable() function, and separate out the subsitutions for table_name from NAMECONTROLLER etc, then we can modify it to suit our needs faster. As it is, we sorta gotta hunt through your code.

Also needs some documentation, maybe just a little more blurb on the welcome page.

Ie:

Look in the /templates folder to see create your own output.
The following substitutions are made during generation:

%FIELDS_ID%
%FIELDS_STRING%
%MODEL_CALL%
%NAME_CONTROLLER%
%NAME_MODEL%
%NAME_MODEL_LOWER%
%NAME_VIEW_FORM%
%SET_RULES%
%SET_VALUE%
%TABLE_NAME%
%VALIDATION_FALSE%
%VALIDATION_TRUE%
%VALUES_INIT%
%VALUES_INIT_EDIT%

It's a great idea and a good start. Thanks!


Messages In This Thread
Discontinued - by El Forum - 05-01-2009, 11:46 AM
Discontinued - by El Forum - 05-02-2009, 09:38 AM
Discontinued - by El Forum - 05-02-2009, 09:39 AM
Discontinued - by El Forum - 05-02-2009, 10:09 AM
Discontinued - by El Forum - 05-02-2009, 10:12 AM
Discontinued - by El Forum - 05-02-2009, 10:36 AM
Discontinued - by El Forum - 05-02-2009, 10:42 AM
Discontinued - by El Forum - 05-02-2009, 02:40 PM
Discontinued - by El Forum - 05-02-2009, 02:44 PM
Discontinued - by El Forum - 05-02-2009, 03:12 PM
Discontinued - by El Forum - 05-02-2009, 03:14 PM
Discontinued - by El Forum - 05-02-2009, 03:41 PM
Discontinued - by El Forum - 05-03-2009, 01:24 PM
Discontinued - by El Forum - 05-03-2009, 01:28 PM
Discontinued - by El Forum - 05-03-2009, 01:48 PM
Discontinued - by El Forum - 05-03-2009, 02:11 PM
Discontinued - by El Forum - 05-03-2009, 02:19 PM
Discontinued - by El Forum - 05-03-2009, 02:23 PM
Discontinued - by El Forum - 05-03-2009, 02:28 PM
Discontinued - by El Forum - 05-03-2009, 02:30 PM
Discontinued - by El Forum - 05-03-2009, 02:35 PM
Discontinued - by El Forum - 05-03-2009, 02:36 PM
Discontinued - by El Forum - 05-03-2009, 02:40 PM
Discontinued - by El Forum - 05-03-2009, 02:50 PM
Discontinued - by El Forum - 05-03-2009, 02:53 PM
Discontinued - by El Forum - 05-03-2009, 02:54 PM
Discontinued - by El Forum - 05-03-2009, 03:00 PM
Discontinued - by El Forum - 05-03-2009, 03:06 PM
Discontinued - by El Forum - 05-03-2009, 03:06 PM
Discontinued - by El Forum - 05-03-2009, 03:07 PM
Discontinued - by El Forum - 05-03-2009, 04:04 PM
Discontinued - by El Forum - 05-04-2009, 02:58 PM
Discontinued - by El Forum - 05-04-2009, 03:04 PM
Discontinued - by El Forum - 05-04-2009, 03:07 PM
Discontinued - by El Forum - 05-04-2009, 03:15 PM
Discontinued - by El Forum - 05-04-2009, 03:16 PM
Discontinued - by El Forum - 05-04-2009, 03:20 PM
Discontinued - by El Forum - 05-05-2009, 05:22 AM
Discontinued - by El Forum - 05-05-2009, 08:28 AM
Discontinued - by El Forum - 05-05-2009, 08:34 AM
Discontinued - by El Forum - 05-05-2009, 08:45 AM
Discontinued - by El Forum - 05-05-2009, 08:50 AM
Discontinued - by El Forum - 05-05-2009, 10:03 AM
Discontinued - by El Forum - 05-05-2009, 12:29 PM
Discontinued - by El Forum - 05-05-2009, 12:40 PM
Discontinued - by El Forum - 05-05-2009, 01:00 PM
Discontinued - by El Forum - 05-05-2009, 01:05 PM
Discontinued - by El Forum - 05-05-2009, 01:10 PM
Discontinued - by El Forum - 05-05-2009, 01:11 PM
Discontinued - by El Forum - 05-05-2009, 02:50 PM
Discontinued - by El Forum - 05-05-2009, 02:56 PM
Discontinued - by El Forum - 05-05-2009, 02:57 PM
Discontinued - by El Forum - 05-05-2009, 03:25 PM
Discontinued - by El Forum - 05-05-2009, 03:33 PM
Discontinued - by El Forum - 05-05-2009, 03:49 PM
Discontinued - by El Forum - 05-05-2009, 04:01 PM
Discontinued - by El Forum - 05-05-2009, 04:09 PM
Discontinued - by El Forum - 05-05-2009, 05:07 PM
Discontinued - by El Forum - 05-06-2009, 05:24 AM
Discontinued - by El Forum - 05-06-2009, 08:43 AM
Discontinued - by El Forum - 05-06-2009, 08:44 AM
Discontinued - by El Forum - 05-08-2009, 07:26 PM
Discontinued - by El Forum - 05-08-2009, 11:47 PM
Discontinued - by El Forum - 05-09-2009, 10:00 AM
Discontinued - by El Forum - 05-09-2009, 12:58 PM
Discontinued - by El Forum - 05-09-2009, 01:01 PM
Discontinued - by El Forum - 05-11-2009, 09:30 AM
Discontinued - by El Forum - 05-11-2009, 09:34 AM
Discontinued - by El Forum - 05-14-2009, 01:04 AM
Discontinued - by El Forum - 05-14-2009, 04:34 PM
Discontinued - by El Forum - 05-24-2009, 09:49 AM
Discontinued - by El Forum - 05-24-2009, 11:21 AM
Discontinued - by El Forum - 06-29-2009, 09:06 PM
Discontinued - by El Forum - 06-30-2009, 01:20 AM
Discontinued - by El Forum - 07-03-2009, 08:57 PM
Discontinued - by El Forum - 07-04-2009, 07:11 AM
Discontinued - by El Forum - 08-02-2009, 05:26 PM
Discontinued - by El Forum - 08-21-2009, 11:51 PM
Discontinued - by El Forum - 08-26-2009, 04:01 AM
Discontinued - by El Forum - 08-30-2009, 07:58 PM
Discontinued - by El Forum - 09-25-2009, 04:12 AM
Discontinued - by El Forum - 10-10-2009, 04:10 PM
Discontinued - by El Forum - 10-11-2009, 06:51 AM
Discontinued - by El Forum - 10-18-2009, 06:26 AM
Discontinued - by El Forum - 10-18-2009, 06:58 AM
Discontinued - by El Forum - 10-18-2009, 07:02 AM
Discontinued - by El Forum - 12-07-2009, 03:05 AM
Discontinued - by El Forum - 12-07-2009, 03:35 AM
Discontinued - by El Forum - 12-07-2009, 03:44 AM
Discontinued - by El Forum - 01-19-2010, 11:33 AM
Discontinued - by El Forum - 03-19-2010, 10:09 PM
Discontinued - by El Forum - 03-19-2010, 10:10 PM
Discontinued - by El Forum - 07-19-2011, 07:00 AM
Discontinued - by El Forum - 07-19-2011, 07:46 AM
Discontinued - by El Forum - 07-19-2011, 01:02 PM
Discontinued - by El Forum - 07-19-2011, 01:05 PM
Discontinued - by El Forum - 07-19-2011, 02:18 PM
Discontinued - by El Forum - 10-30-2012, 09:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB