protected function __construct()
 {
     require_once MOOJON_DIRECTORY . '/classes/moojon.exception.class.php';
     require_once MOOJON_DIRECTORY . '/classes/moojon.config.class.php';
     require_once MOOJON_DIRECTORY . '/classes/moojon.files.class.php';
     require_once MOOJON_DIRECTORY . '/classes/moojon.paths.class.php';
     require_once MOOJON_DIRECTORY . '/classes/moojon.base.cli.class.php';
     require_once MOOJON_DIRECTORY . '/classes/moojon.cli.class.php';
     require_once MOOJON_DIRECTORY . '/functions/moojon.core.functions.php';
     switch (strtoupper(UI)) {
         case 'CGI':
             ini_set('memory_limit', '256M');
             $uri = moojon_uri::get_uri();
             moojon_config::update(moojon_paths::get_project_config_environment_app_directory(ENVIRONMENT, APP));
             echo self::render_app($uri);
             break;
         case 'CLI':
             moojon_config::get_data();
             $cli_class = CLI;
             new $cli_class();
             break;
         default:
             throw new moojon_exception('Invalid UI (' . UI . ')');
             break;
     }
 }
 protected static function factory($class)
 {
     if (!self::$instance) {
         self::$instance = new $class();
     }
     return self::$instance;
 }
 private static function get_security()
 {
     $security_class = moojon_config::get('security_class');
     $security = new $security_class();
     if (!is_subclass_of($security, 'moojon_base_security')) {
         throw new moojon_exception('Invalid security class (' . get_class($security) . ')');
     }
     return $security;
 }
 public static function destroy()
 {
     $security_token = self::get_security_token();
     $security_token_key = moojon_config::get('security_token_key');
     moojon_session::set($security_token_key, null);
     moojon_cookie::set($security_token_key, null);
     moojon_request::set(moojon_config::get('security_identity_key'), null);
     moojon_request::set(moojon_config::get('security_password_key'), null);
 }
 public function __construct()
 {
     $this->mix = "=-moojon_mix_" . md5(uniqid(rand()));
     $this->rel = "=-moojon_rel_" . md5(uniqid(rand()));
     $this->alt = "=-moojon_alt_" . md5(uniqid(rand()));
     $this->charset = moojon_config::get('charset');
     $this->subject = moojon_config::get('mail_subject');
     $this->email = moojon_config::get('from_mail_email');
     $this->name = moojon_config::get('from_mail_name');
     $this->from = $this->name . ' <' . $this->email . '>';
 }
 protected function __construct()
 {
     $flash_key = moojon_config::get('flash_key');
     if (!($data = moojon_session::get_or_null($flash_key))) {
         $data = array();
     }
     if (!is_array($data)) {
         $data = array($data);
     }
     moojon_session::set($flash_key, array());
     $this->data = $data;
 }
function exception_handler(Exception $exception)
{
    if (!is_subclass_of($exception, 'moojon_exception')) {
        $message = $exception->getMessage() ? $exception->getMessage() : 'No message available for exception';
        $code = $exception->getCode() ? $exception->getCode() : -1;
        $file = $exception->getFile() ? $exception->getFile() : 'Unable to determine file';
        $line = $exception->getLine() ? $exception->getLine() : -1;
        $exception = new moojon_exception($message, 0, 0, $file, $line);
    }
    $exception_handler_class = moojon_config::get('exception_handler_class');
    new $exception_handler_class($exception);
}
 public static function show_tables($where = null)
 {
     $return = array();
     $table_name_column = 'Tables_in_' . moojon_config::get('db_dbname');
     if ($where === null) {
         $where = " WHERE {$table_name_column} != 'schema_migrations'";
     }
     foreach (moojon_db::run(moojon_db::prepare("SHOW TABLES {$where};")) as $table) {
         $return[] = $table[$table_name_column];
     }
     return $return;
 }
 protected static final function get_security_token($key = null)
 {
     if (!$key) {
         $key = moojon_config::get('security_token_key');
     }
     if (moojon_cookie::has($key)) {
         return moojon_cookie::get($key);
     } elseif (moojon_session::has($key)) {
         return moojon_session::get($key);
     } else {
         return false;
     }
 }
function helpers()
{
    $helpers = array();
    if (moojon_config::has('helpers')) {
        $helpers = explode(', ', moojon_config::get('helpers'));
    }
    foreach (explode(', ', moojon_config::get('default_helpers')) as $helper) {
        if (!in_array($helper, $helpers)) {
            $helpers[] = $helper;
        }
    }
    return $helpers;
}
Exemple #11
0
 public function run($arguments)
 {
     if (!count($arguments)) {
         echo 'Moojon version: ' . MOOJON_VERSION . "\n";
     } else {
         $arguments = self::check_arguments('moojon_cli::run()', 4, $arguments);
         $this->try_define('PROJECT_DIRECTORY', $_SERVER['PWD'] . '/' . $this->prompt_until($arguments[0], 'Please enter a project name') . '/');
         $app = $this->prompt_until($arguments[1], 'Please enter an app name', moojon_config::get('default_app'));
         $controller = $this->prompt_until($arguments[2], 'Please enter a controller name', moojon_config::get('default_controller'));
         $action = $this->prompt_until($arguments[3], 'Please enter an action name', moojon_config::get('default_action'));
         moojon_files::attempt_mkdir(PROJECT_DIRECTORY);
         moojon_generator::project($app, $controller, $action);
     }
 }
 public final function set_location($uri)
 {
     $uri = moojon_uri::clean_uri($uri);
     $route_match = moojon_routes::map($uri);
     $data = $route_match->get_params();
     $this->app_name = $data['app'];
     $this->controller_name = $data['controller'];
     $this->action_name = $data['action'];
     if (self::get_app_class($this->app_name) != get_class($this)) {
         $location = moojon_config::get('index_file') . $uri;
         $this->redirect($location);
     }
     $this->set_controller();
 }
 protected function init()
 {
     $this->actions = array_key_exists('actions', $this->params) ? $this->params['actions'] : array('index', '_new', 'show', 'edit', 'delete', 'update', 'create', 'destroy');
     $this->resource = moojon_inflect::pluralize($this->pattern);
     $this->params['resource'] = $this->resource;
     $this->app = array_key_exists('app', $this->params) ? $this->params['app'] : moojon_config::get_or_null('default_app');
     $this->params['app'] = $this->app;
     $this->params['controller'] = array_key_exists('controller', $this->params) ? $this->params['controller'] : $this->resource;
     $this->id_property = array_key_exists('id_property', $this->params) ? $this->params['id_property'] : moojon_primary_key::NAME;
     $this->method = strtolower(moojon_server::method());
     $this->custom_collection_routes = array_key_exists('custom_collection_routes', $this->params) ? $this->params['custom_collection_routes'] : array();
     $this->custom_member_routes = array_key_exists('custom_member_routes', $this->params) ? $this->params['custom_member_routes'] : array();
     $model_class = moojon_inflect::singularize($this->pattern);
     $model = new $model_class();
     $this->relationship_routes = $model->get_relationship_names();
 }
 protected static function post_set($key, $value = null, $data = null)
 {
     if ($value !== null) {
         $_COOKIE[$key] = $value;
         if (moojon_config::has('cookie_expiry')) {
             if (is_int(moojon_config::get('cookie_expiry'))) {
                 $cookie_expiry = time() + moojon_config::get('cookie_expiry');
             } else {
                 throw new moojon_exception('cookie_expiry must be an integer (' . moojon_config::get('cookie_expiry') . ')');
             }
         }
         setcookie($key, $value, $cookie_expiry, '/');
     } else {
         $_COOKIE[$key] = null;
         setcookie($key, null, -1, '/');
         unset($_COOKIE[$key]);
     }
 }
