├── .gitignore ├── 404.php ├── README.md ├── author.php ├── category.php ├── comments.php ├── content ├── edit.php ├── helpers.php ├── single.php ├── topics-list.php └── zero.php ├── footer.php ├── functions.php ├── header.php ├── home.php ├── images ├── bg-btn.png ├── bg-footer.png ├── btn-search-go.gif ├── default-avatar-24.png ├── default-avatar-48.png ├── default-avatar-72.png ├── dot-orange.png ├── facebox-close.png ├── index.php ├── loading.gif ├── logo │ └── default-node-logo.png ├── reply.png └── sprite-member-icons.png ├── inc ├── index.php ├── init.php ├── vp-category.php ├── vp-comment.php ├── vp-favorite.php ├── vp-general.php ├── vp-hooks.php ├── vp-init.php ├── vp-member.php ├── vp-notification.php ├── vp-options.php ├── vp-page.php ├── vp-pointers.php ├── vp-post.php ├── vp-seo.php ├── vp-theme-options.php └── vp-user.php ├── index.php ├── js ├── facebox.js ├── global.js ├── html5.js └── index.php ├── languages ├── index.php ├── zh_CN.mo └── zh_CN.po ├── libs ├── index.php ├── markdown-extra.php ├── nhp-options │ ├── css │ │ ├── jquery-ui-aristo │ │ │ ├── aristo.css │ │ │ └── images │ │ │ │ ├── bg_fallback.png │ │ │ │ ├── icon_sprite.png │ │ │ │ ├── progress_bar.gif │ │ │ │ ├── slider_handles.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ └── ui-icons_454545_256x240.png │ │ └── options.css │ ├── fields │ │ ├── button_set │ │ │ ├── field_button_set.js │ │ │ └── field_button_set.php │ │ ├── cats_multi_select │ │ │ └── field_cats_multi_select.php │ │ ├── cats_select │ │ │ └── field_cats_select.php │ │ ├── checkbox │ │ │ └── field_checkbox.php │ │ ├── checkbox_hide_below │ │ │ ├── field_checkbox_hide_below.js │ │ │ └── field_checkbox_hide_below.php │ │ ├── color │ │ │ ├── field_color.js │ │ │ └── field_color.php │ │ ├── color_gradient │ │ │ └── field_color_gradient.php │ │ ├── date │ │ │ ├── field_date.js │ │ │ └── field_date.php │ │ ├── divide │ │ │ └── field_divide.php │ │ ├── editor │ │ │ └── field_editor.php │ │ ├── google_webfonts │ │ │ └── field_google_webfonts.php │ │ ├── info │ │ │ └── field_info.php │ │ ├── menu_location_select │ │ │ └── field_menu_location_select.php │ │ ├── menu_select │ │ │ └── field_menu_select.php │ │ ├── multi_checkbox │ │ │ └── field_multi_checkbox.php │ │ ├── multi_select │ │ │ └── field_multi_select.php │ │ ├── multi_text │ │ │ ├── field_multi_text.js │ │ │ └── field_multi_text.php │ │ ├── pages_multi_select │ │ │ └── field_pages_multi_select.php │ │ ├── pages_select │ │ │ └── field_pages_select.php │ │ ├── post_type_select │ │ │ └── field_post_type_select.php │ │ ├── posts_multi_select │ │ │ └── field_posts_multi_select.php │ │ ├── posts_select │ │ │ └── field_posts_select.php │ │ ├── radio │ │ │ └── field_radio.php │ │ ├── radio_img │ │ │ ├── field_radio_img.js │ │ │ └── field_radio_img.php │ │ ├── select │ │ │ └── field_select.php │ │ ├── select_hide_below │ │ │ ├── field_select_hide_below.js │ │ │ └── field_select_hide_below.php │ │ ├── tags_multi_select │ │ │ └── field_tags_multi_select.php │ │ ├── tags_select │ │ │ └── field_tags_select.php │ │ ├── text │ │ │ └── field_text.php │ │ ├── textarea │ │ │ └── field_textarea.php │ │ └── upload │ │ │ ├── blank.png │ │ │ ├── field_upload.js │ │ │ └── field_upload.php │ ├── img │ │ ├── 1col.png │ │ ├── 2cl.png │ │ ├── 2cr.png │ │ ├── glyphicons │ │ │ ├── glyphicons_000_glass.png │ │ │ ├── glyphicons_001_leaf.png │ │ │ ├── glyphicons_002_dog.png │ │ │ ├── glyphicons_003_user.png │ │ │ ├── glyphicons_004_girl.png │ │ │ ├── glyphicons_005_car.png │ │ │ ├── glyphicons_006_user_add.png │ │ │ ├── glyphicons_007_user_remove.png │ │ │ ├── glyphicons_008_film.png │ │ │ ├── glyphicons_009_magic.png │ │ │ ├── glyphicons_010_envelope.png │ │ │ ├── glyphicons_011_camera.png │ │ │ ├── glyphicons_012_heart.png │ │ │ ├── glyphicons_013_beach_umbrella.png │ │ │ ├── glyphicons_014_train.png │ │ │ ├── glyphicons_015_print.png │ │ │ ├── glyphicons_016_bin.png │ │ │ ├── glyphicons_017_music.png │ │ │ ├── glyphicons_018_note.png │ │ │ ├── glyphicons_019_cogwheel.png │ │ │ ├── glyphicons_020_home.png │ │ │ ├── glyphicons_021_snowflake.png │ │ │ ├── glyphicons_022_fire.png │ │ │ ├── glyphicons_023_cogwheels.png │ │ │ ├── glyphicons_024_parents.png │ │ │ ├── glyphicons_025_binoculars.png │ │ │ ├── glyphicons_026_road.png │ │ │ ├── glyphicons_027_search.png │ │ │ ├── glyphicons_028_cars.png │ │ │ ├── glyphicons_029_notes_2.png │ │ │ ├── glyphicons_030_pencil.png │ │ │ ├── glyphicons_031_bus.png │ │ │ ├── glyphicons_032_wifi_alt.png │ │ │ ├── glyphicons_033_luggage.png │ │ │ ├── glyphicons_034_old_man.png │ │ │ ├── glyphicons_035_woman.png │ │ │ ├── glyphicons_036_file.png │ │ │ ├── glyphicons_037_credit.png │ │ │ ├── glyphicons_038_airplane.png │ │ │ ├── glyphicons_039_notes.png │ │ │ ├── glyphicons_040_stats.png │ │ │ ├── glyphicons_041_charts.png │ │ │ ├── glyphicons_042_pie_chart.png │ │ │ ├── glyphicons_043_group.png │ │ │ ├── glyphicons_044_keys.png │ │ │ ├── glyphicons_045_calendar.png │ │ │ ├── glyphicons_046_router.png │ │ │ ├── glyphicons_047_camera_small.png │ │ │ ├── glyphicons_048_dislikes.png │ │ │ ├── glyphicons_049_star.png │ │ │ ├── glyphicons_050_link.png │ │ │ ├── glyphicons_051_eye_open.png │ │ │ ├── glyphicons_052_eye_close.png │ │ │ ├── glyphicons_053_alarm.png │ │ │ ├── glyphicons_054_clock.png │ │ │ ├── glyphicons_055_stopwatch.png │ │ │ ├── glyphicons_056_projector.png │ │ │ ├── glyphicons_057_history.png │ │ │ ├── glyphicons_058_truck.png │ │ │ ├── glyphicons_059_cargo.png │ │ │ ├── glyphicons_060_compass.png │ │ │ ├── glyphicons_061_keynote.png │ │ │ ├── glyphicons_062_attach.png │ │ │ ├── glyphicons_063_power.png │ │ │ ├── glyphicons_064_lightbulb.png │ │ │ ├── glyphicons_065_tag.png │ │ │ ├── glyphicons_066_tags.png │ │ │ ├── glyphicons_067_cleaning.png │ │ │ ├── glyphicons_068_ruller.png │ │ │ ├── glyphicons_069_gift.png │ │ │ ├── glyphicons_070_umbrella.png │ │ │ ├── glyphicons_071_book.png │ │ │ ├── glyphicons_072_bookmark.png │ │ │ ├── glyphicons_073_signal.png │ │ │ ├── glyphicons_074_cup.png │ │ │ ├── glyphicons_075_stroller.png │ │ │ ├── glyphicons_076_headphones.png │ │ │ ├── glyphicons_077_headset.png │ │ │ ├── glyphicons_078_warning_sign.png │ │ │ ├── glyphicons_079_signal.png │ │ │ ├── glyphicons_080_retweet.png │ │ │ ├── glyphicons_081_refresh.png │ │ │ ├── glyphicons_082_roundabout.png │ │ │ ├── glyphicons_083_random.png │ │ │ ├── glyphicons_084_heat.png │ │ │ ├── glyphicons_085_repeat.png │ │ │ ├── glyphicons_086_display.png │ │ │ ├── glyphicons_087_log_book.png │ │ │ ├── glyphicons_088_adress_book.png │ │ │ ├── glyphicons_089_magnet.png │ │ │ ├── glyphicons_090_table.png │ │ │ ├── glyphicons_091_adjust.png │ │ │ ├── glyphicons_092_tint.png │ │ │ ├── glyphicons_093_crop.png │ │ │ ├── glyphicons_094_vector_path_square.png │ │ │ ├── glyphicons_095_vector_path_circle.png │ │ │ ├── glyphicons_096_vector_path_polygon.png │ │ │ ├── glyphicons_097_vector_path_line.png │ │ │ ├── glyphicons_098_vector_path_curve.png │ │ │ ├── glyphicons_099_vector_path_all.png │ │ │ ├── glyphicons_100_font.png │ │ │ ├── glyphicons_101_italic.png │ │ │ ├── glyphicons_102_bold.png │ │ │ ├── glyphicons_103_text_underline.png │ │ │ ├── glyphicons_104_text_strike.png │ │ │ ├── glyphicons_105_text_height.png │ │ │ ├── glyphicons_106_text_width.png │ │ │ ├── glyphicons_107_text_resize.png │ │ │ ├── glyphicons_108_left_indent.png │ │ │ ├── glyphicons_109_right_indent.png │ │ │ ├── glyphicons_110_align_left.png │ │ │ ├── glyphicons_111_align_center.png │ │ │ ├── glyphicons_112_align_right.png │ │ │ ├── glyphicons_113_justify.png │ │ │ ├── glyphicons_114_list.png │ │ │ ├── glyphicons_115_text_smaller.png │ │ │ ├── glyphicons_116_text_bigger.png │ │ │ ├── glyphicons_117_embed.png │ │ │ ├── glyphicons_118_embed_close.png │ │ │ ├── glyphicons_119_adjust.png │ │ │ ├── glyphicons_120_message_full.png │ │ │ ├── glyphicons_121_message_empty.png │ │ │ ├── glyphicons_122_message_in.png │ │ │ ├── glyphicons_123_message_out.png │ │ │ ├── glyphicons_124_message_plus.png │ │ │ ├── glyphicons_125_message_minus.png │ │ │ ├── glyphicons_126_message_ban.png │ │ │ ├── glyphicons_127_message_flag.png │ │ │ ├── glyphicons_128_message_lock.png │ │ │ ├── glyphicons_129_message_new.png │ │ │ ├── glyphicons_130_inbox.png │ │ │ ├── glyphicons_131_inbox_plus.png │ │ │ ├── glyphicons_132_inbox_minus.png │ │ │ ├── glyphicons_133_inbox_lock.png │ │ │ ├── glyphicons_134_inbox_in.png │ │ │ ├── glyphicons_135_inbox_out.png │ │ │ ├── glyphicons_136_computer_locked.png │ │ │ ├── glyphicons_137_computer_service.png │ │ │ ├── glyphicons_138_computer_proces.png │ │ │ ├── glyphicons_139_phone.png │ │ │ ├── glyphicons_140_database_lock.png │ │ │ ├── glyphicons_141_database_plus.png │ │ │ ├── glyphicons_142_database_minus.png │ │ │ ├── glyphicons_143_database_ban.png │ │ │ ├── glyphicons_144_folder_open.png │ │ │ ├── glyphicons_145_folder_plus.png │ │ │ ├── glyphicons_146_folder_minus.png │ │ │ ├── glyphicons_147_folder_lock.png │ │ │ ├── glyphicons_148_folder_flag.png │ │ │ ├── glyphicons_149_folder_new.png │ │ │ ├── glyphicons_150_check.png │ │ │ ├── glyphicons_151_edit.png │ │ │ ├── glyphicons_152_new_window.png │ │ │ ├── glyphicons_153_more_windows.png │ │ │ ├── glyphicons_154_show_big_thumbnails.png │ │ │ ├── glyphicons_155_show_thumbnails.png │ │ │ ├── glyphicons_156_show_thumbnails_with_lines.png │ │ │ ├── glyphicons_157_show_lines.png │ │ │ ├── glyphicons_158_playlist.png │ │ │ ├── glyphicons_159_picture.png │ │ │ ├── glyphicons_160_imac.png │ │ │ ├── glyphicons_161_macbook.png │ │ │ ├── glyphicons_162_ipad.png │ │ │ ├── glyphicons_163_iphone.png │ │ │ ├── glyphicons_164_iphone_transfer.png │ │ │ ├── glyphicons_165_iphone_exchange.png │ │ │ ├── glyphicons_166_ipod.png │ │ │ ├── glyphicons_167_ipod_shuffle.png │ │ │ ├── glyphicons_168_ear_plugs.png │ │ │ ├── glyphicons_169_albums.png │ │ │ ├── glyphicons_170_step_backward.png │ │ │ ├── glyphicons_171_fast_backward.png │ │ │ ├── glyphicons_172_rewind.png │ │ │ ├── glyphicons_173_play.png │ │ │ ├── glyphicons_174_pause.png │ │ │ ├── glyphicons_175_stop.png │ │ │ ├── glyphicons_176_forward.png │ │ │ ├── glyphicons_177_fast_forward.png │ │ │ ├── glyphicons_178_step_forward.png │ │ │ ├── glyphicons_179_eject.png │ │ │ ├── glyphicons_180_facetime_video.png │ │ │ ├── glyphicons_181_download_alt.png │ │ │ ├── glyphicons_182_mute.png │ │ │ ├── glyphicons_183_volume_down.png │ │ │ ├── glyphicons_184_volume_up.png │ │ │ ├── glyphicons_185_screenshot.png │ │ │ ├── glyphicons_186_move.png │ │ │ ├── glyphicons_187_more.png │ │ │ ├── glyphicons_188_brightness_reduce.png │ │ │ ├── glyphicons_189_brightness_increase.png │ │ │ ├── glyphicons_190_circle_plus.png │ │ │ ├── glyphicons_191_circle_minus.png │ │ │ ├── glyphicons_192_circle_remove.png │ │ │ ├── glyphicons_193_circle_ok.png │ │ │ ├── glyphicons_194_circle_question_mark.png │ │ │ ├── glyphicons_195_circle_info.png │ │ │ ├── glyphicons_196_circle_exclamation_mark.png │ │ │ ├── glyphicons_197_remove.png │ │ │ ├── glyphicons_198_ok.png │ │ │ ├── glyphicons_199_ban.png │ │ │ ├── glyphicons_200_download.png │ │ │ ├── glyphicons_201_upload.png │ │ │ ├── glyphicons_202_shopping_cart.png │ │ │ ├── glyphicons_203_lock.png │ │ │ ├── glyphicons_204_unlock.png │ │ │ ├── glyphicons_205_electricity.png │ │ │ ├── glyphicons_206_ok_2.png │ │ │ ├── glyphicons_207_remove_2.png │ │ │ ├── glyphicons_208_cart_out.png │ │ │ ├── glyphicons_209_cart_in.png │ │ │ ├── glyphicons_210_left_arrow.png │ │ │ ├── glyphicons_211_right_arrow.png │ │ │ ├── glyphicons_212_down_arrow.png │ │ │ ├── glyphicons_213_up_arrow.png │ │ │ ├── glyphicons_214_resize_small.png │ │ │ ├── glyphicons_215_resize_full.png │ │ │ ├── glyphicons_216_circle_arrow_left.png │ │ │ ├── glyphicons_217_circle_arrow_right.png │ │ │ ├── glyphicons_218_circle_arrow_right.png │ │ │ ├── glyphicons_219_circle_arrow_right.png │ │ │ ├── glyphicons_220_play_button.png │ │ │ ├── glyphicons_221_unshare.png │ │ │ ├── glyphicons_222_share.png │ │ │ ├── glyphicons_223_thin_right_arrow.png │ │ │ ├── glyphicons_224_thin_arrow_left.png │ │ │ ├── glyphicons_225_bluetooth.png │ │ │ ├── glyphicons_226_euro.png │ │ │ ├── glyphicons_227_usd.png │ │ │ ├── glyphicons_228_bp.png │ │ │ ├── glyphicons_229_retweet_2.png │ │ │ ├── glyphicons_230_moon.png │ │ │ ├── glyphicons_231_sun.png │ │ │ ├── glyphicons_232_cloud.png │ │ │ ├── glyphicons_233_direction.png │ │ │ ├── glyphicons_234_brush.png │ │ │ ├── glyphicons_235_pen.png │ │ │ ├── glyphicons_236_zoom_in.png │ │ │ ├── glyphicons_237_zoom_out.png │ │ │ ├── glyphicons_238_pin.png │ │ │ ├── glyphicons_239_riflescope.png │ │ │ ├── glyphicons_240_rotation_lock.png │ │ │ ├── glyphicons_241_flash.png │ │ │ ├── glyphicons_242_google_maps.png │ │ │ ├── glyphicons_243_anchor.png │ │ │ ├── glyphicons_244_conversation.png │ │ │ ├── glyphicons_245_chat.png │ │ │ ├── glyphicons_246_male.png │ │ │ ├── glyphicons_247_female.png │ │ │ ├── glyphicons_248_asterisk.png │ │ │ ├── glyphicons_249_divide.png │ │ │ ├── glyphicons_250_snorkel_diving.png │ │ │ ├── glyphicons_251_scuba_diving.png │ │ │ ├── glyphicons_252_oxygen_bottle.png │ │ │ ├── glyphicons_253_fins.png │ │ │ ├── glyphicons_254_fishes.png │ │ │ ├── glyphicons_255_boat.png │ │ │ ├── glyphicons_256_delete_point.png │ │ │ ├── glyphicons_257_sheriffs_-star.png │ │ │ ├── glyphicons_258_qrcode.png │ │ │ ├── glyphicons_259_barcode.png │ │ │ ├── glyphicons_260_pool.png │ │ │ ├── glyphicons_261_buoy.png │ │ │ ├── glyphicons_262_spade.png │ │ │ ├── glyphicons_263_bank.png │ │ │ ├── glyphicons_264_vcard.png │ │ │ ├── glyphicons_265_electrical_plug.png │ │ │ ├── glyphicons_266_flag.png │ │ │ ├── glyphicons_267_credit_card.png │ │ │ ├── glyphicons_268_keyboard_wireless.png │ │ │ ├── glyphicons_269_keyboard_wired.png │ │ │ ├── glyphicons_270_shield.png │ │ │ ├── glyphicons_271_ring.png │ │ │ ├── glyphicons_272_cake.png │ │ │ ├── glyphicons_273_drink.png │ │ │ ├── glyphicons_274_beer.png │ │ │ ├── glyphicons_275_fast_food.png │ │ │ ├── glyphicons_276_cutlery.png │ │ │ ├── glyphicons_277_pizza.png │ │ │ ├── glyphicons_278_birthday_cake.png │ │ │ ├── glyphicons_279_tablet.png │ │ │ ├── glyphicons_280_settings.png │ │ │ ├── glyphicons_281_bullets.png │ │ │ ├── glyphicons_282_cardio.png │ │ │ ├── glyphicons_283_t-shirt.png │ │ │ ├── glyphicons_284_pants.png │ │ │ ├── glyphicons_285_sweater.png │ │ │ ├── glyphicons_286_fabric.png │ │ │ ├── glyphicons_287_leather.png │ │ │ ├── glyphicons_288_scissors.png │ │ │ ├── glyphicons_289_podium.png │ │ │ ├── glyphicons_290_skull.png │ │ │ ├── glyphicons_291_celebration.png │ │ │ ├── glyphicons_292_tea_kettle.png │ │ │ ├── glyphicons_293_french_press.png │ │ │ ├── glyphicons_294_coffe_cup.png │ │ │ ├── glyphicons_295_pot.png │ │ │ ├── glyphicons_296_grater.png │ │ │ ├── glyphicons_297_kettle.png │ │ │ ├── glyphicons_298_hospital.png │ │ │ ├── glyphicons_299_hospital_h.png │ │ │ ├── glyphicons_300_microphone.png │ │ │ ├── glyphicons_301_webcam.png │ │ │ ├── glyphicons_302_temple_christianity_church.png │ │ │ ├── glyphicons_303_temple_islam.png │ │ │ ├── glyphicons_304_temple_hindu.png │ │ │ ├── glyphicons_305_temple_buddhist.png │ │ │ ├── glyphicons_306_electrical_socket_eu.png │ │ │ ├── glyphicons_307_electrical_socket_us.png │ │ │ ├── glyphicons_308_bomb.png │ │ │ ├── glyphicons_309_comments.png │ │ │ ├── glyphicons_310_flower.png │ │ │ ├── glyphicons_311_baseball.png │ │ │ ├── glyphicons_312_rugby.png │ │ │ ├── glyphicons_313_ax.png │ │ │ ├── glyphicons_314_table_tennis.png │ │ │ ├── glyphicons_315_bowling.png │ │ │ ├── glyphicons_316_tree_conifer.png │ │ │ ├── glyphicons_317_tree_deciduous.png │ │ │ ├── glyphicons_318_more-items.png │ │ │ ├── glyphicons_319_sort.png │ │ │ ├── glyphicons_320_facebook.png │ │ │ ├── glyphicons_321_twitter_t.png │ │ │ ├── glyphicons_322_twitter.png │ │ │ ├── glyphicons_323_buzz.png │ │ │ ├── glyphicons_324_vimeo.png │ │ │ ├── glyphicons_325_flickr.png │ │ │ ├── glyphicons_326_last_fm.png │ │ │ ├── glyphicons_327_rss.png │ │ │ ├── glyphicons_328_skype.png │ │ │ ├── glyphicons_329_e-mail.png │ │ │ ├── glyphicons_330_instapaper.png │ │ │ ├── glyphicons_331_evernote.png │ │ │ ├── glyphicons_332_xing.png │ │ │ ├── glyphicons_333_zootool.png │ │ │ ├── glyphicons_334_dribbble.png │ │ │ ├── glyphicons_335_deviantart.png │ │ │ ├── glyphicons_336_read_it_later.png │ │ │ ├── glyphicons_337_linked_in.png │ │ │ ├── glyphicons_338_forrst.png │ │ │ ├── glyphicons_339_pinboard.png │ │ │ ├── glyphicons_340_behance.png │ │ │ ├── glyphicons_341_github.png │ │ │ ├── glyphicons_342_youtube.png │ │ │ ├── glyphicons_343_skitch.png │ │ │ ├── glyphicons_344_4square.png │ │ │ ├── glyphicons_345_quora.png │ │ │ ├── glyphicons_346_google_plus.png │ │ │ ├── glyphicons_347_spootify.png │ │ │ ├── glyphicons_348_stumbleupon.png │ │ │ └── glyphicons_349_readability.png │ │ └── menu_icon.png │ ├── js │ │ └── options.js │ ├── options.php │ └── validation │ │ ├── color │ │ └── validation_color.php │ │ ├── comma_numeric │ │ └── validation_comma_numeric.php │ │ ├── date │ │ └── validation_date.php │ │ ├── email │ │ └── validation_email.php │ │ ├── html │ │ └── validation_html.php │ │ ├── html_custom │ │ └── validation_html_custom.php │ │ ├── js │ │ └── validation_js.php │ │ ├── no_html │ │ └── validation_no_html.php │ │ ├── no_special_chars │ │ └── validation_no_special_chars.php │ │ ├── numeric │ │ └── validation_numeric.php │ │ ├── preg_replace │ │ └── validation_preg_replace.php │ │ ├── str_replace │ │ └── validation_str_replace.php │ │ └── url │ │ └── validation_url.php └── recaptchalib.php ├── page.php ├── page ├── bookmarks.php ├── following.php ├── need-signin.php ├── need-signout.php ├── new-topic.php ├── notifications.php ├── planes.php ├── recent.php └── settings.php ├── screenshot.png ├── searchform.php ├── sidebar.php ├── sidebar ├── category.php ├── home.php └── new.php ├── single.php └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-project 2 | *.sublime-workspace 3 | *.psd 4 | 5 | # OS related 6 | .DS_Store? 7 | ehthumbs.db 8 | Icon? 9 | Thumbs.db 10 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 |
12 |
13 |

