Quote:
Originally Posted by KirbyDE
What do you mean with "autosubmit"?
|
Where the install script (my code) inserts templates/phrases so the user doesnt have to.
PHP Code:
function create_phrase($phrase)
{
global $downloads, $db;
$db->query_write("INSERT INTO `phrase` (`languageid`,`varname`,`text`,`phrasetypeid`,`product`) VALUES(".
prep($downloads['phrase'][$phrase]['languageid']).",".
prep($downloads['phrase'][$phrase]['varname']).",".
prep($downloads['phrase'][$phrase]['text']).",".
prep($downloads['phrase'][$phrase]['phrasetypeid']).",".
prep($downloads['phrase'][$phrase]['product']).")");
}
PHP Code:
function create_template($template)
{
global $downloads, $db;
$db->query_write("INSERT INTO `template` (`styleid`,`title`,`template`,`template_un`,`dateline`,`username`,`product`) VALUES(".
prep(-1).",".
prep($template).",".
prep($downloads['template'][$template]).",".
prep($downloads['template'][$template]).",".
prep(TIMENOW).",".
prep('Ronin').",".
prep($downloads['product']).")");
}
But btw, I do rebuild styles and languages after editing, and ... yea - i think i explained the rest.