Exemple #15
0
 public static function expired($path, $absolute = false, $cache_for = null)
 {
     if (!$cache_for) {
         $cache_for = moojon_config::get('cache_for');
     }
     if (!$absolute) {
         $path = moojon_paths::get_cache_path($path);
     }
     if (file_exists($path)) {
         if (time() > filectime($path) + $cache_for) {
             moojon_files::unlink($path);
             return true;
         } else {
             return false;
         }
     } else {
         return true;
     }
 }
 protected function run(moojon_exception $exception)
 {
     switch (UI) {
         case 'CGI':
             $app = moojon_runner::app_from_uri(moojon_config::get('exception_app') . '/' . moojon_config::get('exception_controller') . '/' . moojon_config::get('exception_action'));
             if (ENVIRONMENT != 'development' && moojon_config::get('exception_mail')) {
                 $mailer = new moojon_mailer();
                 $mailer->set_from(moojon_config::get('from_mail_email'), moojon_config::get('from_mail_name'));
                 $mailer->set_to(moojon_config::get('webmaster_mail_email'), moojon_config::get('webmaster_mail_name'));
                 $mailer->set_subject(moojon_config::get('exception_mail_subject'));
                 $mailer->set_html($exception);
                 $mailer->send();
             }
             echo $app->render();
             break;
         case 'CLI':
             echo $this->exception;
             break;
     }
 }
 public function run($arguments)
 {
     $command = $this->prompt_until_in(array_shift($arguments), $this->get_commands(), 'What would you like to generate?');
     switch ($command) {
         case 'model':
             $tables = moojon_db::show_tables();
             if (!count($tables)) {
                 throw new moojon_exception('No tables to generate models from');
             }
             $arguments = self::check_arguments('moojon_generate_cli::model()', 1, $arguments);
             $table = $this->prompt_until_in($arguments[0], $tables, 'What table would you like to generate a model for?');
             moojon_generator::model($table);
             break;
         case 'models':
             $arguments = self::check_arguments('moojon_generate_cli::models()', 0, $arguments);
             moojon_generator::models();
             break;
         case 'migration':
             $arguments = self::check_arguments('moojon_generate_cli::migration()', 1, $arguments);
             $migration = $this->prompt_until($arguments[0], 'Please enter a migration name');
             moojon_generator::migration($migration);
             break;
         case 'app':
             $arguments = self::check_arguments('moojon_generate_cli::app()', 3, $arguments);
             $app = $this->prompt_until($arguments[0], 'Please enter an app name');
             $controller = $this->prompt_until($arguments[1], 'Please enter an app name', moojon_config::get('default_controller'));
             $action = $this->prompt_until($arguments[2], 'Please enter an action name', moojon_config::get('default_action'));
             moojon_generator::app($app, $controller, $action);
             break;
         case 'controller':
             $arguments = self::check_arguments('moojon_generate_cli::controller()', 3, $arguments);
             $app = $this->prompt_for_app($arguments[0]);
             $controller = $this->prompt_until($arguments[1], 'Please enter a controller name');
             $action = $this->prompt_until($arguments[2], 'Please enter an action name', 'index');
             moojon_generator::controller($app, $controller, $action);
             break;
         case 'helper':
             $arguments = self::check_arguments('moojon_generate_cli::helper()', 1, $arguments);
             $helper = $this->prompt_until($arguments[0], 'Please enter a name for this helper');
             moojon_generator::helper($helper);
             break;
         case 'layout':
             $arguments = self::check_arguments('moojon_generate_cli::layout()', 1, $arguments);
             $layout = $this->prompt_until($arguments[0], 'Please enter a layout name');
             moojon_generator::layout($layout);
             break;
         case 'view':
             $arguments = self::check_arguments('moojon_generate_cli::view()', 3, $arguments);
             $app = $this->prompt_for_app($arguments[0]);
             $controller = $this->prompt_for_controller($app, $arguments[1]);
             $view = $this->prompt_until($arguments[2], 'Please enter a view name');
             moojon_generator::view($app, $controller, $view);
             break;
         case 'partial':
             $arguments = self::check_arguments('moojon_generate_cli::partial()', 3, $arguments);
             $app = $this->prompt_for_app($arguments[0]);
             $controller = $this->prompt_for_controller($app, $arguments[1]);
             $partial = $this->prompt_until($arguments[2], 'Please enter a name for this partial');
             moojon_generator::partial($app, $controller, $partial);
             break;
         case 'scaffold':
             $arguments = self::check_arguments('moojon_generate_cli::scaffold()', 3, $arguments);
             $app = $this->prompt_for_app($arguments[0]);
             $models = array();
             foreach (moojon_files::directory_files(moojon_paths::get_project_models_directory()) as $path) {
                 $models[] = basename($path);
             }
             if (!count($models)) {
                 if ($this->prompt_until_in(null, array('y', 'n'), 'No models found. Would you like to generate models?') == 'y') {
                     moojon_generator::models();
                 } else {
                     throw new moojon_exception('Unable to generate scaffold (no models)');
                 }
             }
             $model = $this->prompt_until_in($arguments[1], moojon_db::show_tables(), 'What model would you like to generate a scaffold for?');
             $controller = $this->prompt_until($arguments[2], 'Please enter a controller name', $model);
             moojon_generator::scaffold($app, $model, $controller);
             break;
     }
 }