14 |
15 |
16 |

17 |
18 |
19 |
20 |
21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # V2Press 2 | 3 | ------- 4 | 5 | V2Press 是一个 WordPress 主题,允许您使用 WordPress 架构一个简单而清爽的小型论坛或社区。 6 | 7 | ------- 8 | 9 | ## 重要声明 10 | 11 | V2Press 已经停止开发,使用风险自负。我也不会解答任何问题,修正任何 bug。 12 | 13 | ## 特性说明 14 | 15 | - 充分利用 WordPress 的特点 16 | - 未改变 WordPress 的数据库结构 17 | - 支持 HTML5 和 CSS3 18 | - 界面简洁、优雅 19 | - 功能专注 20 | 21 | ## 安装需求 22 | 23 | - PHP 5.2.4+ 24 | - MySQL 5.0 25 | - Apache 的 mod_rewrite 模块 26 | - WordPress 3.3+,包括 WordPress 3.4+ 27 | 28 | ## 作者信息 29 | 30 | Andor Chen [http://about.ac](http://about.ac) 31 | 32 | Twitter: [@Andor_Chen](https://twitter.com/#!/Andor_Chen) 33 | 34 | ## 发布协议 35 | 36 | V2Press 的发布协议和 WordPress 一样,采用 [GPLv2 (or later)](http://wordpress.org/about/gpl/) 协议。 37 | 38 | ## 致谢 39 | 40 | - 感谢我贤惠的妻子和可爱的儿子 41 | - 感谢 [Project Babel 2](https://github.com/livid/v2ex) 的原初设计 42 | -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 |
12 |
13 |

