_id
stringlengths
2
7
title
stringlengths
3
151
partition
stringclasses
3 values
text
stringlengths
83
13k
language
stringclasses
1 value
meta_information
dict
q21400
LocationManager.get_calling_script_file
train
public static function get_calling_script_file( $offset = 0 ) { $callers = array(); $backtrace = debug_backtrace(); foreach ( $backtrace as $trace ) { if ( array_key_exists('file', $trace) && $trace['file'] != __FILE__ ) { $callers[] = $trace['file']; } } $callers = array_unique($callers); $call...
php
{ "resource": "" }
q21401
LocationManager.get_calling_script_dir
train
public static function get_calling_script_dir( $offset = 0 ) { $caller = self::get_calling_script_file($offset); if ( !is_null($caller) ) { $pathinfo = pathinfo($caller); $dir = $pathinfo['dirname']; return $dir; } }
php
{ "resource": "" }
q21402
Retina.filename
train
public function filename( $src_filename, $src_extension ) { $newbase = $src_filename.'@'.$this->factor.'x'; // add @2x, @3x, @1.5x, etc. $new_name = $newbase.'.'.$src_extension; return $new_name; }
php
{ "resource": "" }
q21403
Timber.get_sites
train
public static function get_sites( $blog_ids = false ) { if ( !is_array($blog_ids) ) { global $wpdb; $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs ORDER BY blog_id ASC"); } $return = array(); foreach ( $blog_ids as $blog_id ) { $return[] = new Site($blog_id); } return $return; }
php
{ "resource": "" }
q21404
Timber.compile
train
public static function compile( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT, $via_render = false ) { if ( !defined('TIMBER_LOADED') ) { self::init(); } $caller = LocationManager::get_calling_script_dir(1); $loader = new Loader($caller); $file = $loader->choose_tem...
php
{ "resource": "" }
q21405
Timber.compile_string
train
public static function compile_string( $string, $data = array() ) { $dummy_loader = new Loader(); $twig = $dummy_loader->get_twig(); $template = $twig->createTemplate($string); return $template->render($data); }
php
{ "resource": "" }
q21406
Timber.fetch
train
public static function fetch( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) { $output = self::compile($filenames, $data, $expires, $cache_mode, true); $output = apply_filters('timber_compile_result', $output); return $output; }
php
{ "resource": "" }
q21407
Timber.render_string
train
public static function render_string( $string, $data = array() ) { $compiled = self::compile_string($string, $data); echo $compiled; return $compiled; }
php
{ "resource": "" }
q21408
Timber.get_sidebar
train
public static function get_sidebar( $sidebar = 'sidebar.php', $data = array() ) { if ( strstr(strtolower($sidebar), '.php') ) { return self::get_sidebar_from_php($sidebar, $data); } return self::compile($sidebar, $data); }
php
{ "resource": "" }
q21409
Timber.get_sidebar_from_php
train
public static function get_sidebar_from_php( $sidebar = '', $data ) { $caller = LocationManager::get_calling_script_dir(1); $uris = LocationManager::get_locations($caller); ob_start(); $found = false; foreach ( $uris as $uri ) { if ( file_exists(trailingslashit($uri).$sidebar) ) { include trailingslash...
php
{ "resource": "" }
q21410
Operation.hexrgb
train
public static function hexrgb( $hexstr ) { if ( !strstr($hexstr, '#') ) { $hexstr = '#'.$hexstr; } if ( strlen($hexstr) == 4 ) { $hexstr = '#'.$hexstr[1].$hexstr[1].$hexstr[2].$hexstr[2].$hexstr[3].$hexstr[3]; } $int = hexdec($hexstr); return array("red" => 0xFF & ($int >> 0x10), "green" => 0xFF & ($i...
php
{ "resource": "" }
q21411
Term.get_posts
train
public function get_posts( $numberposts_or_args = 10, $post_type_or_class = 'any', $post_class = '' ) { if ( !strlen($post_class) ) { $post_class = $this->PostClass; } $default_tax_query = array(array( 'field' => 'term_id', 'terms' => $this->ID, 'taxonomy' => $this->taxonomy, )); if ( is_string(...
php
{ "resource": "" }
q21412
QueryIterator.fix_number_posts_wp_quirk
train
public static function fix_number_posts_wp_quirk( $query ) { if ( isset($query->query) && isset($query->query['numberposts']) && !isset($query->query['posts_per_page']) ) { $query->set('posts_per_page', $query->query['numberposts']); } return $query; }
php
{ "resource": "" }
q21413
QueryIterator.fix_cat_wp_quirk
train
public static function fix_cat_wp_quirk( $query ) { if ( isset($query->query) && isset($query->query['category']) && !isset($query->query['cat']) ) { $query->set('cat', $query->query['category']); unset($query->query['category']); } return $query; }
php
{ "resource": "" }
q21414
QueryIterator.handle_maybe_custom_posts_page
train
public static function handle_maybe_custom_posts_page( $query ) { if ( $custom_posts_page = get_option('page_for_posts') ) { if ( isset($query->query['p']) && $query->query['p'] == $custom_posts_page ) { return new \WP_Query(array('post_type' => 'post')); } } return $query; }
php
{ "resource": "" }
q21415
Site.switch_to_blog
train
protected static function switch_to_blog( $site_name_or_id ) { if ( $site_name_or_id === null ) { $site_name_or_id = get_current_blog_id(); } $info = get_blog_details($site_name_or_id); switch_to_blog($info->blog_id); return $info->blog_id; }
php
{ "resource": "" }
q21416
Site.init_as_singlesite
train
protected function init_as_singlesite() { $this->admin_email = get_bloginfo('admin_email'); $this->name = get_bloginfo('name'); $this->title = $this->name; $this->description = get_bloginfo('description'); $this->theme = new Theme(); $this->multisite = false; }
php
{ "resource": "" }
q21417
Comment.avatar
train
public function avatar( $size = 92, $default = '' ) { if ( !get_option('show_avatars') ) { return false; } if ( !is_numeric($size) ) { $size = '92'; } $email = $this->avatar_email(); $args = array('size' => $size, 'default' => $default); $args = apply_filters('pre_get_avatar_data', $args, $email);...
php
{ "resource": "" }
q21418
Comment.reply_link
train
public function reply_link( $reply_text = 'Reply' ) { if ( is_singular() && comments_open() && get_option('thread_comments') ) { wp_enqueue_script('comment-reply'); } // Get the comments depth option from the admin panel $max_depth = get_option('thread_comments_depth'); // Default args $args = array( ...
php
{ "resource": "" }
q21419
Post.init
train
protected function init( $pid = false ) { if ( $pid === false ) { $pid = get_the_ID(); } if ( is_numeric($pid) ) { $this->ID = $pid; } $post_info = $this->get_info($pid); $this->import($post_info); }
php
{ "resource": "" }
q21420
Post.update
train
public function update( $field, $value ) { if ( isset($this->ID) ) { update_post_meta($this->ID, $field, $value); $this->$field = $value; } }
php
{ "resource": "" }
q21421
Post.check_post_id
train
protected function check_post_id( $pid ) { if ( is_numeric($pid) && $pid === 0 ) { $pid = get_the_ID(); return $pid; } if ( !is_numeric($pid) && is_string($pid) ) { $pid = PostGetter::get_post_id_by_name($pid); return $pid; } if ( !$pid ) { return null; } return $pid; }
php
{ "resource": "" }
q21422
Post.get_info
train
protected function get_info( $pid ) { $post = $this->prepare_post_info($pid); if ( !isset($post->post_status) ) { return null; } do_action_ref_array('the_post', array(&$post, &$GLOBALS['wp_query'])); $post->status = $post->post_status; $post->id = $post->ID; $post->slug = $post->post_name; $customs...
php
{ "resource": "" }
q21423
Post.terms
train
public function terms( $args = array(), $merge = true, $term_class = '' ) { // Ensure backwards compatibility. if ( ! is_array( $args ) || isset( $args[0] ) ) { $args = array( 'query' => array( 'taxonomy' => $args, ), 'merge' => $merge, 'term_class' => $term_class, ); if ( empty( $arg...
php
{ "resource": "" }
q21424
Post.field_object
train
public function field_object( $field_name ) { $value = apply_filters('timber/post/meta_object_field', null, $this->ID, $field_name, $this); $value = $this->convert($value); return $value; }
php
{ "resource": "" }
q21425
Post.maybe_show_password_form
train
protected function maybe_show_password_form() { if ( $this->password_required() ) { $show_pw = false; $show_pw = apply_filters('timber/post/content/show_password_form_for_protected', $show_pw); if ( $show_pw ) { return apply_filters('timber/post/content/password_form', get_the_password_form($this->ID), $...
php
{ "resource": "" }
q21426
Post.type
train
public function type() { if ( isset($this->custom['type']) ) { return $this->custom['type']; } if ( !$this->__type instanceof PostType ) { $this->__type = new PostType($this->post_type); } return $this->__type; }
php
{ "resource": "" }
q21427
Post.link
train
public function link() { if ( isset($this->_permalink) ) { return $this->_permalink; } $this->_permalink = get_permalink($this->ID); return $this->_permalink; }
php
{ "resource": "" }
q21428
Post.convert
train
public function convert( $data ) { if ( is_object($data) ) { $data = Helper::convert_wp_object($data); } else if ( is_array($data) ) { $func = __FUNCTION__; foreach ( $data as &$ele ) { if ( is_array($ele) ) { $ele = $this->$func($ele); } else if ( is_object($ele) ) { $ele = Helper::conve...
php
{ "resource": "" }
q21429
Post.prev
train
public function prev( $in_same_term = false ) { if ( isset($this->_prev) && isset($this->_prev[$in_same_term]) ) { return $this->_prev[$in_same_term]; } global $post; $old_global = $post; $post = $this; $within_taxonomy = ($in_same_term) ? $in_same_term : 'category'; $adjacent = get_adjacent_post(($in_...
php
{ "resource": "" }
q21430
Post.gallery
train
public function gallery( $html = true ) { if ( isset($this->custom['gallery']) ) { return $this->custom['gallery']; } $galleries = get_post_galleries($this->ID, $html); $gallery = reset($galleries); return apply_filters('get_post_gallery', $gallery, $this->ID, $galleries); }
php
{ "resource": "" }
q21431
Post.audio
train
public function audio() { if ( isset($this->custom['audio']) ) { return $this->custom['audio']; } $audio = false; // Only get audio from the content if a playlist isn't present. if ( false === strpos($this->get_content(), 'wp-playlist-script') ) { $audio = get_media_embedded_in_content($this->get_conte...
php
{ "resource": "" }
q21432
Post.video
train
public function video() { if ( isset($this->custom['video']) ) { return $this->custom['video']; } $video = false; // Only get video from the content if a playlist isn't present. if ( false === strpos($this->get_content(), 'wp-playlist-script') ) { $video = get_media_embedded_in_content($this->get_conte...
php
{ "resource": "" }
q21433
Post.get_terms
train
public function get_terms( $tax = '', $merge = true, $TermClass = '' ) { return $this->terms($tax, $merge, $TermClass); }
php
{ "resource": "" }
q21434
Post.get_comments
train
public function get_comments( $count = null, $order = 'wp', $type = 'comment', $status = 'approve', $CommentClass = 'Timber\Comment' ) { return $this->comments($count, $order, $type, $status, $CommentClass); }
php
{ "resource": "" }
q21435
Helper.handle_transient_locking
train
protected static function handle_transient_locking( $slug, $callback, $transient_time, $lock_timeout, $force, $enable_transients ) { if ( $enable_transients && self::_is_transient_locked($slug) ) { $force = apply_filters('timber_force_transients', $force); $force = apply_filters('timber_force_transient_'.$slug,...
php
{ "resource": "" }
q21436
Helper.start_timer
train
public static function start_timer() { $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; return $time; }
php
{ "resource": "" }
q21437
Helper.stop_timer
train
public static function stop_timer( $start ) { $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $finish = $time; $total_time = round(($finish - $start), 4); return $total_time.' seconds.'; }
php
{ "resource": "" }
q21438
Helper.pluck
train
public static function pluck( $array, $key ) { $return = array(); foreach ( $array as $obj ) { if ( is_object($obj) && method_exists($obj, $key) ) { $return[] = $obj->$key(); } elseif ( is_object($obj) && property_exists($obj, $key) ) { $return[] = $obj->$key; } elseif ( is_array($obj) && isset($ob...
php
{ "resource": "" }
q21439
Helper.filter_array
train
public static function filter_array( $list, $args, $operator = 'AND' ) { if ( ! is_array($args) ) { $args = array( 'slug' => $args ); } if ( ! is_array( $list ) && ! is_a( $list, 'Traversable' ) ) { return array(); } $util = new \WP_List_Util( $list ); return $util->filter( $args, $operator ); }
php
{ "resource": "" }
q21440
User.get_roles
train
protected function get_roles( $roles ) { if ( empty($roles) ) { // @codeCoverageIgnoreStart return null; // @codeCoverageIgnoreEnd } $wp_roles = wp_roles(); $names = $wp_roles->get_names(); $values = array(); foreach ( $roles as $role ) { $name = $role; if ( isset($names[ $role ]) ) { ...
php
{ "resource": "" }
q21441
Timber_WP_CLI_Command.clear_cache
train
public function clear_cache( $mode = 'all' ) { $mode = $mode ? : 'all'; $cleared = Command::clear_cache( $mode ); if ( $cleared ) { \WP_CLI::success("Cleared {$mode} cached contents"); } else { \WP_CLI::warning("Failed to clear {$mode} cached contents"); } }
php
{ "resource": "" }
q21442
MenuItem.name
train
public function name() { if ( $title = $this->title() ) { return $title; } if ( isset($this->_name) ) { return $this->_name; } return ''; }
php
{ "resource": "" }
q21443
MenuItem.slug
train
public function slug() { $mo = $this->master_object(); if ( $mo && $mo->post_name ) { return $mo->post_name; } return $this->post_name; }
php
{ "resource": "" }
q21444
MenuItem.add_child
train
public function add_child( $item ) { if ( !$this->has_child_class ) { $this->add_class('menu-item-has-children'); $this->has_child_class = true; } $this->children[] = $item; $item->level = $this->level + 1; if ( count($this->children) ) { $this->update_child_levels(); } }
php
{ "resource": "" }
q21445
MenuItem.import_classes
train
public function import_classes( $data ) { if ( is_array($data) ) { $data = (object) $data; } $this->classes = array_merge($this->classes, $data->classes); $this->classes = array_unique($this->classes); $this->classes = apply_filters('nav_menu_css_class', $this->classes, $this, array(), 0); $this->class =...
php
{ "resource": "" }
q21446
MenuItem.meta
train
public function meta( $key ) { if ( is_object($this->menu_object) && method_exists($this->menu_object, 'meta') ) { return $this->menu_object->meta($key); } if ( isset($this->$key) ) { return $this->$key; } }
php
{ "resource": "" }
q21447
MenuItem.link
train
public function link() { if ( !isset($this->url) || !$this->url ) { if ( isset($this->_menu_item_type) && $this->_menu_item_type == 'custom' ) { $this->url = $this->_menu_item_url; } else if ( isset($this->menu_object) && method_exists($this->menu_object, 'get_link') ) { $this->url = $this->menu_object...
php
{ "resource": "" }
q21448
Revision.formatFieldName
train
private function formatFieldName($key) { $related_model = $this->revisionable_type; $related_model = new $related_model; $revisionFormattedFieldNames = $related_model->getRevisionFormattedFieldNames(); if (isset($revisionFormattedFieldNames[$key])) { return $revisionForm...
php
{ "resource": "" }
q21449
Revision.getValue
train
private function getValue($which = 'new') { $which_value = $which . '_value'; // First find the main model that was updated $main_model = $this->revisionable_type; // Load it, WITH the related model if (class_exists($main_model)) { $main_model = new $main_model; ...
php
{ "resource": "" }
q21450
Revision.isRelated
train
private function isRelated() { $isRelated = false; $idSuffix = '_id'; $pos = strrpos($this->key, $idSuffix); if ($pos !== false && strlen($this->key) - strlen($idSuffix) === $pos ) { $isRelated = true; } return $isRelated; }
php
{ "resource": "" }
q21451
Revision.getRelatedModel
train
private function getRelatedModel() { $idSuffix = '_id'; return substr($this->key, 0, strlen($this->key) - strlen($idSuffix)); }
php
{ "resource": "" }
q21452
Revision.userResponsible
train
public function userResponsible() { if (empty($this->user_id)) { return false; } if (class_exists($class = '\Cartalyst\Sentry\Facades\Laravel\Sentry') || class_exists($class = '\Cartalyst\Sentinel\Laravel\Facades\Sentinel') ) { return $class::findUserById($this->user_...
php
{ "resource": "" }
q21453
FieldFormatter.format
train
public static function format($key, $value, $formats) { foreach ($formats as $pkey => $format) { $parts = explode(':', $format); if (sizeof($parts) === 1) { continue; } if ($pkey == $key) { $method = array_shift($parts); ...
php
{ "resource": "" }
q21454
FieldFormatter.isEmpty
train
public static function isEmpty($value, $options = array()) { $value_set = isset($value) && $value != ''; return sprintf(self::boolean($value_set, $options), $value); }
php
{ "resource": "" }
q21455
FieldFormatter.string
train
public static function string($value, $format = null) { if (is_null($format)) { $format = '%s'; } return sprintf($format, $value); }
php
{ "resource": "" }
q21456
FieldFormatter.datetime
train
public static function datetime($value, $format = 'Y-m-d H:i:s') { if (empty($value)) { return null; } $datetime = new \DateTime($value); return $datetime->format($format); }
php
{ "resource": "" }
q21457
Revisionable.changedRevisionableFields
train
private function changedRevisionableFields() { $changes_to_record = array(); foreach ($this->dirtyData as $key => $value) { // check that the field is revisionable, and double check // that it's actually new data in case dirty is, well, clean if ($this->isRevision...
php
{ "resource": "" }
q21458
Revisionable.isSoftDelete
train
private function isSoftDelete() { // check flag variable used in laravel 4.2+ if (isset($this->forceDeleting)) { return !$this->forceDeleting; } // otherwise, look for flag used in older versions if (isset($this->softDelete)) { return $this->softDelet...
php
{ "resource": "" }
q21459
Command.search
train
public function search($options = []) { $query = $this->queryParts; if (empty($query)) { $query = '{}'; } if (is_array($query)) { $query = Json::encode($query); } $url = [$this->index !== null ? $this->index : '_all']; if ($this->type !...
php
{ "resource": "" }
q21460
Command.deleteByQuery
train
public function deleteByQuery($options = []) { if (!isset($this->queryParts['query'])) { throw new InvalidCallException('Can not call deleteByQuery when no query is given.'); } $query = [ 'query' => $this->queryParts['query'], ]; if (isset($this->query...
php
{ "resource": "" }
q21461
Command.suggest
train
public function suggest($suggester, $options = []) { if (empty($suggester)) { $suggester = '{}'; } if (is_array($suggester)) { $suggester = Json::encode($suggester); } $url = [ $this->index !== null ? $this->index : '_all', '_su...
php
{ "resource": "" }
q21462
Command.insert
train
public function insert($index, $type, $data, $id = null, $options = []) { if (empty($data)) { $body = '{}'; } else { $body = is_array($data) ? Json::encode($data) : $data; } if ($id !== null) { return $this->db->put([$index, $type, $id], $options,...
php
{ "resource": "" }
q21463
Command.mget
train
public function mget($index, $type, $ids, $options = []) { $body = Json::encode(['ids' => array_values($ids)]); return $this->db->get([$index, $type, '_mget'], $options, $body); }
php
{ "resource": "" }
q21464
Command.delete
train
public function delete($index, $type, $id, $options = []) { return $this->db->delete([$index, $type, $id], $options); }
php
{ "resource": "" }
q21465
Command.update
train
public function update($index, $type, $id, $data, $options = []) { $body = [ 'doc' => empty($data) ? new \stdClass() : $data, ]; if (isset($options["detect_noop"])) { $body["detect_noop"] = $options["detect_noop"]; unset($options["detect_noop"]); }...
php
{ "resource": "" }
q21466
Command.createIndex
train
public function createIndex($index, $configuration = null) { $body = $configuration !== null ? Json::encode($configuration) : null; return $this->db->put([$index], [], $body); }
php
{ "resource": "" }
q21467
Connection.selectActiveNode
train
protected function selectActiveNode() { $keys = array_keys($this->nodes); $this->activeNode = $keys[rand(0, count($keys) - 1)]; }
php
{ "resource": "" }
q21468
Connection.createBulkCommand
train
public function createBulkCommand($config = []) { $this->open(); $config['db'] = $this; $command = new BulkCommand($config); return $command; }
php
{ "resource": "" }
q21469
Connection.post
train
public function post($url, $options = [], $body = null, $raw = false) { $this->open(); return $this->httpRequest('POST', $this->createUrl($url, $options), $body, $raw); }
php
{ "resource": "" }
q21470
Connection.decodeErrorBody
train
protected function decodeErrorBody($body) { try { $decoded = Json::decode($body); if (isset($decoded['error']) && !is_array($decoded['error'])) { $decoded['error'] = preg_replace('/\b\w+?Exception\[/', "<span style=\"color: red;\">\\0</span>\n ", $decode...
php
{ "resource": "" }
q21471
ActiveQuery.createModels
train
private function createModels($rows) { $models = []; if ($this->asArray) { if ($this->indexBy === null) { return $rows; } foreach ($rows as $row) { if (is_string($this->indexBy)) { $key = isset($row['fields'][$th...
php
{ "resource": "" }
q21472
ActiveFixture.resetIndex
train
protected function resetIndex() { $this->db->createCommand([ 'index' => $this->index, 'type' => $this->type, 'queryParts' => ['query' => ['match_all' => new \stdClass()]], ])->deleteByQuery(); }
php
{ "resource": "" }
q21473
Query.populate
train
public function populate($rows) { if ($this->indexBy === null) { return $rows; } $models = []; foreach ($rows as $key => $row) { if ($this->indexBy !== null) { if (is_string($this->indexBy)) { $key = isset($row['fields'][$th...
php
{ "resource": "" }
q21474
Query.delete
train
public function delete($db = null, $options = []) { if ($this->emulateExecution) { return []; } return $this->createCommand($db)->deleteByQuery($options); }
php
{ "resource": "" }
q21475
Query.scalar
train
public function scalar($field, $db = null) { if ($this->emulateExecution) { return null; } $record = self::one($db); if ($record !== false) { if ($field === '_id') { return $record['_id']; } elseif (isset($record['_source'][$field])...
php
{ "resource": "" }
q21476
Query.column
train
public function column($field, $db = null) { if ($this->emulateExecution) { return []; } $command = $this->createCommand($db); $command->queryParts['_source'] = [$field]; $result = $command->search(); if (empty($result['hits']['hits'])) { retur...
php
{ "resource": "" }
q21477
Query.from
train
public function from($index, $type = null) { $this->index = $index; $this->type = $type; return $this; }
php
{ "resource": "" }
q21478
Query.fields
train
public function fields($fields) { if (is_array($fields) || $fields === null) { $this->fields = $fields; } else { $this->fields = func_get_args(); } return $this; }
php
{ "resource": "" }
q21479
Query.source
train
public function source($source) { if (is_array($source) || $source === null) { $this->source = $source; } else { $this->source = func_get_args(); } return $this; }
php
{ "resource": "" }
q21480
Query.options
train
public function options($options) { if (!is_array($options)) { throw new InvalidParamException('Array parameter expected, ' . gettype($options) . ' received.'); } $this->options = $options; return $this; }
php
{ "resource": "" }
q21481
Query.addOptions
train
public function addOptions($options) { if (!is_array($options)) { throw new InvalidParamException('Array parameter expected, ' . gettype($options) . ' received.'); } $this->options = array_merge($this->options, $options); return $this; }
php
{ "resource": "" }
q21482
QueryBuilder.buildOrderBy
train
public function buildOrderBy($columns) { if (empty($columns)) { return []; } $orders = []; foreach ($columns as $name => $direction) { if (is_string($direction)) { $column = $direction; $direction = SORT_ASC; } else ...
php
{ "resource": "" }
q21483
ElasticsearchTarget.prepareMessage
train
public function prepareMessage($message) { list($text, $level, $category, $timestamp) = $message; $result = [ 'category' => $category, 'level' => Logger::getLevelName($level), '@timestamp' => date('c', $timestamp), ]; if (isset($message[4])) { ...
php
{ "resource": "" }
q21484
ActiveDataProvider.getAggregation
train
public function getAggregation($name) { $aggregations = $this->getAggregations(); if (!isset($aggregations[$name])) { throw new InvalidCallException("Aggregation '{$name}' does not present."); } return $aggregations[$name]; }
php
{ "resource": "" }
q21485
ActiveRecord.filterCondition
train
private static function filterCondition($condition) { foreach($condition as $k => $v) { if (is_array($v)) { $condition[$k] = array_values($v); foreach($v as $vv) { if (is_array($vv)) { throw new InvalidArgumentException(...
php
{ "resource": "" }
q21486
ActiveRecord.get
train
public static function get($primaryKey, $options = []) { if ($primaryKey === null) { return null; } $command = static::getDb()->createCommand(); $result = $command->get(static::index(), static::type(), $primaryKey, $options); if ($result['found']) { $m...
php
{ "resource": "" }
q21487
ActiveRecord.mget
train
public static function mget(array $primaryKeys, $options = []) { if (empty($primaryKeys)) { return []; } if (count($primaryKeys) === 1) { $model = static::get(reset($primaryKeys)); return $model === null ? [] : [$model]; } $command = stati...
php
{ "resource": "" }
q21488
ActiveRecord.insert
train
public function insert($runValidation = true, $attributes = null, $options = ['op_type' => 'create']) { if ($runValidation && !$this->validate($attributes)) { return false; } if (!$this->beforeSave(true)) { return false; } $values = $this->getDirtyAttr...
php
{ "resource": "" }
q21489
ActiveRecord.updateAllCounters
train
public static function updateAllCounters($counters, $condition = []) { $primaryKeys = static::primaryKeysByCondition($condition); if (empty($primaryKeys) || empty($counters)) { return 0; } $bulkCommand = static::getDb()->createBulkCommand([ "index" => static:...
php
{ "resource": "" }
q21490
BulkCommand.execute
train
public function execute() { //valid endpoints are /_bulk, /{index}/_bulk, and {index}/{type}/_bulk if ($this->index === null && $this->type === null) { $endpoint = ['_bulk']; } elseif ($this->index !== null && $this->type === null) { $endpoint = [$this->index, '_bulk'...
php
{ "resource": "" }
q21491
BulkCommand.addAction
train
public function addAction($line1, $line2 = null) { if (!is_array($this->actions)) { $this->actions = []; } $this->actions[] = $line1; if ($line2 !== null) { $this->actions[] = $line2; } }
php
{ "resource": "" }
q21492
BulkCommand.addDeleteAction
train
public function addDeleteAction($id, $index = null, $type = null) { $actionData = ['_id' => $id]; if (!empty($index)) { $actionData['_index'] = $index; } if (!empty($type)) { $actionData['_type'] = $type; } $this->addAction(['delete' => $act...
php
{ "resource": "" }
q21493
ProtocolStreamWriter.flush
train
private function flush() { $keepWriting = true; while ($keepWriting) { $message = $this->messages[0]['message']; $promise = $this->messages[0]['promise']; $bytesWritten = @fwrite($this->output, $message); if ($bytesWritten > 0) { $mes...
php
{ "resource": "" }
q21494
PhpDocumentLoader.getOrLoad
train
public function getOrLoad(string $uri): Promise { return isset($this->documents[$uri]) ? Promise\resolve($this->documents[$uri]) : $this->load($uri); }
php
{ "resource": "" }
q21495
PhpDocumentLoader.create
train
public function create(string $uri, string $content): PhpDocument { return new PhpDocument( $uri, $content, $this->projectIndex->getIndexForUri($uri), $this->parser, $this->docBlockFactory, $this->definitionResolver ); }
php
{ "resource": "" }
q21496
PhpDocumentLoader.open
train
public function open(string $uri, string $content) { if (isset($this->documents[$uri])) { $document = $this->documents[$uri]; $document->updateContent($content); } else { $document = $this->create($uri, $content); $this->documents[$uri] = $document; ...
php
{ "resource": "" }
q21497
CompletionProvider.getUnqualifiedCompletions
train
private function getUnqualifiedCompletions( string $prefix, string $currentNamespace, array $importTables, bool $requireCanBeInstantiated ): \Generator { // Aliases list($namespaceAliases,,) = $importTables; // use Foo\Bar yield from $this->getCompleti...
php
{ "resource": "" }
q21498
CompletionProvider.getCompletionsForFqnPrefix
train
private function getCompletionsForFqnPrefix( string $prefix, bool $requireCanBeInstantiated, bool $insertFullyQualified ): \Generator { $namespace = nameGetParent($prefix); foreach ($this->index->getChildDefinitionsForFqn($namespace) as $fqn => $def) { if ($requir...
php
{ "resource": "" }
q21499
CompletionProvider.getCompletionsForAliases
train
private function getCompletionsForAliases( string $prefix, array $aliases, bool $requireCanBeInstantiated ): \Generator { foreach ($aliases as $alias => $aliasFqn) { if (!nameStartsWith($alias, $prefix)) { continue; } $definition = ...
php
{ "resource": "" }