Exemple #18
0
 public static function clean_uri($uri)
 {
     while (strpos($uri, '//')) {
         $uri = str_replace('//', '/', $uri);
     }
     if (substr($uri, 0, strlen($uri) - 1) != '/') {
         $uri .= '/';
     }
     $index_file = moojon_config::get('index_file');
     if (substr($uri, 0, strlen($index_file)) == $index_file) {
         $uri = substr($uri, strlen($index_file));
     }
     while (substr($uri, 0, 1) == '/') {
         $uri = substr($uri, 1);
     }
     if (substr($uri, strlen($uri) - 1) == '/') {
         $uri = substr($uri, 0, strlen($uri) - 1);
     }
     if (substr($uri, -1) == '/') {
         $uri = substr($uri, 0, strlen($uri) - 1);
     }
     if (strpos($uri, '?')) {
         $uri = substr($uri, 0, strpos($uri, '?'));
     }
     if (!$uri) {
         $uri = '/';
     }
     return $uri;
 }
 public final function save($cascade = false, $keys = array(), $data = array())
 {
     $saved = false;
     if ($this->validate($keys, $data)) {
         $placeholders = array();
         foreach ($this->get_editable_columns() as $column) {
             $column_name = $column->get_name();
             if ($column->get_unsaved()) {
                 $placeholders[$column_name] = ":{$column_name}";
             }
         }
         $id_property = moojon_primary_key::NAME;
         if ($this->new_record) {
             if ($this->has_column('created_on') && !$this->get_column('created_on')->get_unsaved()) {
                 $this->get_column('created_on')->set_value(date(moojon_config::get('datetime_format')));
                 $placeholders['created_on'] = ':created_on';
             }
             if (moojon_db::insert($this->table, $placeholders, $this->compile_param_values(), $this->compile_param_data_types())) {
                 if ($this->has_column($id_property)) {
                     $this->{$id_property} = moojon_db::last_insert_id($id_property);
                 }
                 $this->new_record = false;
                 $saved = true;
             }
         } else {
             $additional_param_values = array();
             if ($this->has_column($id_property)) {
                 $additional_param_values[$id_property] = $this->{$id_property};
                 $where = "{$id_property} = :{$id_property}";
             } else {
                 throw new moojon_exception('No id primary key available for update');
             }
             if ($this->get_unsaved()) {
                 if ($this->has_column('updated_at') && !$this->get_column('updated_at')->get_unsaved()) {
                     $this->get_column('updated_at')->set_value(date(moojon_config::get('datetime_format')));
                     $placeholders['updated_at'] = ':updated_at';
                     $additional_param_values['updated_at'] = $this->updated_at;
                 }
                 if (moojon_db::update($this->table, $placeholders, $where, $this->compile_param_values($additional_param_values), $this->compile_param_data_types())) {
                     $this->new_record = false;
                     $saved = true;
                 }
             }
         }
     }
     if ($saved) {
         $this->set_reset_values();
         $this->reset();
         if ($cascade) {
             foreach ($this->relationships as $relationship) {
                 $relationship->save(true);
             }
         }
     }
     return $saved;
 }
Exemple #20
0
 private function __construct()
 {
     $db_driver = moojon_config::get('db_driver');
     if (substr($db_driver, -1) == ':') {
         $db_driver = substr($db_driver, -1);
     }
     if (moojon_config::has('db_dsn')) {
         $db_dsn = moojon_config::get('db_dsn');
     } else {
         if (moojon_config::has('cli_db_dsn')) {
             $db_dsn = moojon_config::get('cli_db_dsn');
         } else {
             $keys = array();
             switch ($db_driver) {
                 case 'sybase':
                 case 'mssql':
                 case 'dblib':
                     $keys['host'] = 'db_host';
                     $keys['dbname'] = 'db_dbname';
                     $keys['charset'] = 'db_charset';
                     $keys['appname'] = 'db_appname';
                     $keys['secure'] = 'db_secure';
                     break;
                 case 'firebird':
                     $keys['dbname'] = 'db_dbname';
                     $keys['charset'] = 'db_charset';
                     $keys['role'] = 'db_role';
                     break;
                 case 'ibm':
                     $keys['database'] = 'db_database';
                     $keys['hostname'] = 'db_hostname';
                     $keys['port'] = 'db_port';
                     $keys['username'] = UI == 'CLI' ? 'cli_db_username' : 'db_username';
                     $keys['password'] = UI == 'CLI' ? 'cli_db_password' : 'db_password';
                     break;
                 case 'informix':
                 case 'sqlite':
                 case 'sqlite2':
                     throw new moojon_exception("db_driver ({$db_driver}) requires db_dsn config key");
                     break;
                 case 'mysql':
                     $keys['host'] = 'db_host';
                     $keys['port'] = 'db_port';
                     $keys['dbname'] = 'db_dbname';
                     $keys['unix_socket'] = 'db_unix_socket';
                     $keys['username'] = UI == 'CLI' ? 'cli_db_username' : 'db_username';
                     $keys['password'] = UI == 'CLI' ? 'cli_db_password' : 'db_password';
                     break;
                 case 'oci':
                     $keys['dbname'] = 'db_dbname';
                     $keys['charset'] = 'db_charset';
                     break;
                 case 'odbc':
                     $keys['dsn'] = 'db_dsn_name';
                     $keys['uid'] = UI == 'CLI' ? 'cli_db_uid' : 'db_uid';
                     $keys['pwd'] = UI == 'CLI' ? 'cli_db_pwd' : 'db_pwd';
                     break;
                 case 'pgsql':
                     $keys['host'] = 'db_host';
                     $keys['port'] = 'db_port';
                     $keys['dbname'] = 'db_dbname';
                     $keys['user'] = UI == 'CLI' ? 'cli_db_user' : 'db_user';
                     $keys['password'] = UI == 'CLI' ? 'cli_db_password' : 'db_password';
                     break;
                 case '4D':
                     $keys['host'] = 'db_host';
                     $keys['port'] = 'db_port';
                     $keys['dbname'] = 'db_dbname';
                     $keys['chars_set'] = 'db_chars_set';
                     break;
                 default:
                     throw new moojon_exception("Unsupported database driver ({$db_driver})");
                     break;
             }
             $db_dsn = '';
             foreach ($keys as $key => $value) {
                 if (moojon_config::has($value)) {
                     $db_dsn .= "{$key}=" . moojon_config::get($value) . ';';
                 }
             }
             $db_dsn = substr($db_dsn, 0, strlen($db_dsn) - 1);
         }
     }
     $db_username = moojon_config::get_or_null(moojon_config::get_or_null('username', $keys));
     $db_password = moojon_config::get_or_null(moojon_config::get_or_null('password', $keys));
     $db_driver_options = moojon_config::get_or_null('db_driver_options');
     $this->data = new PDO("{$db_driver}:{$db_dsn}", $db_username, $db_password, $db_driver_options);
     $this->data->setAttribute(self::ATTR_ERRMODE, self::ERRMODE_EXCEPTION);
 }