14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 |
22 | 23 |
24 | 34 |
35 | 36 |
37 | 38 |
39 |
40 |
41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 13 |
14 |

15 |
16 | 20 | 21 | 22 |
23 |
24 |

25 |
26 | 27 |
    28 | 'vp_comments_list' ) ); ?> 29 |
30 | 31 | 1 && get_option( 'page_comments' ) ) : ?> 32 | 35 | 36 |
37 | 38 | 39 |
40 |

41 |
42 | 43 | 44 | 45 | 46 | 47 |
48 |

', '' ); ?>

49 |
50 | 51 | -------------------------------------------------------------------------------- /content/edit.php: -------------------------------------------------------------------------------- 1 | 28 |
29 |
30 |
31 |

32 |
33 |
34 | 35 |
36 |
37 |
38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /content/single.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 |
12 | 13 |
> 14 |
15 |

16 |

17 | 18 |

19 |
20 |
21 | 22 | 23 |
24 |
25 | 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /content/topics-list.php: -------------------------------------------------------------------------------- 1 | 8 |
> 9 | 10 | 13 |

14 |
15 | 16 | • 17 | 18 | • 19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /content/zero.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |

10 |
-------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/images/loading.gif -------------------------------------------------------------------------------- /images/logo/default-node-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/images/logo/default-node-logo.png -------------------------------------------------------------------------------- /images/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/images/reply.png -------------------------------------------------------------------------------- /images/sprite-member-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/images/sprite-member-icons.png -------------------------------------------------------------------------------- /inc/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/vp-hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |

