2007-10-16 17:12:48 +00:00
|
|
|
<?php
|
|
|
|
|
2007-10-16 23:02:13 +00:00
|
|
|
require_once("../inc/bossa_db.inc");
|
2007-10-16 17:12:48 +00:00
|
|
|
|
|
|
|
// Set up Bossa applications.
|
|
|
|
// Customize and rename this file.
|
|
|
|
|
2007-10-16 23:02:13 +00:00
|
|
|
$ba = new BossaApp();
|
2007-10-16 17:12:48 +00:00
|
|
|
$ba->name = 'bossa_test';
|
|
|
|
$ba->user_friendly_name = 'Simple pattern recognition';
|
2007-10-16 23:02:13 +00:00
|
|
|
$ba->start_url = 'bossa_example.php';
|
2007-10-16 17:12:48 +00:00
|
|
|
|
2007-10-16 23:02:13 +00:00
|
|
|
if ($ba->insert($ba)) {
|
|
|
|
echo "Added application '$ba->name'\n";
|
2007-10-16 17:12:48 +00:00
|
|
|
} else {
|
2007-10-16 23:02:13 +00:00
|
|
|
echo "Couldn't add '$ba->name': ", mysql_error(), "\n";
|
2007-10-16 17:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|