Exemple #21
0
function time_tag(moojon_base_model $model, moojon_base_column $column, $attributes = array())
{
    $attributes = try_set_name_and_id_attributes($attributes, $model, $column);
    $attributes['class'] = 'time';
    return datetime_label_select_options($attributes, moojon_config::get('time_format'), moojon_base::get_time($column->get_value()));
}
Exemple #22
0
 public static function get_mime_content_type($path)
 {
     //if (class_exists('finfo')) {
     if (1 == 2) {
         $mime_type_database_path = moojon_config::get('mime_type_database_path');
         $finfo = finfo_open(FILEINFO_MIME, $mime_type_database_path);
         if (!$finfo) {
             throw new moojon_exception("Opening fileinfo database failed ({$mime_type_database_path})");
         }
         $return = finfo_file($finfo, $path);
         finfo_close($finfo);
     } else {
         $pathinfo = pathinfo($path);
         $extension = array_key_exists('extension', $pathinfo) ? strtolower($pathinfo['extension']) : null;
         if (!$extension) {
             return false;
         } else {
             $mimes = array('3dm' => 'x-world/x-3dmf', '3dmf' => 'x-world/x-3dmf', 'a' => 'application/octet-stream', 'aab' => 'application/x-authorware-bin', 'aam' => 'application/x-authorware-map', 'aas' => 'application/x-authorware-seg', 'abc' => 'text/vnd.abc', 'acgi' => 'text/html', 'afl' => 'video/animaflex', 'ai' => 'application/postscript', 'aif' => 'audio/aiff', 'aif' => 'audio/x-aiff', 'aifc' => 'audio/aiff', 'aifc' => 'audio/x-aiff', 'aiff' => 'audio/aiff', 'aiff' => 'audio/x-aiff', 'aim' => 'application/x-aim', 'aip' => 'text/x-audiosoft-intra', 'ani' => 'application/x-navi-animation', 'aos' => 'application/x-nokia-9000-communicator-add-on-software', 'aps' => 'application/mime', 'arc' => 'application/octet-stream', 'arj' => 'application/arj', 'arj' => 'application/octet-stream', 'art' => 'image/x-jg', 'asf' => 'video/x-ms-asf', 'asm' => 'text/x-asm', 'asp' => 'text/asp', 'asx' => 'application/x-mplayer2', 'asx' => 'video/x-ms-asf', 'asx' => 'video/x-ms-asf-plugin', 'au' => 'audio/basic', 'au' => 'audio/x-au', 'avi' => 'application/x-troff-msvideo', 'avi' => 'video/avi', 'avi' => 'video/msvideo', 'avi' => 'video/x-msvideo', 'avs' => 'video/avs-video', 'bcpio' => 'application/x-bcpio', 'bin' => 'application/mac-binary', 'bin' => 'application/macbinary', 'bin' => 'application/octet-stream', 'bin' => 'application/x-binary', 'bin' => 'application/x-macbinary', 'bm' => 'image/bmp', 'bmp' => 'image/bmp', 'bmp' => 'image/x-windows-bmp', 'boo' => 'application/book', 'book' => 'application/book', 'boz' => 'application/x-bzip2', 'bsh' => 'application/x-bsh', 'bz' => 'application/x-bzip', 'bz2' => 'application/x-bzip2', 'c' => 'text/plain', 'c' => 'text/x-c', 'c++' => 'text/plain', 'cat' => 'application/vnd.ms-pki.seccat', 'cc' => 'text/plain', 'cc' => 'text/x-c', 'ccad' => 'application/clariscad', 'cco' => 'application/x-cocoa', 'cdf' => 'application/cdf', 'cdf' => 'application/x-cdf', 'cdf' => 'application/x-netcdf', 'cer' => 'application/pkix-cert', 'cer' => 'application/x-x509-ca-cert', 'cha' => 'application/x-chat', 'chat' => 'application/x-chat', 'class' => 'application/java', 'class' => 'application/java-byte-code', 'class' => 'application/x-java-class', 'com' => 'application/octet-stream', 'com' => 'text/plain', 'conf' => 'text/plain', 'cpio' => 'application/x-cpio', 'cpp' => 'text/x-c', 'cpt' => 'application/mac-compactpro', 'cpt' => 'application/x-compactpro', 'cpt' => 'application/x-cpt', 'crl' => 'application/pkcs-crl', 'crl' => 'application/pkix-crl', 'crt' => 'application/pkix-cert', 'crt' => 'application/x-x509-ca-cert', 'crt' => 'application/x-x509-user-cert', 'csh' => 'application/x-csh', 'csh' => 'text/x-script.csh', 'css' => 'application/x-pointplus', 'css' => 'text/css', 'cxx' => 'text/plain', 'dcr' => 'application/x-director', 'deepv' => 'application/x-deepv', 'def' => 'text/plain', 'der' => 'application/x-x509-ca-cert', 'dif' => 'video/x-dv', 'dir' => 'application/x-director', 'dl' => 'video/dl', 'dl' => 'video/x-dl', 'doc' => 'application/msword', 'dot' => 'application/msword', 'dp' => 'application/commonground', 'drw' => 'application/drafting', 'dump' => 'application/octet-stream', 'dv' => 'video/x-dv', 'dvi' => 'application/x-dvi', 'dwf' => 'drawing/x-dwf (old)', 'dwf' => 'model/vnd.dwf', 'dwg' => 'application/acad', 'dwg' => 'image/vnd.dwg', 'dwg' => 'image/x-dwg', 'dxf' => 'application/dxf', 'dxf' => 'image/vnd.dwg', 'dxf' => 'image/x-dwg', 'dxr' => 'application/x-director', 'el' => 'text/x-script.elisp', 'elc' => 'application/x-bytecode.elisp (compiled elisp)', 'elc' => 'application/x-elc', 'env' => 'application/x-envoy', 'eps' => 'application/postscript', 'es' => 'application/x-esrehber', 'etx' => 'text/x-setext', 'evy' => 'application/envoy', 'evy' => 'application/x-envoy', 'exe' => 'application/octet-stream', 'f' => 'text/plain', 'f' => 'text/x-fortran', 'f77' => 'text/x-fortran', 'f90' => 'text/plain', 'f90' => 'text/x-fortran', 'fdf' => 'application/vnd.fdf', 'fif' => 'application/fractals', 'fif' => 'image/fif', 'fli' => 'video/fli', 'fli' => 'video/x-fli', 'flo' => 'image/florian', 'flx' => 'text/vnd.fmi.flexstor', 'fmf' => 'video/x-atomic3d-feature', 'for' => 'text/plain', 'for' => 'text/x-fortran', 'fpx' => 'image/vnd.fpx', 'fpx' => 'image/vnd.net-fpx', 'frl' => 'application/freeloader', 'funk' => 'audio/make', 'g' => 'text/plain', 'g3' => 'image/g3fax', 'gif' => 'image/gif', 'gl' => 'video/gl', 'gl' => 'video/x-gl', 'gsd' => 'audio/x-gsm', 'gsm' => 'audio/x-gsm', 'gsp' => 'application/x-gsp', 'gss' => 'application/x-gss', 'gtar' => 'application/x-gtar', 'gz' => 'application/x-compressed', 'gz' => 'application/x-gzip', 'gzip' => 'application/x-gzip', 'gzip' => 'multipart/x-gzip', 'h' => 'text/plain', 'h' => 'text/x-h', 'hdf' => 'application/x-hdf', 'help' => 'application/x-helpfile', 'hgl' => 'application/vnd.hp-hpgl', 'hh' => 'text/plain', 'hh' => 'text/x-h', 'hlb' => 'text/x-script', 'hlp' => 'application/hlp', 'hlp' => 'application/x-helpfile', 'hlp' => 'application/x-winhelp', 'hpg' => 'application/vnd.hp-hpgl', 'hpgl' => 'application/vnd.hp-hpgl', 'hqx' => 'application/binhex', 'hqx' => 'application/binhex4', 'hqx' => 'application/mac-binhex', 'hqx' => 'application/mac-binhex40', 'hqx' => 'application/x-binhex40', 'hqx' => 'application/x-mac-binhex40', 'hta' => 'application/hta', 'htc' => 'text/x-component', 'htm' => 'text/html', 'html' => 'text/html', 'htmls' => 'text/html', 'htt' => 'text/webviewhtml', 'htx' => 'text/html', 'ice' => 'x-conference/x-cooltalk', 'ico' => 'image/x-icon', 'idc' => 'text/plain', 'ief' => 'image/ief', 'iefs' => 'image/ief', 'iges' => 'application/iges', 'iges' => 'model/iges', 'igs' => 'application/iges', 'igs' => 'model/iges', 'ima' => 'application/x-ima', 'imap' => 'application/x-httpd-imap', 'inf' => 'application/inf', 'ins' => 'application/x-internett-signup', 'ip' => 'application/x-ip2', 'isu' => 'video/x-isvideo', 'it' => 'audio/it', 'iv' => 'application/x-inventor', 'ivr' => 'i-world/i-vrml', 'ivy' => 'application/x-livescreen', 'jam' => 'audio/x-jam', 'jav' => 'text/plain', 'jav' => 'text/x-java-source', 'java' => 'text/plain', 'java' => 'text/x-java-source', 'jcm' => 'application/x-java-commerce', 'jfif' => 'image/jpeg', 'jfif' => 'image/pjpeg', 'jfif-tbnl' => 'image/jpeg', 'jpe' => 'image/jpeg', 'jpe' => 'image/pjpeg', 'jpeg' => 'image/jpeg', 'jpeg' => 'image/pjpeg', 'jpg' => 'image/jpeg', 'jpg' => 'image/pjpeg', 'jps' => 'image/x-jps', 'js' => 'application/x-javascript', 'jut' => 'image/jutvision', 'kar' => 'audio/midi', 'kar' => 'music/x-karaoke', 'ksh' => 'application/x-ksh', 'ksh' => 'text/x-script.ksh', 'la' => 'audio/nspaudio', 'la' => 'audio/x-nspaudio', 'lam' => 'audio/x-liveaudio', 'latex' => 'application/x-latex', 'lha' => 'application/lha', 'lha' => 'application/octet-stream', 'lha' => 'application/x-lha', 'lhx' => 'application/octet-stream', 'list' => 'text/plain', 'lma' => 'audio/nspaudio', 'lma' => 'audio/x-nspaudio', 'log' => 'text/plain', 'lsp' => 'application/x-lisp', 'lsp' => 'text/x-script.lisp', 'lst' => 'text/plain', 'lsx' => 'text/x-la-asf', 'ltx' => 'application/x-latex', 'lzh' => 'application/octet-stream', 'lzh' => 'application/x-lzh', 'lzx' => 'application/lzx', 'lzx' => 'application/octet-stream', 'lzx' => 'application/x-lzx', 'm' => 'text/plain', 'm' => 'text/x-m', 'm1v' => 'video/mpeg', 'm2a' => 'audio/mpeg', 'm2v' => 'video/mpeg', 'm3u' => 'audio/x-mpequrl', 'man' => 'application/x-troff-man', 'map' => 'application/x-navimap', 'mar' => 'text/plain', 'mbd' => 'application/mbedlet', 'mc$' => 'application/x-magic-cap-package-1.0', 'mcd' => 'application/mcad', 'mcd' => 'application/x-mathcad', 'mcf' => 'image/vasa', 'mcf' => 'text/mcf', 'mcp' => 'application/netmc', 'me' => 'application/x-troff-me', 'mht' => 'message/rfc822', 'mhtml' => 'message/rfc822', 'mid' => 'application/x-midi', 'mid' => 'audio/midi', 'mid' => 'audio/x-mid', 'mid' => 'audio/x-midi', 'mid' => 'music/crescendo', 'mid' => 'x-music/x-midi', 'midi' => 'application/x-midi', 'midi' => 'audio/midi', 'midi' => 'audio/x-mid', 'midi' => 'audio/x-midi', 'midi' => 'music/crescendo', 'midi' => 'x-music/x-midi', 'mif' => 'application/x-frame', 'mif' => 'application/x-mif', 'mime' => 'message/rfc822', 'mime' => 'www/mime', 'mjf' => 'audio/x-vnd.audioexplosion.mjuicemediafile', 'mjpg' => 'video/x-motion-jpeg', 'mm' => 'application/base64', 'mm' => 'application/x-meme', 'mme' => 'application/base64', 'mod' => 'audio/mod', 'mod' => 'audio/x-mod', 'moov' => 'video/quicktime', 'mov' => 'video/quicktime', 'movie' => 'video/x-sgi-movie', 'mp2' => 'audio/mpeg', 'mp2' => 'audio/x-mpeg', 'mp2' => 'video/mpeg', 'mp2' => 'video/x-mpeg', 'mp2' => 'video/x-mpeq2a', 'mp3' => 'audio/mpeg3', 'mp3' => 'audio/x-mpeg-3', 'mp3' => 'video/mpeg', 'mp3' => 'video/x-mpeg', 'mpa' => 'audio/mpeg', 'mpa' => 'video/mpeg', 'mpc' => 'application/x-project', 'mpe' => 'video/mpeg', 'mpeg' => 'video/mpeg', 'mpg' => 'audio/mpeg', 'mpg' => 'video/mpeg', 'mpga' => 'audio/mpeg', 'mpp' => 'application/vnd.ms-project', 'mpt' => 'application/x-project', 'mpv' => 'application/x-project', 'mpx' => 'application/x-project', 'mrc' => 'application/marc', 'ms' => 'application/x-troff-ms', 'mv' => 'video/x-sgi-movie', 'my' => 'audio/make', 'mzz' => 'application/x-vnd.audioexplosion.mzz', 'nap' => 'image/naplps', 'naplps' => 'image/naplps', 'nc' => 'application/x-netcdf', 'ncm' => 'application/vnd.nokia.configuration-message', 'nif' => 'image/x-niff', 'niff' => 'image/x-niff', 'nix' => 'application/x-mix-transfer', 'nsc' => 'application/x-conference', 'nvd' => 'application/x-navidoc', 'o' => 'application/octet-stream', 'oda' => 'application/oda', 'omc' => 'application/x-omc', 'omcd' => 'application/x-omcdatamaker', 'omcr' => 'application/x-omcregerator', 'p' => 'text/x-pascal', 'p10' => 'application/pkcs10', 'p10' => 'application/x-pkcs10', 'p12' => 'application/pkcs-12', 'p12' => 'application/x-pkcs12', 'p7a' => 'application/x-pkcs7-signature', 'p7c' => 'application/pkcs7-mime', 'p7c' => 'application/x-pkcs7-mime', 'p7m' => 'application/pkcs7-mime', 'p7m' => 'application/x-pkcs7-mime', 'p7r' => 'application/x-pkcs7-certreqresp', 'p7s' => 'application/pkcs7-signature', 'part' => 'application/pro_eng', 'pas' => 'text/pascal', 'pbm' => 'image/x-portable-bitmap', 'pcl' => 'application/vnd.hp-pcl', 'pcl' => 'application/x-pcl', 'pct' => 'image/x-pict', 'pcx' => 'image/x-pcx', 'pdb' => 'chemical/x-pdb', 'pdf' => 'application/pdf', 'pfunk' => 'audio/make', 'pfunk' => 'audio/make.my.funk', 'pgm' => 'image/x-portable-graymap', 'pgm' => 'image/x-portable-greymap', 'pic' => 'image/pict', 'pict' => 'image/pict', 'pkg' => 'application/x-newton-compatible-pkg', 'pko' => 'application/vnd.ms-pki.pko', 'pl' => 'text/plain', 'pl' => 'text/x-script.perl', 'plx' => 'application/x-pixclscript', 'pm' => 'image/x-xpixmap', 'pm' => 'text/x-script.perl-module', 'pm4' => 'application/x-pagemaker', 'pm5' => 'application/x-pagemaker', 'png' => 'image/png', 'pnm' => 'application/x-portable-anymap', 'pnm' => 'image/x-portable-anymap', 'pot' => 'application/mspowerpoint', 'pot' => 'application/vnd.ms-powerpoint', 'pov' => 'model/x-pov', 'ppa' => 'application/vnd.ms-powerpoint', 'ppm' => 'image/x-portable-pixmap', 'pps' => 'application/mspowerpoint', 'pps' => 'application/vnd.ms-powerpoint', 'ppt' => 'application/mspowerpoint', 'ppt' => 'application/powerpoint', 'ppt' => 'application/vnd.ms-powerpoint', 'ppt' => 'application/x-mspowerpoint', 'ppz' => 'application/mspowerpoint', 'pre' => 'application/x-freelance', 'prt' => 'application/pro_eng', 'ps' => 'application/postscript', 'psd' => 'application/octet-stream', 'pvu' => 'paleovu/x-pv', 'pwz' => 'application/vnd.ms-powerpoint', 'py' => 'text/x-script.phyton', 'pyc' => 'applicaiton/x-bytecode.python', 'qcp' => 'audio/vnd.qcelp', 'qd3' => 'x-world/x-3dmf', 'qd3d' => 'x-world/x-3dmf', 'qif' => 'image/x-quicktime', 'qt' => 'video/quicktime', 'qtc' => 'video/x-qtc', 'qti' => 'image/x-quicktime', 'qtif' => 'image/x-quicktime', 'ra' => 'audio/x-pn-realaudio', 'ra' => 'audio/x-pn-realaudio-plugin', 'ra' => 'audio/x-realaudio', 'ram' => 'audio/x-pn-realaudio', 'ras' => 'application/x-cmu-raster', 'ras' => 'image/cmu-raster', 'ras' => 'image/x-cmu-raster', 'rast' => 'image/cmu-raster', 'rexx' => 'text/x-script.rexx', 'rf' => 'image/vnd.rn-realflash', 'rgb' => 'image/x-rgb', 'rm' => 'application/vnd.rn-realmedia', 'rm' => 'audio/x-pn-realaudio', 'rmi' => 'audio/mid', 'rmm' => 'audio/x-pn-realaudio', 'rmp' => 'audio/x-pn-realaudio', 'rmp' => 'audio/x-pn-realaudio-plugin', 'rng' => 'application/ringing-tones', 'rng' => 'application/vnd.nokia.ringing-tone', 'rnx' => 'application/vnd.rn-realplayer', 'roff' => 'application/x-troff', 'rp' => 'image/vnd.rn-realpix', 'rpm' => 'audio/x-pn-realaudio-plugin', 'rt' => 'text/richtext', 'rt' => 'text/vnd.rn-realtext', 'rtf' => 'application/rtf', 'rtf' => 'application/x-rtf', 'rtf' => 'text/richtext', 'rtx' => 'application/rtf', 'rtx' => 'text/richtext', 'rv' => 'video/vnd.rn-realvideo', 's' => 'text/x-asm', 's3m' => 'audio/s3m', 'saveme' => 'application/octet-stream', 'sbk' => 'application/x-tbook', 'scm' => 'application/x-lotusscreencam', 'scm' => 'text/x-script.guile', 'scm' => 'text/x-script.scheme', 'scm' => 'video/x-scm', 'sdml' => 'text/plain', 'sdp' => 'application/sdp', 'sdp' => 'application/x-sdp', 'sdr' => 'application/sounder', 'sea' => 'application/sea', 'sea' => 'application/x-sea', 'set' => 'application/set', 'sgm' => 'text/sgml', 'sgm' => 'text/x-sgml', 'sgml' => 'text/sgml', 'sgml' => 'text/x-sgml', 'sh' => 'application/x-bsh', 'sh' => 'application/x-sh', 'sh' => 'application/x-shar', 'sh' => 'text/x-script.sh', 'shar' => 'application/x-bsh', 'shar' => 'application/x-shar', 'shtml' => 'text/html', 'shtml' => 'text/x-server-parsed-html', 'sid' => 'audio/x-psid', 'sit' => 'application/x-sit', 'sit' => 'application/x-stuffit', 'skd' => 'application/x-koan', 'skm' => 'application/x-koan', 'skp' => 'application/x-koan', 'skt' => 'application/x-koan', 'sl' => 'application/x-seelogo', 'smi' => 'application/smil', 'smil' => 'application/smil', 'snd' => 'audio/basic', 'snd' => 'audio/x-adpcm', 'sol' => 'application/solids', 'spc' => 'application/x-pkcs7-certificates', 'spc' => 'text/x-speech', 'spl' => 'application/futuresplash', 'spr' => 'application/x-sprite', 'sprite' => 'application/x-sprite', 'src' => 'application/x-wais-source', 'ssi' => 'text/x-server-parsed-html', 'ssm' => 'application/streamingmedia', 'sst' => 'application/vnd.ms-pki.certstore', 'step' => 'application/step', 'stl' => 'application/sla', 'stl' => 'application/vnd.ms-pki.stl', 'stl' => 'application/x-navistyle', 'stp' => 'application/step', 'sv4cpio' => 'application/x-sv4cpio', 'sv4crc' => 'application/x-sv4crc', 'svf' => 'image/vnd.dwg', 'svf' => 'image/x-dwg', 'svr' => 'application/x-world', 'svr' => 'x-world/x-svr', 'swf' => 'application/x-shockwave-flash', 't' => 'application/x-troff', 'talk' => 'text/x-speech', 'tar' => 'application/x-tar', 'tbk' => 'application/toolbook', 'tbk' => 'application/x-tbook', 'tcl' => 'application/x-tcl', 'tcl' => 'text/x-script.tcl', 'tcsh' => 'text/x-script.tcsh', 'tex' => 'application/x-tex', 'texi' => 'application/x-texinfo', 'texinfo' => 'application/x-texinfo', 'text' => 'application/plain', 'text' => 'text/plain', 'tgz' => 'application/gnutar', 'tgz' => 'application/x-compressed', 'tif' => 'image/tiff', 'tif' => 'image/x-tiff', 'tiff' => 'image/tiff', 'tiff' => 'image/x-tiff', 'tr' => 'application/x-troff', 'tsi' => 'audio/tsp-audio', 'tsp' => 'application/dsptype', 'tsp' => 'audio/tsplayer', 'tsv' => 'text/tab-separated-values', 'turbot' => 'image/florian', 'txt' => 'text/plain', 'uil' => 'text/x-uil', 'uni' => 'text/uri-list', 'unis' => 'text/uri-list', 'unv' => 'application/i-deas', 'uri' => 'text/uri-list', 'uris' => 'text/uri-list', 'ustar' => 'application/x-ustar', 'ustar' => 'multipart/x-ustar', 'uu' => 'application/octet-stream', 'uu' => 'text/x-uuencode', 'uue' => 'text/x-uuencode', 'vcd' => 'application/x-cdlink', 'vcs' => 'text/x-vcalendar', 'vda' => 'application/vda', 'vdo' => 'video/vdo', 'vew' => 'application/groupwise', 'viv' => 'video/vivo', 'viv' => 'video/vnd.vivo', 'vivo' => 'video/vivo', 'vivo' => 'video/vnd.vivo', 'vmd' => 'application/vocaltec-media-desc', 'vmf' => 'application/vocaltec-media-file', 'voc' => 'audio/voc', 'voc' => 'audio/x-voc', 'vos' => 'video/vosaic', 'vox' => 'audio/voxware', 'vqe' => 'audio/x-twinvq-plugin', 'vqf' => 'audio/x-twinvq', 'vql' => 'audio/x-twinvq-plugin', 'vrml' => 'application/x-vrml', 'vrml' => 'model/vrml', 'vrml' => 'x-world/x-vrml', 'vrt' => 'x-world/x-vrt', 'vsd' => 'application/x-visio', 'vst' => 'application/x-visio', 'vsw' => 'application/x-visio', 'w60' => 'application/wordperfect6.0', 'w61' => 'application/wordperfect6.1', 'w6w' => 'application/msword', 'wav' => 'audio/wav', 'wav' => 'audio/x-wav', 'wb1' => 'application/x-qpro', 'wbmp' => 'image/vnd.wap.wbmp', 'web' => 'application/vnd.xara', 'wiz' => 'application/msword', 'wk1' => 'application/x-123', 'wmf' => 'windows/metafile', 'wml' => 'text/vnd.wap.wml', 'wmlc' => 'application/vnd.wap.wmlc', 'wmls' => 'text/vnd.wap.wmlscript', 'wmlsc' => 'application/vnd.wap.wmlscriptc', 'word' => 'application/msword', 'wp' => 'application/wordperfect', 'wp5' => 'application/wordperfect', 'wp5' => 'application/wordperfect6.0', 'wp6' => 'application/wordperfect', 'wpd' => 'application/wordperfect', 'wpd' => 'application/x-wpwin', 'wq1' => 'application/x-lotus', 'wri' => 'application/mswrite', 'wri' => 'application/x-wri', 'wrl' => 'application/x-world', 'wrl' => 'model/vrml', 'wrl' => 'x-world/x-vrml', 'wrz' => 'model/vrml', 'wrz' => 'x-world/x-vrml', 'wsc' => 'text/scriplet', 'wsrc' => 'application/x-wais-source', 'wtk' => 'application/x-wintalk', 'xbm' => 'image/x-xbitmap', 'xbm' => 'image/x-xbm', 'xbm' => 'image/xbm', 'xdr' => 'video/x-amt-demorun', 'xgz' => 'xgl/drawing', 'xif' => 'image/vnd.xiff', 'xl' => 'application/excel', 'xla' => 'application/excel', 'xla' => 'application/x-excel', 'xla' => 'application/x-msexcel', 'xlb' => 'application/excel', 'xlb' => 'application/vnd.ms-excel', 'xlb' => 'application/x-excel', 'xlc' => 'application/excel', 'xlc' => 'application/vnd.ms-excel', 'xlc' => 'application/x-excel', 'xld' => 'application/excel', 'xld' => 'application/x-excel', 'xlk' => 'application/excel', 'xlk' => 'application/x-excel', 'xll' => 'application/excel', 'xll' => 'application/vnd.ms-excel', 'xll' => 'application/x-excel', 'xlm' => 'application/excel', 'xlm' => 'application/vnd.ms-excel', 'xlm' => 'application/x-excel', 'xls' => 'application/excel', 'xls' => 'application/vnd.ms-excel', 'xls' => 'application/x-excel', 'xls' => 'application/x-msexcel', 'xlt' => 'application/excel', 'xlt' => 'application/x-excel', 'xlv' => 'application/excel', 'xlv' => 'application/x-excel', 'xlw' => 'application/excel', 'xlw' => 'application/vnd.ms-excel', 'xlw' => 'application/x-excel', 'xlw' => 'application/x-msexcel', 'xm' => 'audio/xm', 'xml' => 'application/xml', 'xml' => 'text/xml', 'xmz' => 'xgl/movie', 'xpix' => 'application/x-vnd.ls-xpix', 'xpm' => 'image/x-xpixmap', 'xpm' => 'image/xpm', 'x-png' => 'image/png', 'xsr' => 'video/x-amt-showrun', 'xwd' => 'image/x-xwd', 'xwd' => 'image/x-xwindowdump', 'xyz' => 'chemical/x-pdb', 'z' => 'application/x-compress', 'z' => 'application/x-compressed', 'zip' => 'application/x-compressed', 'zip' => 'application/x-zip-compressed', 'zip' => 'application/zip', 'zip' => 'multipart/x-zip', 'zoo' => 'application/octet-stream', 'zsh' => 'text/x-script.zsh');
             if (array_key_exists($extension, $mimes)) {
                 return $mimes[$extension];
             } else {
                 return false;
             }
         }
     }
 }