7 |
8 | 9 |
10 | 20 |
21 | 22 |
23 | 24 |
25 |
26 |
27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /js/html5.js: -------------------------------------------------------------------------------- 1 | // html5shiv MIT @rem remysharp.com/html5-enabling-script 2 | // iepp v1.6.2 MIT @jon_neal iecss.com/print-protector 3 | /*@cc_on(function(a,b){function r(a){var b=-1;while(++b";return a.childNodes.length!==1}())){a.iepp=a.iepp||{};var c=a.iepp,d=c.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",e=d.split("|"),f=e.length,g=new RegExp("(^|\\s)("+d+")","gi"),h=new RegExp("<(/*)("+d+")","gi"),i=/^\s*[\{\}]\s*$/,j=new RegExp("(^|[^\\n]*?\\s)("+d+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),k=b.createDocumentFragment(),l=b.documentElement,m=l.firstChild,n=b.createElement("body"),o=b.createElement("style"),p=/print|all/,q;c.getCSS=function(a,b){if(a+""===undefined)return"";var d=-1,e=a.length,f,g=[];while(++d -------------------------------------------------------------------------------- /languages/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/languages/zh_CN.mo -------------------------------------------------------------------------------- /libs/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/bg_fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/bg_fallback.png -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/icon_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/icon_sprite.png -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/progress_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/progress_bar.gif -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/slider_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/slider_handles.png -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /libs/nhp-options/css/jquery-ui-aristo/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/css/jquery-ui-aristo/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /libs/nhp-options/fields/button_set/field_button_set.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | jQuery('.buttonset').buttonset(); 3 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/cats_multi_select/field_cats_multi_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 46 | 47 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 48 | 49 | }//function 50 | 51 | }//class 52 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/cats_select/field_cats_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/checkbox/field_checkbox.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:''; 32 | 33 | echo ($this->field['desc'] != '')?' ':''; 38 | 39 | }//function 40 | 41 | }//class 42 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/checkbox_hide_below/field_checkbox_hide_below.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | jQuery('.nhp-opts-checkbox-hide-below').each(function(){ 4 | if(!jQuery(this).is(':checked')){ 5 | jQuery(this).closest('tr').next('tr').hide(); 6 | } 7 | }); 8 | 9 | jQuery('.nhp-opts-checkbox-hide-below').click(function(){ 10 | jQuery(this).closest('tr').next('tr').fadeToggle('slow'); 11 | }); 12 | 13 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/checkbox_hide_below/field_checkbox_hide_below.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:''; 32 | 33 | echo ($this->field['desc'] != '')?' ':''; 38 | 39 | }//function 40 | 41 | 42 | /** 43 | * Enqueue Function. 44 | * 45 | * If this field requires any scripts, or css define this function and register/enqueue the scripts/css 46 | * 47 | * @since NHP_Options 1.0.1 48 | */ 49 | function enqueue(){ 50 | 51 | wp_enqueue_script( 52 | 'nhp-opts-checkbox-hide-below-js', 53 | NHP_OPTIONS_URL.'fields/checkbox_hide_below/field_checkbox_hide_below.js', 54 | array('jquery'), 55 | time(), 56 | true 57 | ); 58 | 59 | }//function 60 | 61 | }//class 62 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/color/field_color.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | /* 4 | * 5 | * NHP_Options_color function 6 | * Adds farbtastic to color elements 7 | * 8 | */ 9 | $colorpicker_inputs = jQuery('input.popup-colorpicker'); 10 | 11 | $colorpicker_inputs.each( 12 | function(){ 13 | var $input = jQuery(this); 14 | var sIdSelector = "#" + jQuery(this).attr('id') + "picker"; 15 | var oFarb = jQuery.farbtastic( 16 | sIdSelector, 17 | function( color ){ 18 | 19 | $input.css({ 20 | backgroundColor: color, 21 | color: oFarb.hsl[2] > 0.5 ? '#000' : '#fff' 22 | }).val( color ); 23 | 24 | 25 | if( oFarb.bound == true ){ 26 | $input.change(); 27 | }else{ 28 | oFarb.bound = true; 29 | } 30 | } 31 | ); 32 | oFarb.setColor( $input.val() ); 33 | 34 | } 35 | ); 36 | 37 | $colorpicker_inputs.each(function(e){ 38 | jQuery(this).next('.farb-popup').hide(); 39 | }); 40 | 41 | 42 | $colorpicker_inputs.live('focus',function(e){ 43 | jQuery(this).next('.farb-popup').show(); 44 | jQuery(this).parents('li').css({ 45 | position : 'relative', 46 | zIndex : '9999' 47 | }) 48 | jQuery('#tabber').css({overflow:'visible'}); 49 | }); 50 | 51 | $colorpicker_inputs.live('blur',function(e){ 52 | jQuery(this).next('.farb-popup').hide(); 53 | jQuery(this).parents('li').css({ 54 | zIndex : '0' 55 | }) 56 | }); 57 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/color/field_color.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:''; 32 | 33 | echo '
'; 34 | 35 | echo ''; 36 | echo '
'; 37 | 38 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 39 | 40 | echo '
'; 41 | 42 | }//function 43 | 44 | 45 | /** 46 | * Enqueue Function. 47 | * 48 | * If this field requires any scripts, or css define this function and register/enqueue the scripts/css 49 | * 50 | * @since NHP_Options 1.0 51 | */ 52 | function enqueue(){ 53 | 54 | wp_enqueue_script( 55 | 'nhp-opts-field-color-js', 56 | NHP_OPTIONS_URL.'fields/color/field_color.js', 57 | array('jquery', 'farbtastic'), 58 | time(), 59 | true 60 | ); 61 | 62 | }//function 63 | 64 | }//class 65 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/date/field_date.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | /* 4 | * 5 | * NHP_Options_date function 6 | * Adds datepicker js 7 | * 8 | */ 9 | jQuery('.nhp-opts-datepicker').datepicker(); 10 | 11 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/date/field_date.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:''; 32 | 33 | echo ''; 34 | 35 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 36 | 37 | }//function 38 | 39 | 40 | 41 | /** 42 | * Enqueue Function. 43 | * 44 | * If this field requires any scripts, or css define this function and register/enqueue the scripts/css 45 | * 46 | * @since NHP_Options 1.0 47 | */ 48 | function enqueue(){ 49 | wp_enqueue_style('nhp-opts-jquery-ui-css'); 50 | wp_enqueue_script( 51 | 'nhp-opts-field-date-js', 52 | NHP_OPTIONS_URL.'fields/date/field_date.js', 53 | array('jquery', 'jquery-ui-core', 'jquery-ui-datepicker'), 54 | time(), 55 | true 56 | ); 57 | 58 | }//function 59 | 60 | }//class 61 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/divide/field_divide.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?' '.$this->field['class'].'':''; 32 | 33 | echo '
'; 34 | 35 | }//function 36 | 37 | }//class 38 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/editor/field_editor.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:''; 32 | 33 | //echo ''; 34 | $settings = array( 35 | 'textarea_name' => $this->args['opt_name'].'['.$this->field['id'].']', 36 | 'editor_class' => $class 37 | ); 38 | wp_editor($this->value, $this->field['id'], $settings ); 39 | 40 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 41 | 42 | }//function 43 | 44 | }//class 45 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/info/field_info.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?' '.$this->field['class']:''; 32 | 33 | echo '
'.$this->field['desc'].'
'; 34 | 35 | }//function 36 | 37 | }//class 38 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/menu_location_select/field_menu_location_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | global $_wp_registered_nav_menus; 33 | 34 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/menu_select/field_menu_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 46 | 47 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 48 | 49 | }//function 50 | 51 | }//class 52 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/multi_checkbox/field_multi_checkbox.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:'regular-text'; 32 | 33 | echo '
'; 34 | 35 | foreach($this->field['options'] as $k => $v){ 36 | 37 | $this->value[$k] = (isset($this->value[$k]))?$this->value[$k]:''; 38 | 39 | echo '
'; 42 | 43 | }//foreach 44 | 45 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?''.$this->field['desc'].'':''; 46 | 47 | echo '
'; 48 | 49 | }//function 50 | 51 | }//class 52 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/multi_select/field_multi_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 44 | 45 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 46 | 47 | }//function 48 | 49 | }//class 50 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/multi_text/field_multi_text.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | jQuery('.nhp-opts-multi-text-remove').live('click', function(){ 4 | jQuery(this).prev('input[type="text"]').val(''); 5 | jQuery(this).parent().fadeOut('slow', function(){jQuery(this).remove();}); 6 | }); 7 | 8 | jQuery('.nhp-opts-multi-text-add').click(function(){ 9 | var new_input = jQuery('#'+jQuery(this).attr('rel-id')+' li:last-child').clone(); 10 | jQuery('#'+jQuery(this).attr('rel-id')).append(new_input); 11 | jQuery('#'+jQuery(this).attr('rel-id')+' li:last-child').removeAttr('style'); 12 | jQuery('#'+jQuery(this).attr('rel-id')+' li:last-child input[type="text"]').val(''); 13 | jQuery('#'+jQuery(this).attr('rel-id')+' li:last-child input[type="text"]').attr('name' , jQuery(this).attr('rel-name')); 14 | }); 15 | 16 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/pages_multi_select/field_pages_multi_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 46 | 47 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 48 | 49 | }//function 50 | 51 | }//class 52 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/pages_select/field_pages_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/post_type_select/field_post_type_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/posts_multi_select/field_posts_multi_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 44 | 45 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 46 | 47 | }//function 48 | 49 | }//class 50 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/posts_select/field_posts_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/radio/field_radio.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo '
'; 34 | 35 | foreach($this->field['options'] as $k => $v){ 36 | 37 | //echo ''; 38 | echo '
'; 42 | 43 | }//foreach 44 | 45 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?''.$this->field['desc'].'':''; 46 | 47 | echo '
'; 48 | 49 | }//function 50 | 51 | }//class 52 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/radio_img/field_radio_img.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * NHP_Options_radio_img function 4 | * Changes the radio select option, and changes class on images 5 | * 6 | */ 7 | function nhp_radio_img_select(relid, labelclass){ 8 | jQuery(this).prev('input[type="radio"]').prop('checked'); 9 | 10 | jQuery('.nhp-radio-img-'+labelclass).removeClass('nhp-radio-img-selected'); 11 | 12 | jQuery('label[for="'+relid+'"]').addClass('nhp-radio-img-selected'); 13 | }//function -------------------------------------------------------------------------------- /libs/nhp-options/fields/select/field_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 42 | 43 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 44 | 45 | }//function 46 | 47 | }//class 48 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/select_hide_below/field_select_hide_below.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | jQuery('.nhp-opts-select-hide-below').each(function(){ 4 | if(jQuery('option:selected',this).attr('data-allow') == 'false'){ 5 | jQuery(this).closest('tr').next('tr').hide(); 6 | } 7 | }); 8 | 9 | jQuery('.nhp-opts-select-hide-below').change(function(){ 10 | var option = jQuery('option:selected', this); 11 | 12 | if(option.attr('data-allow') == 'false'){ 13 | 14 | if(jQuery(this).closest('tr').next('tr').is(':visible')){ 15 | jQuery(this).closest('tr').next('tr').fadeOut('slow'); 16 | } 17 | 18 | }else{ 19 | if(jQuery(this).closest('tr').next('tr').is(':hidden')){ 20 | jQuery(this).closest('tr').next('tr').fadeIn('slow'); 21 | } 22 | 23 | } 24 | }); 25 | 26 | }); -------------------------------------------------------------------------------- /libs/nhp-options/fields/tags_multi_select/field_tags_multi_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 44 | 45 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 46 | 47 | }//function 48 | 49 | }//class 50 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/tags_select/field_tags_select.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0.1 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?'class="'.$this->field['class'].'" ':''; 32 | 33 | echo ''; 43 | 44 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 45 | 46 | }//function 47 | 48 | }//class 49 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/text/field_text.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:'regular-text'; 32 | 33 | $placeholder = (isset($this->field['placeholder']))?' placeholder="'.esc_attr($this->field['placeholder']).'" ':''; 34 | 35 | echo ''; 36 | 37 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?' '.$this->field['desc'].'':''; 38 | 39 | }//function 40 | 41 | }//class 42 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/textarea/field_textarea.php: -------------------------------------------------------------------------------- 1 | sections, $parent->args, $parent->extra_tabs); 14 | $this->field = $field; 15 | $this->value = $value; 16 | //$this->render(); 17 | 18 | }//function 19 | 20 | 21 | 22 | /** 23 | * Field Render Function. 24 | * 25 | * Takes the vars and outputs the HTML for the field in the settings 26 | * 27 | * @since NHP_Options 1.0 28 | */ 29 | function render(){ 30 | 31 | $class = (isset($this->field['class']))?$this->field['class']:'large-text'; 32 | 33 | $placeholder = (isset($this->field['placeholder']))?' placeholder="'.esc_attr($this->field['placeholder']).'" ':''; 34 | 35 | echo ''; 36 | 37 | echo (isset($this->field['desc']) && !empty($this->field['desc']))?'
'.$this->field['desc'].'':''; 38 | 39 | }//function 40 | 41 | }//class 42 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/fields/upload/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/fields/upload/blank.png -------------------------------------------------------------------------------- /libs/nhp-options/fields/upload/field_upload.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){ 2 | 3 | 4 | /* 5 | * 6 | * NHP_Options_upload function 7 | * Adds media upload functionality to the page 8 | * 9 | */ 10 | 11 | var header_clicked = false; 12 | 13 | jQuery("img[src='']").attr("src", nhp_upload.url); 14 | 15 | jQuery('.nhp-opts-upload').click(function() { 16 | header_clicked = true; 17 | formfield = jQuery(this).attr('rel-id'); 18 | preview = jQuery(this).prev('img'); 19 | tb_show('', 'media-upload.php?type=image&post_id=0&TB_iframe=true'); 20 | return false; 21 | }); 22 | 23 | 24 | // Store original function 25 | window.original_send_to_editor = window.send_to_editor; 26 | 27 | 28 | window.send_to_editor = function(html) { 29 | if (header_clicked) { 30 | imgurl = jQuery('img',html).attr('src'); 31 | jQuery('#' + formfield).val(imgurl); 32 | jQuery('#' + formfield).next().fadeIn('slow'); 33 | jQuery('#' + formfield).next().next().fadeOut('slow'); 34 | jQuery('#' + formfield).next().next().next().fadeIn('slow'); 35 | jQuery(preview).attr('src' , imgurl); 36 | tb_remove(); 37 | header_clicked = false; 38 | } else { 39 | window.original_send_to_editor(html); 40 | } 41 | } 42 | 43 | jQuery('.nhp-opts-upload-remove').click(function(){ 44 | $relid = jQuery(this).attr('rel-id'); 45 | jQuery('#'+$relid).val(''); 46 | jQuery(this).prev().fadeIn('slow'); 47 | jQuery(this).prev().prev().fadeOut('slow', function(){jQuery(this).attr("src", nhp_upload.url);}); 48 | jQuery(this).fadeOut('slow'); 49 | }); 50 | }); -------------------------------------------------------------------------------- /libs/nhp-options/img/1col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/1col.png -------------------------------------------------------------------------------- /libs/nhp-options/img/2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/2cl.png -------------------------------------------------------------------------------- /libs/nhp-options/img/2cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/2cr.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_000_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_000_glass.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_001_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_001_leaf.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_002_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_002_dog.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_003_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_003_user.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_004_girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_004_girl.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_005_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_005_car.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_006_user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_006_user_add.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_007_user_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_007_user_remove.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_008_film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_008_film.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_009_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_009_magic.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_010_envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_010_envelope.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_011_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_011_camera.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_012_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_012_heart.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_013_beach_umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_013_beach_umbrella.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_014_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_014_train.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_015_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_015_print.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_016_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_016_bin.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_017_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_017_music.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_018_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_018_note.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_019_cogwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_019_cogwheel.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_020_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_020_home.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_021_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_021_snowflake.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_022_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_022_fire.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_023_cogwheels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_023_cogwheels.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_024_parents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_024_parents.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_025_binoculars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_025_binoculars.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_026_road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_026_road.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_027_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_027_search.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_028_cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_028_cars.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_029_notes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_029_notes_2.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_030_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_030_pencil.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_031_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_031_bus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_032_wifi_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_032_wifi_alt.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_033_luggage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_033_luggage.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_034_old_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_034_old_man.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_035_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_035_woman.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_036_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_036_file.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_037_credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_037_credit.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_038_airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_038_airplane.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_039_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_039_notes.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_040_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_040_stats.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_041_charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_041_charts.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_042_pie_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_042_pie_chart.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_043_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_043_group.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_044_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_044_keys.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_045_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_045_calendar.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_046_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_046_router.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_047_camera_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_047_camera_small.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_048_dislikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_048_dislikes.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_049_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_049_star.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_050_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_050_link.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_051_eye_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_051_eye_open.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_052_eye_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_052_eye_close.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_053_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_053_alarm.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_054_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_054_clock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_055_stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_055_stopwatch.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_056_projector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_056_projector.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_057_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_057_history.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_058_truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_058_truck.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_059_cargo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_059_cargo.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_060_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_060_compass.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_061_keynote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_061_keynote.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_062_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_062_attach.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_063_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_063_power.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_064_lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_064_lightbulb.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_065_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_065_tag.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_066_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_066_tags.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_067_cleaning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_067_cleaning.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_068_ruller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_068_ruller.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_069_gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_069_gift.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_070_umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_070_umbrella.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_071_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_071_book.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_072_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_072_bookmark.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_073_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_073_signal.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_074_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_074_cup.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_075_stroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_075_stroller.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_076_headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_076_headphones.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_077_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_077_headset.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_078_warning_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_078_warning_sign.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_079_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_079_signal.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_080_retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_080_retweet.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_081_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_081_refresh.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_082_roundabout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_082_roundabout.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_083_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_083_random.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_084_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_084_heat.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_085_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_085_repeat.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_086_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_086_display.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_087_log_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_087_log_book.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_088_adress_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_088_adress_book.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_089_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_089_magnet.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_090_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_090_table.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_091_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_091_adjust.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_092_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_092_tint.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_093_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_093_crop.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_094_vector_path_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_094_vector_path_square.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_095_vector_path_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_095_vector_path_circle.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_096_vector_path_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_096_vector_path_polygon.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_097_vector_path_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_097_vector_path_line.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_098_vector_path_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_098_vector_path_curve.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_099_vector_path_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_099_vector_path_all.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_100_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_100_font.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_101_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_101_italic.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_102_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_102_bold.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_103_text_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_103_text_underline.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_104_text_strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_104_text_strike.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_105_text_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_105_text_height.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_106_text_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_106_text_width.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_107_text_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_107_text_resize.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_108_left_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_108_left_indent.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_109_right_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_109_right_indent.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_110_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_110_align_left.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_111_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_111_align_center.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_112_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_112_align_right.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_113_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_113_justify.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_114_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_114_list.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_115_text_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_115_text_smaller.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_116_text_bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_116_text_bigger.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_117_embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_117_embed.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_118_embed_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_118_embed_close.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_119_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_119_adjust.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_120_message_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_120_message_full.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_121_message_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_121_message_empty.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_122_message_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_122_message_in.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_123_message_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_123_message_out.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_124_message_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_124_message_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_125_message_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_125_message_minus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_126_message_ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_126_message_ban.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_127_message_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_127_message_flag.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_128_message_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_128_message_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_129_message_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_129_message_new.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_130_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_130_inbox.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_131_inbox_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_131_inbox_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_132_inbox_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_132_inbox_minus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_133_inbox_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_133_inbox_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_134_inbox_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_134_inbox_in.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_135_inbox_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_135_inbox_out.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_136_computer_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_136_computer_locked.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_137_computer_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_137_computer_service.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_138_computer_proces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_138_computer_proces.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_139_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_139_phone.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_140_database_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_140_database_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_141_database_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_141_database_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_142_database_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_142_database_minus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_143_database_ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_143_database_ban.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_144_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_144_folder_open.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_145_folder_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_145_folder_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_146_folder_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_146_folder_minus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_147_folder_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_147_folder_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_148_folder_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_148_folder_flag.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_149_folder_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_149_folder_new.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_150_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_150_check.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_151_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_151_edit.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_152_new_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_152_new_window.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_153_more_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_153_more_windows.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_154_show_big_thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_154_show_big_thumbnails.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_155_show_thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_155_show_thumbnails.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_156_show_thumbnails_with_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_156_show_thumbnails_with_lines.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_157_show_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_157_show_lines.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_158_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_158_playlist.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_159_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_159_picture.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_160_imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_160_imac.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_161_macbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_161_macbook.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_162_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_162_ipad.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_163_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_163_iphone.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_164_iphone_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_164_iphone_transfer.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_165_iphone_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_165_iphone_exchange.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_166_ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_166_ipod.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_167_ipod_shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_167_ipod_shuffle.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_168_ear_plugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_168_ear_plugs.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_169_albums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_169_albums.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_170_step_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_170_step_backward.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_171_fast_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_171_fast_backward.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_172_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_172_rewind.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_173_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_173_play.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_174_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_174_pause.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_175_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_175_stop.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_176_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_176_forward.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_177_fast_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_177_fast_forward.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_178_step_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_178_step_forward.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_179_eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_179_eject.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_180_facetime_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_180_facetime_video.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_181_download_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_181_download_alt.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_182_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_182_mute.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_183_volume_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_183_volume_down.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_184_volume_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_184_volume_up.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_185_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_185_screenshot.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_186_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_186_move.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_187_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_187_more.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_188_brightness_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_188_brightness_reduce.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_189_brightness_increase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_189_brightness_increase.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_190_circle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_190_circle_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_191_circle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_191_circle_minus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_192_circle_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_192_circle_remove.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_193_circle_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_193_circle_ok.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_194_circle_question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_194_circle_question_mark.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_195_circle_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_195_circle_info.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_196_circle_exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_196_circle_exclamation_mark.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_197_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_197_remove.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_198_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_198_ok.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_199_ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_199_ban.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_200_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_200_download.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_201_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_201_upload.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_202_shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_202_shopping_cart.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_203_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_203_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_204_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_204_unlock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_205_electricity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_205_electricity.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_206_ok_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_206_ok_2.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_207_remove_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_207_remove_2.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_208_cart_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_208_cart_out.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_209_cart_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_209_cart_in.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_210_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_210_left_arrow.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_211_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_211_right_arrow.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_212_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_212_down_arrow.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_213_up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_213_up_arrow.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_214_resize_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_214_resize_small.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_215_resize_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_215_resize_full.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_216_circle_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_216_circle_arrow_left.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_217_circle_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_217_circle_arrow_right.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_218_circle_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_218_circle_arrow_right.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_219_circle_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_219_circle_arrow_right.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_220_play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_220_play_button.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_221_unshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_221_unshare.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_222_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_222_share.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_223_thin_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_223_thin_right_arrow.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_224_thin_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_224_thin_arrow_left.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_225_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_225_bluetooth.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_226_euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_226_euro.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_227_usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_227_usd.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_228_bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_228_bp.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_229_retweet_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_229_retweet_2.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_230_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_230_moon.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_231_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_231_sun.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_232_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_232_cloud.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_233_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_233_direction.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_234_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_234_brush.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_235_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_235_pen.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_236_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_236_zoom_in.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_237_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_237_zoom_out.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_238_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_238_pin.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_239_riflescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_239_riflescope.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_240_rotation_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_240_rotation_lock.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_241_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_241_flash.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_242_google_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_242_google_maps.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_243_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_243_anchor.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_244_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_244_conversation.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_245_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_245_chat.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_246_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_246_male.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_247_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_247_female.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_248_asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_248_asterisk.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_249_divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_249_divide.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_250_snorkel_diving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_250_snorkel_diving.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_251_scuba_diving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_251_scuba_diving.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_252_oxygen_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_252_oxygen_bottle.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_253_fins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_253_fins.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_254_fishes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_254_fishes.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_255_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_255_boat.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_256_delete_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_256_delete_point.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_257_sheriffs_-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_257_sheriffs_-star.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_258_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_258_qrcode.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_259_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_259_barcode.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_260_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_260_pool.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_261_buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_261_buoy.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_262_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_262_spade.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_263_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_263_bank.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_264_vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_264_vcard.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_265_electrical_plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_265_electrical_plug.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_266_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_266_flag.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_267_credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_267_credit_card.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_268_keyboard_wireless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_268_keyboard_wireless.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_269_keyboard_wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_269_keyboard_wired.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_270_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_270_shield.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_271_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_271_ring.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_272_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_272_cake.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_273_drink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_273_drink.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_274_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_274_beer.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_275_fast_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_275_fast_food.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_276_cutlery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_276_cutlery.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_277_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_277_pizza.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_278_birthday_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_278_birthday_cake.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_279_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_279_tablet.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_280_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_280_settings.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_281_bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_281_bullets.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_282_cardio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_282_cardio.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_283_t-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_283_t-shirt.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_284_pants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_284_pants.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_285_sweater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_285_sweater.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_286_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_286_fabric.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_287_leather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_287_leather.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_288_scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_288_scissors.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_289_podium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_289_podium.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_290_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_290_skull.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_291_celebration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_291_celebration.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_292_tea_kettle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_292_tea_kettle.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_293_french_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_293_french_press.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_294_coffe_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_294_coffe_cup.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_295_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_295_pot.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_296_grater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_296_grater.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_297_kettle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_297_kettle.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_298_hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_298_hospital.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_299_hospital_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_299_hospital_h.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_300_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_300_microphone.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_301_webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_301_webcam.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_302_temple_christianity_church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_302_temple_christianity_church.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_303_temple_islam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_303_temple_islam.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_304_temple_hindu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_304_temple_hindu.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_305_temple_buddhist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_305_temple_buddhist.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_306_electrical_socket_eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_306_electrical_socket_eu.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_307_electrical_socket_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_307_electrical_socket_us.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_308_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_308_bomb.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_309_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_309_comments.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_310_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_310_flower.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_311_baseball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_311_baseball.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_312_rugby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_312_rugby.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_313_ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_313_ax.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_314_table_tennis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_314_table_tennis.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_315_bowling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_315_bowling.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_316_tree_conifer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_316_tree_conifer.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_317_tree_deciduous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_317_tree_deciduous.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_318_more-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_318_more-items.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_319_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_319_sort.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_320_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_320_facebook.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_321_twitter_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_321_twitter_t.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_322_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_322_twitter.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_323_buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_323_buzz.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_324_vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_324_vimeo.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_325_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_325_flickr.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_326_last_fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_326_last_fm.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_327_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_327_rss.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_328_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_328_skype.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_329_e-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_329_e-mail.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_330_instapaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_330_instapaper.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_331_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_331_evernote.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_332_xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_332_xing.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_333_zootool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_333_zootool.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_334_dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_334_dribbble.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_335_deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_335_deviantart.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_336_read_it_later.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_336_read_it_later.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_337_linked_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_337_linked_in.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_338_forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_338_forrst.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_339_pinboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_339_pinboard.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_340_behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_340_behance.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_341_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_341_github.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_342_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_342_youtube.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_343_skitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_343_skitch.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_344_4square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_344_4square.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_345_quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_345_quora.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_346_google_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_346_google_plus.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_347_spootify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_347_spootify.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_348_stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_348_stumbleupon.png -------------------------------------------------------------------------------- /libs/nhp-options/img/glyphicons/glyphicons_349_readability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/glyphicons/glyphicons_349_readability.png -------------------------------------------------------------------------------- /libs/nhp-options/img/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/libs/nhp-options/img/menu_icon.png -------------------------------------------------------------------------------- /libs/nhp-options/validation/color/validation_color.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('This field must be a valid color value.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and outputs the HTML for the field in the settings 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | if(!is_array($this->value)){ 34 | 35 | if($this->value[0] != '#'){ 36 | $this->value = (isset($this->current))?$this->current:''; 37 | $this->error = $this->field; 38 | return; 39 | } 40 | 41 | if(strlen($this->value) != 7){ 42 | $this->value = (isset($this->current))?$this->current:''; 43 | $this->error = $this->field; 44 | } 45 | 46 | }//if array 47 | 48 | 49 | if(is_array($this->value)){ 50 | 51 | foreach($this->value as $k => $value){ 52 | 53 | if(isset($this->error)){continue;} 54 | 55 | if($value[0] != '#'){ 56 | $this->value[$k] = (isset($this->current[$k]))?$this->current[$k]:''; 57 | $this->error = $this->field; 58 | continue; 59 | } 60 | 61 | if(strlen($value) != 7){ 62 | $this->value[$k] = (isset($this->current[$k]))?$this->current[$k]:''; 63 | $this->error = $this->field; 64 | } 65 | 66 | }//foreach 67 | 68 | }//if array 69 | 70 | 71 | 72 | 73 | }//function 74 | 75 | }//class 76 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/comma_numeric/validation_comma_numeric.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must provide a comma seperated list of numerical values for this option.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and outputs the HTML for the field in the settings 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | $this->value = str_replace(' ', '', $this->value); 34 | 35 | if(!is_numeric(str_replace(',', '',$this->value))){ 36 | $this->value = (isset($this->current))?$this->current:''; 37 | $this->error = $this->field; 38 | } 39 | 40 | }//function 41 | 42 | }//class 43 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/date/validation_date.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('This field must be a valid date.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and outputs the HTML for the field in the settings 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | $string = str_replace('/', '', $this->value); 34 | 35 | if(!is_numeric($string)){ 36 | $this->value = (isset($this->current))?$this->current:''; 37 | $this->error = $this->field; 38 | return; 39 | } 40 | 41 | if($this->value[2] != '/'){ 42 | $this->value = (isset($this->current))?$this->current:''; 43 | $this->error = $this->field; 44 | return; 45 | } 46 | 47 | if($this->value[5] != '/'){ 48 | $this->value = (isset($this->current))?$this->current:''; 49 | $this->error = $this->field; 50 | } 51 | 52 | 53 | }//function 54 | 55 | }//class 56 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/email/validation_email.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must provide a valid email for this option.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and outputs the HTML for the field in the settings 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | if(!is_email($this->value)){ 34 | $this->value = (isset($this->current))?$this->current:''; 35 | $this->error = $this->field; 36 | } 37 | 38 | }//function 39 | 40 | }//class 41 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/html/validation_html.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->value = $value; 16 | $this->current = $current; 17 | $this->validate(); 18 | 19 | }//function 20 | 21 | 22 | 23 | /** 24 | * Field Render Function. 25 | * 26 | * Takes the vars and validates them 27 | * 28 | * @since NHP_Options 1.0 29 | */ 30 | function validate(){ 31 | 32 | $this->value = wp_kses_post($this->value); 33 | 34 | }//function 35 | 36 | }//class 37 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/html_custom/validation_html_custom.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->value = $value; 16 | $this->current = $current; 17 | $this->validate(); 18 | 19 | }//function 20 | 21 | 22 | 23 | /** 24 | * Field Render Function. 25 | * 26 | * Takes the vars and validates them 27 | * 28 | * @since NHP_Options 1.0 29 | */ 30 | function validate(){ 31 | 32 | $this->value = wp_kses($this->value, $this->field['allowed_html']); 33 | 34 | }//function 35 | 36 | }//class 37 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/js/validation_js.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->value = $value; 16 | $this->current = $current; 17 | $this->validate(); 18 | 19 | }//function 20 | 21 | 22 | 23 | /** 24 | * Field Render Function. 25 | * 26 | * Takes the vars and validates them 27 | * 28 | * @since NHP_Options 1.0 29 | */ 30 | function validate(){ 31 | 32 | $this->value = esc_js($this->value); 33 | 34 | }//function 35 | 36 | }//class 37 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/no_html/validation_no_html.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must not enter any HTML in this field, all HTML tags have been removed.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and validates them 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | $newvalue = strip_tags($this->value); 34 | 35 | if($this->value != $newvalue){ 36 | $this->warning = $this->field; 37 | } 38 | 39 | $this->value = $newvalue; 40 | 41 | }//function 42 | 43 | }//class 44 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/no_special_chars/validation_no_special_chars.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must not enter any special characters in this field, all special characters have been removed.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and validates them 28 | * 29 | * @since NHP_Options 1.0.1 30 | */ 31 | function validate(){ 32 | 33 | if(!preg_match('/[^a-zA-Z0-9_ -]/s', $this->value) == 0){ 34 | $this->warning = $this->field; 35 | } 36 | 37 | $this->value = preg_replace('/[^a-zA-Z0-9_ -]/s', '', $this->value); 38 | 39 | }//function 40 | 41 | }//class 42 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/numeric/validation_numeric.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must provide a numerical value for this option.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and outputs the HTML for the field in the settings 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | if(!is_numeric($this->value)){ 34 | $this->value = (isset($this->current))?$this->current:''; 35 | $this->error = $this->field; 36 | } 37 | 38 | }//function 39 | 40 | }//class 41 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/preg_replace/validation_preg_replace.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->value = $value; 16 | $this->current = $current; 17 | $this->validate(); 18 | 19 | }//function 20 | 21 | 22 | 23 | /** 24 | * Field Render Function. 25 | * 26 | * Takes the vars and validates them 27 | * 28 | * @since NHP_Options 1.0.1 29 | */ 30 | function validate(){ 31 | 32 | $this->value = preg_replace($this->field['preg']['pattern'], $this->field['preg']['replacement'], $this->value); 33 | 34 | }//function 35 | 36 | }//class 37 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/str_replace/validation_str_replace.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->value = $value; 16 | $this->current = $current; 17 | $this->validate(); 18 | 19 | }//function 20 | 21 | 22 | 23 | /** 24 | * Field Render Function. 25 | * 26 | * Takes the vars and validates them 27 | * 28 | * @since NHP_Options 1.0.1 29 | */ 30 | function validate(){ 31 | 32 | $this->value = str_replace($this->field['str']['search'], $this->field['str']['replacement'], $this->value); 33 | 34 | }//function 35 | 36 | }//class 37 | ?> -------------------------------------------------------------------------------- /libs/nhp-options/validation/url/validation_url.php: -------------------------------------------------------------------------------- 1 | field = $field; 15 | $this->field['msg'] = (isset($this->field['msg']))?$this->field['msg']:__('You must provide a valid URL for this option.', 'nhp-opts'); 16 | $this->value = $value; 17 | $this->current = $current; 18 | $this->validate(); 19 | 20 | }//function 21 | 22 | 23 | 24 | /** 25 | * Field Render Function. 26 | * 27 | * Takes the vars and validates them 28 | * 29 | * @since NHP_Options 1.0 30 | */ 31 | function validate(){ 32 | 33 | if (filter_var($this->value, FILTER_VALIDATE_URL) == false) { 34 | $this->value = (isset($this->current))?$this->current:''; 35 | $this->error = $this->field; 36 | }else{ 37 | $this->value = esc_url_raw($this->value); 38 | } 39 | 40 | }//function 41 | 42 | }//class 43 | ?> -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 6 |
> 7 |
8 |

9 |
10 |
11 | 12 |

13 |
14 |
15 | 20 |
21 |
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /page/bookmarks.php: -------------------------------------------------------------------------------- 1 | 20 | 21 |
22 |
23 |
24 |

25 |
26 |
27 | $bookmarked ) ); 29 | if ( $bm_query->have_posts() ) : 30 | $i = 0; 31 | ?> 32 |
    33 | have_posts() ) : $bm_query->the_post(); $i++; ?> 34 |
  • >
  • 35 | 36 |
37 | have_posts() ?> 38 | 39 |

40 | 41 |
42 |
43 |

44 |
45 |
46 |
47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /page/following.php: -------------------------------------------------------------------------------- 1 | 20 | 21 |
22 |
23 |
24 |

25 |
26 |
27 | 32 |

33 | 34 |
35 |
36 |

37 |
38 |
39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /page/need-signin.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |
18 | 19 |
20 |

21 |
22 |
23 | 24 |
25 | 26 | 27 |
28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /page/need-signout.php: -------------------------------------------------------------------------------- 1 | 19 |
20 |
21 | 22 |
23 |

24 |
25 |
26 | 27 |
28 | 29 | 30 |
31 |
32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /page/new-topic.php: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
22 |
23 |

24 |
25 |
26 | 27 |
28 |
29 |