Exemple #23
0
 public static final function get_datetime_format($datetime, $format = null)
 {
     if (!$format) {
         $format = moojon_config::get('datetime_format');
     }
     return date($format, self::get_time($datetime, $format));
 }
 public function logout()
 {
     moojon_security::destroy();
     moojon_flash::set('notification', moojon_config::get('security_logout_message'));
     $this->redirect(moojon_config::get('index_file') . moojon_config::get('security_app') . '/' . moojon_config::get('security_controller') . '/' . moojon_config::get('security_action'));
 }
Exemple #25
0
function get_collection_uri(moojon_base_model $model)
{
    $route = get_collection_rest_route($model);
    $parent_resource = '';
    $pattern = $route->get_pattern();
    if ($resource = moojon_uri::get_or_null('resource')) {
        $resource = moojon_inflect::singularize($resource);
        $resource_model = new $resource();
        $table = $model->get_table();
        $class = $model->get_class();
        if ($resource_model->has_has_many_relationship($table) || $resource_model->has_has_many_to_many_relationship($table)) {
            $parent_resource = moojon_uri::get_uri() . '/';
        } else {
            if ($resource == $class) {
                $parent_resource = moojon_uri::get_uri();
                $parent_resource_id = substr($parent_resource, strrpos($parent_resource, '/') + 1);
                if ($parent_resource_id == $table) {
                    $parent_resource_id = '';
                }
                $parent_resource = substr($parent_resource, 0, strrpos($parent_resource, '/'));
                if ($parent_resource) {
                    $pattern = '';
                }
                if ($resource_model->is_belongs_to_relationship_column(moojon_primary_key::get_foreign_key($class))) {
                    $slash = $parent_resource_id ? '/' : '';
                    $pattern .= "{$slash}{$parent_resource_id}/{$table}";
                }
            } else {
                if ($resource_model->has_relationship($class)) {
                    $belongs_to_relationship = $resource_model->get_relationship($class);
                    if (get_class($belongs_to_relationship) == 'moojon_belongs_to_relationship') {
                        $parent_resource = moojon_uri::get_uri() . '/';
                    }
                }
            }
        }
    }
    return moojon_config::get('index_file') . $parent_resource . $pattern . '/';
}
Exemple #26
0
function datetime_select_options($attributes = null, $format = null, $selected = null, $start = null, $end = null, $label = false)
{
    if (!$format) {
        $format = moojon_config::get('datetime_format');
    }
    $return = div_tag(null, array('class' => 'datetime'));
    $attributes = try_set_attribute($attributes, 'name', 'datetime_select');
    $attributes = try_set_attribute($attributes, 'id', $attributes['name']);
    for ($i = 0; $i < strlen($format) + 1; $i++) {
        $select = null;
        $select_attributes = $attributes;
        $f = substr($format, $i, 1);
        $select_attributes['name'] = $attributes['name'] . "[{$f}]";
        if ($i) {
            $select_attributes['id'] = $attributes['id'] . "_{$f}";
        } else {
            $select_attributes['id'] = $attributes['id'];
        }
        switch ($f) {
            case 'Y':
            case 'y':
                $select = year_select_options($start, $end, $select_attributes, $selected, $f);
                $label_text = 'Year';
                break;
            case 'm':
            case 'n':
                $select = month_select_options($select_attributes, $selected, $f);
                $label_text = 'Month';
                break;
            case 'd':
            case 'j':
                $select = day_select_options($select_attributes, $selected, $f);
                $label_text = 'Day';
                break;
            case 'G':
            case 'H':
                $select = hour_select_options($select_attributes, $selected, $f);
                $label_text = 'Hour';
                break;
            case 'i':
                $select = minute_select_options($select_attributes, $selected);
                $label_text = 'Minute';
                break;
            case 's':
                $select = second_select_options($select_attributes, $selected);
                $label_text = 'Second';
                break;
        }
        if ($select) {
            if ($label) {
                $return->add_child(label_tag("{$label_text}:", $select_attributes['id']));
            }
            $return->add_child($select);
        }
    }
    return $return;
}
 public static function redirection($fallback = null)
 {
     $redirection = moojon_request::get_or_null(moojon_config::get('redirection_key'));
     $referer = self::get_or_null('HTTP_REFERER');
     if ($redirection) {
         $return = $redirection;
     } else {
         if ($fallback) {
             $return = $fallback;
         } else {
             if ($referer) {
                 $return = $referer;
             } else {
                 $return = '#';
             }
         }
     }
     return $return;
 }
Exemple #28
0
 protected function __construct()
 {
     parse_str(file_get_contents(moojon_config::get('put_path')), $data);
     $this->data = $data;
 }
 public static function view($app, $controller = null, $view = null)
 {
     self::try_define('APP', $app);
     if (!$controller) {
         $controller = moojon_config::get('default_controller');
     }
     self::try_define('CONTROLLER', $controller);
     if (!$view) {
         $view = moojon_config::get('default_action');
     }
     moojon_files::attempt_mkdir(moojon_paths::get_project_views_directory());
     moojon_files::attempt_mkdir(moojon_paths::get_project_views_app_directory(APP));
     moojon_files::attempt_mkdir(moojon_paths::get_project_views_app_controller_directory(APP, CONTROLLER));
     self::run(moojon_paths::get_moojon_templates_directory() . 'view.template', moojon_paths::get_project_views_app_controller_directory(APP, CONTROLLER) . "{$view}.view.php", array(), false, true);
 }
Exemple #30
0
 public static function get_column_paths()
 {
     $paths = array();
     if (moojon_config::has('db_driver')) {
         $paths[] = self::get_columns_directory();
     }
     return $paths;
 }