M to popup the Markdown syntax cheatsheet.', 'v2press' ); ?>

30 |
31 |
32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /page/notifications.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |
18 |
19 |

20 |
21 |
22 | 23 |
24 |
25 |
26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /page/planes.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 |

16 |
17 |
18 |

19 |
20 |
21 | 22 |
23 |
24 |
    25 | 'ID', 'use_desc_for_title' => 0, 'hierarchical' =>0, 'title_li' => '', 'hide_empty' => 0 ) ); ?> 26 |
27 |
28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /page/recent.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 |
15 |

16 |
17 | 18 | 19 |
20 | 21 | have_posts() ) : while ( $recent->have_posts() ) : $recent->the_post(); ?> 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /page/settings.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |
18 |
19 |

20 |
21 |
22 | 23 |
24 |
25 | 26 |
27 |
28 |

29 |
30 |
31 |

32 |

33 |

34 |
35 |
36 | 37 |
38 |
39 |

40 |
41 |
42 | 43 |
44 |
45 |
46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndorChen/V2Press/4b9da1d732e147a315ed5b978578009b42651be0/screenshot.png -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /sidebar/category.php: -------------------------------------------------------------------------------- 1 | term_id; 9 | 10 | } elseif ( is_category() ) { 11 | global $wp_query; 12 | $cat_id = $wp_query->get_queried_object_id(); 13 | } 14 | 15 | $cat_meta = get_option( "v2press_category_{$cat_id}" ); 16 | $desc = $cat_meta['vp_category_description_sidebar']; 17 | 18 | if ( empty( $desc ) ) 19 | return; 20 | ?> 21 |
22 |
23 | 24 |
25 |
-------------------------------------------------------------------------------- /sidebar/home.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 |
6 |
    7 | 'count', 'order' => 'DESC', 'use_desc_for_title' => 0, 'hierarchical' =>0, 'title_li' => '', 'number' => 25 ) ); ?> 8 |
9 |
10 |
11 | 12 |
13 |
14 |

15 |
16 |
17 |
    18 | 'ID', 'order' => 'DESC', 'hide_empty' => 0, 'use_desc_for_title' => 0, 'hierarchical' =>0, 'title_li' => '', 'number' => 10) ); ?> 19 |
20 |
21 |
22 | 23 |
24 |
25 |

26 |
27 |
28 |
29 |
30 |
31 |
32 |
publish; ?>
33 |
34 |
total_comments; ?>
35 |
36 |
37 |
-------------------------------------------------------------------------------- /sidebar/new.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

话题指南

4 |
5 |
6 |
7 |
• 话题标题
8 |
请用尽可能准确的语言在标题中描述你的问题或要点。标题是必须要有的。长度最好不要超过 50 个中文字符。
9 |
• 话题内容
10 |
在内容中对话题要点进行进一步说明,内容格式请使用 Markdown,请勿使用任何 HTML 标签。
11 |
• 话题编辑
12 |
在话题提交后,你可以在 15 分钟内编辑自己的话题。15 分钟之后,编辑权限将会关闭。
13 |
• 话题删除
14 |
话题创建后,自己不能删除。只有管理员才可以删除话题。
15 |
• 不要把无聊当成有趣
16 |
如果你抱怨生活不如意,那么你不妨回想一下之前自己无聊的时候都在干嘛。不要在所谓的 social network 和信息爆炸上浪费生命。
17 |
18 |
19 |
-------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 8 | --------------------------------------------------------------------------------