当前位置: 首页>>代码示例>>PHP>>正文


PHP Search::run方法代码示例

本文整理汇总了PHP中Search::run方法的典型用法代码示例。如果您正苦于以下问题:PHP Search::run方法的具体用法?PHP Search::run怎么用?PHP Search::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Search的用法示例。


在下文中一共展示了Search::run方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Search

 public function Search($param)
 {
     //echo "hello";
     import('SC.Search.Search');
     $searchInfo = new Search($param);
     $result = $searchInfo->run();
     echo $result;
 }
开发者ID:iOSDevelopment2016,项目名称:SuperCourseServer,代码行数:8,代码来源:Api.class.php

示例2: getlyrics

 /**
  * getLyrics
  * Searches and returns lyrics for a given song.
  * Takes the optional artist and title in parameters.
  */
 public static function getlyrics($input)
 {
     self::check_version($input, "1.2.0");
     $artist = $input['artist'];
     $title = $input['title'];
     if (!$artist && !$title) {
         $r = Subsonic_XML_Data::createError(Subsonic_XML_Data::SSERROR_MISSINGPARAM);
     } else {
         $search = array();
         $search['limit'] = 1;
         $search['offset'] = 0;
         $search['type'] = "song";
         $i = 0;
         if ($artist) {
             $search['rule_' . $i . '_input'] = $artist;
             $search['rule_' . $i . '_operator'] = 5;
             $search['rule_' . $i . ''] = "artist";
             ++$i;
         }
         if ($title) {
             $search['rule_' . $i . '_input'] = $title;
             $search['rule_' . $i . '_operator'] = 5;
             $search['rule_' . $i . ''] = "title";
             ++$i;
         }
         $query = new Search(null, 'song');
         $songs = $query->run($search);
         $r = Subsonic_XML_Data::createSuccessResponse();
         if (count($songs) > 0) {
             Subsonic_XML_Data::addLyrics($r, $artist, $title, $songs[0]);
         }
     }
     self::apiOutput($input, $r);
 }
开发者ID:bl00m,项目名称:ampache,代码行数:39,代码来源:subsonic_api.class.php

示例3: array

    {
        $subs = array('contributions' => array($queryUser, "View {$queryUser}'s contributions"), 'repositories' => array($queryUser . '?tab=repositories', "View {$queryUser}'s repositories", 'repo'), 'activity' => array($queryUser . '?tab=activity', "View {$queryUser}'s public activity"), 'stars' => array('stars/' . $queryUser, "View {$queryUser}'s stars"));
        $prio = count($subs) + 1;
        foreach ($subs as $key => $sub) {
            Workflow::addItem(Item::create()->prefix('@', false)->title($queryUser . ' ' . $key)->subtitle($sub[1])->icon(isset($sub[2]) ? $sub[2] : $key)->arg('https://github.com/' . $sub[0])->prio($prio--));
        }
        Workflow::addItem(Item::create()->prefix('@', false)->title($queryUser . ' gists')->subtitle("View {$queryUser}'s' gists")->icon('gists')->arg('https://gist.github.com/' . $queryUser)->prio(1));
    }
    private static function addMyCommands()
    {
        $myPages = array('dashboard' => array('', 'View your dashboard'), 'pulls' => array('pulls', 'View your pull requests', 'pull-request'), 'issues' => array('issues', 'View your issues', 'issue'), 'stars' => array('stars', 'View your starred repositories'), 'profile' => array(self::$user->login, 'View your public user profile', 'user'), 'settings' => array('settings', 'View or edit your account settings'), 'notifications' => array('notifications', 'View all your notifications'));
        foreach ($myPages as $key => $my) {
            Workflow::addItem(Item::create()->title('my ' . $key)->subtitle($my[1])->icon(isset($my[2]) ? $my[2] : $key)->arg('https://github.com/' . $my[0])->prio(1));
        }
        Workflow::addItem(Item::create()->title('my gists')->subtitle('View your gists')->icon('gists')->arg('https://gist.github.com/' . self::$user->login)->prio(1));
    }
    private static function addSystemCommands()
    {
        $cmds = array('delete cache' => 'Delete GitHub Cache', 'logout' => 'Log out this workflow', 'update' => 'Update this Alfred workflow');
        if (Workflow::getConfig('autoupdate', true)) {
            $cmds['deactivate autoupdate'] = 'Deactivate auto updating this Alfred Workflow';
        } else {
            $cmds['activate autoupdate'] = 'Activate auto updating this Alfred Workflow';
        }
        foreach ($cmds as $cmd => $desc) {
            Workflow::addItem(Item::create()->prefix('gh ')->title('> ' . $cmd)->subtitle($desc)->icon($cmd)->arg('> ' . str_replace(' ', '-', $cmd)));
        }
    }
}
print Search::run(ltrim($argv[1]));
开发者ID:regedor,项目名称:alfred-github-workflow,代码行数:30,代码来源:search.php

示例4: array

            }
            return;
        }
        $myPages = array('dashboard' => array('', 'View your dashboard'), 'pulls ' => array('pulls', 'View your pull requests', 'pull-request'), 'issues ' => array('issues', 'View your issues', 'issue'), 'stars' => array('stars', 'View your starred repositories'), 'profile' => array(self::$user->login, 'View your public user profile', 'user'), 'settings' => array('settings', 'View or edit your account settings'), 'notifications' => array('notifications', 'View all your notifications'));
        foreach ($myPages as $key => $my) {
            Workflow::addItem(Item::create()->title('my ' . $key)->subtitle($my[1])->icon(isset($my[2]) ? $my[2] : rtrim($key))->arg('/' . $my[0])->prio(1));
        }
        Workflow::addItem(Item::create()->title('my gists')->subtitle('View your gists')->icon('gists')->arg(Workflow::getGistUrl() . '/' . self::$user->login)->prio(1));
    }
    private static function addSystemCommands()
    {
        $cmds = array('delete cache' => 'Delete GitHub Cache', 'logout' => 'Log out this workflow', 'update' => 'Update this Alfred workflow');
        if (Workflow::getConfig('autoupdate', true)) {
            $cmds['deactivate autoupdate'] = 'Deactivate auto updating this Alfred Workflow';
        } else {
            $cmds['activate autoupdate'] = 'Activate auto updating this Alfred Workflow';
        }
        if (self::$enterprise) {
            $cmds['enterprise reset'] = 'Reset the GitHub Enterprise URL';
        }
        foreach ($cmds as $cmd => $desc) {
            Workflow::addItem(Item::create()->title('> ' . $cmd)->subtitle($desc)->icon($cmd)->arg('> ' . str_replace(' ', '-', $cmd)));
        }
        $cmds = array('help' => 'readme', 'changelog' => 'changelog');
        foreach ($cmds as $cmd => $file) {
            Workflow::addItem(Item::create()->title('> ' . $cmd)->subtitle('View the ' . $file)->icon('file')->arg('https://github.com/gharlan/alfred-github-workflow/blob/master/' . strtoupper($file) . '.md'));
        }
    }
}
print Search::run($argv[1], $argv[2]);
开发者ID:rfoxfa,项目名称:local-files,代码行数:30,代码来源:search.php

示例5: foreach

            foreach ($sres as $r) {
                $results[] = array('type' => T_('Missing Artists'), 'link' => AmpConfig::get('web_path') . '/artists.php?action=show_missing&mbid=' . $r['mbid'], 'label' => $r['name'], 'value' => $r['name'], 'rels' => '', 'image' => '');
                $i++;
                if ($i >= $limit) {
                    break;
                }
            }
        }
        if ($target == 'user' && AmpConfig::get('sociable')) {
            $searchreq = array('limit' => $limit, 'type' => 'user', 'rule_1_input' => $search, 'rule_1_operator' => '2', 'rule_1' => 'username');
            $sres = Search::run($searchreq);
            // Litmit not reach, new search with another operator
            if (count($sres) < $limit) {
                $searchreq['limit'] = $limit - count($sres);
                $searchreq['rule_1_operator'] = '0';
                $sres = array_unique(array_merge($sres, Search::run($searchreq)));
            }
            foreach ($sres as $id) {
                $user = new User($id);
                $user->format();
                $avatar = $user->get_avatar();
                $results[] = array('type' => T_('Users'), 'link' => '', 'label' => $user->username, 'value' => $user->username, 'rels' => '', 'image' => $avatar['url'] ?: '');
            }
        }
        break;
    default:
        $results['rfc3514'] = '0x1';
        break;
}
// switch on action;
// We always do this
开发者ID:nioc,项目名称:ampache,代码行数:31,代码来源:search.ajax.php

示例6: search_songs

 /**
  * search_songs
  * This searches the songs and returns... songs
  */
 public static function search_songs($input)
 {
     $array = array();
     $array['type'] = 'song';
     $array['rule_1'] = 'anywhere';
     $array['rule_1_input'] = $input['filter'];
     $array['rule_1_operator'] = 0;
     ob_end_clean();
     XML_Data::set_offset($input['offset']);
     XML_Data::set_limit($input['limit']);
     $results = Search::run($array);
     echo XML_Data::songs($results);
 }
开发者ID:axelsimon,项目名称:ampache,代码行数:17,代码来源:api.class.php

示例7: search_childrens

 public static function search_childrens($name, $catalog_id = 0)
 {
     $search = array();
     $search['type'] = "artist";
     $search['rule_0_input'] = $name;
     $search['rule_0_operator'] = 4;
     $search['rule_0'] = "name";
     if ($catalog_id > 0) {
         $search['rule_1_input'] = $catalog_id;
         $search['rule_1_operator'] = 0;
         $search['rule_1'] = "catalog";
     }
     $artists = Search::run($search);
     $childrens = array();
     foreach ($artists as $artist) {
         $childrens[] = array('object_type' => 'artist', 'object_id' => $artist);
     }
     return $childrens;
 }
开发者ID:bl00m,项目名称:ampache,代码行数:19,代码来源:catalog.class.php

示例8: search2

 /**
  * search2
  * Get albums, artists and songs matching the given criteria.
  * Takes query with optional artist count, artist offset, album count, album offset, song count and song offset in parameters.
  */
 public static function search2($input, $elementName = "searchResult2")
 {
     self::check_version($input, "1.2.0");
     $query = self::check_parameter($input, 'query');
     $artistCount = $input['artistCount'];
     $artistOffset = $input['artistOffset'];
     $albumCount = $input['albumCount'];
     $albumOffset = $input['albumOffset'];
     $songCount = $input['songCount'];
     $songOffset = $input['songOffset'];
     $sartist = array();
     $sartist['limit'] = $artistCount;
     if ($artistOffset) {
         $sartist['offset'] = $artistOffset;
     }
     $sartist['rule_1_input'] = $query;
     $sartist['rule_1_operator'] = 0;
     $sartist['rule_1'] = "name";
     $sartist['type'] = "artist";
     $artists = Search::run($sartist);
     $salbum = array();
     $salbum['limit'] = $albumCount;
     if ($albumOffset) {
         $salbum['offset'] = $albumOffset;
     }
     $salbum['rule_1_input'] = $query;
     $salbum['rule_1_operator'] = 0;
     $salbum['rule_1'] = "title";
     $salbum['type'] = "album";
     $albums = Search::run($salbum);
     $ssong = array();
     $ssong['limit'] = $songCount;
     if ($songOffset) {
         $ssong['offset'] = $songOffset;
     }
     $ssong['rule_1_input'] = $query;
     $ssong['rule_1_operator'] = 0;
     $ssong['rule_1'] = "anywhere";
     $ssong['type'] = "song";
     $songs = Search::run($ssong);
     $r = Subsonic_XML_Data::createSuccessResponse();
     Subsonic_XML_Data::addSearchResult($r, $artists, $albums, $songs, $elementName);
     self::apiOutput($input, $r);
 }
开发者ID:axelsimon,项目名称:ampache,代码行数:49,代码来源:subsonic_api.class.php

示例9: addMyCommands

            Workflow::addItem(Item::create()->prefix('@', false)->title($queryUser . ' ' . $key)->subtitle($sub[1])->icon(isset($sub[2]) ? $sub[2] : $key)->arg('/' . $sub[0])->prio($prio--));
        }
        Workflow::addItem(Item::create()->prefix('@', false)->title($queryUser . ' gists')->subtitle("View {$queryUser}'s' gists")->icon('gists')->arg(Workflow::getGistUrl() . '/' . $queryUser)->prio(1));
    }
    private static function addMyCommands()
    {
        $myPages = array('dashboard' => array('', 'View your dashboard'), 'pulls' => array('pulls', 'View your pull requests', 'pull-request'), 'issues' => array('issues', 'View your issues', 'issue'), 'stars' => array('stars', 'View your starred repositories'), 'profile' => array(self::$user->login, 'View your public user profile', 'user'), 'settings' => array('settings', 'View or edit your account settings'), 'notifications' => array('notifications', 'View all your notifications'));
        foreach ($myPages as $key => $my) {
            Workflow::addItem(Item::create()->title('my ' . $key)->subtitle($my[1])->icon(isset($my[2]) ? $my[2] : $key)->arg('/' . $my[0])->prio(1));
        }
        Workflow::addItem(Item::create()->title('my gists')->subtitle('View your gists')->icon('gists')->arg(Workflow::getGistUrl() . '/' . self::$user->login)->prio(1));
    }
    private static function addSystemCommands()
    {
        $cmds = array('delete cache' => 'Delete GitHub Cache', 'logout' => 'Log out this workflow', 'update' => 'Update this Alfred workflow');
        if (Workflow::getConfig('autoupdate', true)) {
            $cmds['deactivate autoupdate'] = 'Deactivate auto updating this Alfred Workflow';
        } else {
            $cmds['activate autoupdate'] = 'Activate auto updating this Alfred Workflow';
        }
        if (self::$enterprise) {
            $cmds['enterprise reset'] = 'Reset the GitHub Enterprise URL';
        }
        foreach ($cmds as $cmd => $desc) {
            Workflow::addItem(Item::create()->title('> ' . $cmd)->subtitle($desc)->icon($cmd)->arg('> ' . str_replace(' ', '-', $cmd)));
        }
        Workflow::addItem(Item::create()->title('> changelog')->subtitle('View the changelog')->icon('file')->arg('https://github.com/gharlan/alfred-github-workflow/blob/master/CHANGELOG.md'));
    }
}
print Search::run($argv[1]);
开发者ID:njql007,项目名称:alfred-github-workflow,代码行数:30,代码来源:search.php

示例10: search_childrens

 public function search_childrens($name)
 {
     $search['type'] = "artist";
     $search['rule_0_input'] = $name;
     $search['rule_0_operator'] = 4;
     $search['rule_0'] = "title";
     $artists = Search::run($search);
     $childrens = array();
     foreach ($artists as $artist) {
         $childrens[] = array('object_type' => 'artist', 'object_id' => $artist);
     }
     return $childrens;
 }
开发者ID:cheese1,项目名称:ampache,代码行数:13,代码来源:label.class.php

示例11: get_additional_team_bio_page_info

	protected function get_additional_team_bio_page_info( $team )
	{
		/* code to get testimonials ordered by date new to old */
 		loadModel( "/entities/testimonials/EntityTestimonial" );
		//$testimonials = EntityTestimonial::GetEntityTeamTestimonialsWithSubTestimonials( $team  );
		$testimonials = EntityTestimonial::GetEntityTestimonialsOrderByOrder( $team );
		$testimonial_dicts = array();
		foreach( $testimonials as $testimonial ) {
			$testimonial_dicts[] = $testimonial->getAsDictionary();
		}
		
		/* get team listings */
		loadModel( "/search/Search" );
		$properties = array();
		$search = new Search();
		$search->addTerm( 'realtor', $team->rebrand_code );
		$search->addOrderBy( 'list_price', false);
		$props = $search->run( 0, 7 );
		$tmp_properties = Property::GetPropertiesFromIdArray($props, PropertyLoadLevel::IDX_SUMMARY, true);
		foreach( $props as $prop ) {
			try{
				$property = $tmp_properties[$prop];
				// add open house
				// $property->open_house = $property->getAllDates( true );
				$temp_pic = $property->get_first_pic();
				if ( is_object( $temp_pic ) ){
					$property->photo = $temp_pic->getUrl();
				} else {
					$property->photo = false;
				}
				$properties[] = $property;
			}
			catch( Exception $e ) {}
		}
		unset($tmp_properties);
		

		/* get team sold listings */
		$sold_properties = array();
		$sold_search = new Search();
		$sold_search->addTerm( 'buyer_seller', $team->rebrand_code );
		$sold_search->addFilter( SearchFilter::SOLD );
		$sold_search->addOrderBy( 'list_price', false);
		$sold_props = $sold_search->run( 0, 3);
		//set idx view to the sold table to get the sold prop info
		IDX::Set_IDX_View_Name( IDX::SOLD );
		$tmp_properties = Property::GetPropertiesFromIdArray($sold_props, PropertyLoadLevel::IDX_SUMMARY, true);

		foreach( $sold_props as $sold_prop ) {
			try{
				$property = $tmp_properties[$sold_prop];
				$temp_pic = $property->get_first_pic();
				if ( is_object( $temp_pic ) ){
					$property->photo = $temp_pic->getUrl();
				} else {
					$property->photo = false;
				}
				$sold_properties[] = $property;
			}
			catch( Exception $e ) {}
		}
		unset($tmp_properties);

		//reset back to normal idx view
		IDX::Set_IDX_View_Name( IDX::MATERIALIZED );

		$tpl_args = array(
			'testimonials' => $testimonial_dicts,
			'properties' => $properties,
			'sold_properties' => $sold_properties,
		);
		return $tpl_args;
 	}
开发者ID:nicholasbooj,项目名称:Enterprise_Boilerplate,代码行数:73,代码来源:ctrl_Realtor.action.php

示例12: switch

 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 */
require_once 'lib/init.php';
UI::show_header();
/**
 * action switch
 */
switch ($_REQUEST['action']) {
    case 'search':
        if ($_REQUEST['rule_1'] != 'missing_artist') {
            $browse = new Browse();
            require_once AmpConfig::get('prefix') . '/templates/show_search_form.inc.php';
            require_once AmpConfig::get('prefix') . '/templates/show_search_options.inc.php';
            $results = Search::run($_REQUEST);
            $browse->set_type($_REQUEST['type']);
            $browse->show_objects($results);
            $browse->store();
        } else {
            $wartists = Wanted::search_missing_artists($_REQUEST['rule_1_input']);
            require_once AmpConfig::get('prefix') . '/templates/show_missing_artists.inc.php';
            echo '<a href="http://musicbrainz.org/search?query=' . rawurlencode($_REQUEST['rule_1_input']) . '&type=artist&method=indexed" target="_blank">' . T_('View on MusicBrainz') . '</a><br />';
        }
        break;
    case 'save_as_smartplaylist':
        if (!Access::check('interface', 25)) {
            UI::access_denied();
            exit;
        }
        $playlist = new Search();
开发者ID:nioc,项目名称:ampache,代码行数:31,代码来源:search.php

示例13: search_childrens

 /**
  * Search for item childrens.
  * @param string $name
  * @return array
  */
 public function search_childrens($name)
 {
     $search['type'] = "song";
     $search['rule_0_input'] = $name;
     $search['rule_0_operator'] = 4;
     $search['rule_0'] = "title";
     $search['rule_1_input'] = $this->name;
     $search['rule_1_operator'] = 4;
     $search['rule_1'] = "album";
     $search['rule_2_input'] = $this->album_artist_name;
     $search['rule_2_operator'] = 4;
     $search['rule_2'] = "artist";
     $songs = Search::run($search);
     $childrens = array();
     foreach ($songs as $song) {
         $childrens[] = array('object_type' => 'song', 'object_id' => $song);
     }
     return $childrens;
 }
开发者ID:bl00m,项目名称:ampache,代码行数:24,代码来源:album.class.php

示例14: advanced_search

 /**
  * advanced_search
  * Perform an advanced search given passed rules
  * @param array $input
  */
 public static function advanced_search($input)
 {
     ob_end_clean();
     XML_Data::set_offset($input['offset']);
     XML_Data::set_limit($input['limit']);
     $results = Search::run($input);
     $type = 'song';
     if (isset($input['type'])) {
         $type = $input['type'];
     }
     switch ($type) {
         case 'artist':
             echo XML_Data::artists($results);
             break;
         case 'album':
             echo XML_Data::albums($results);
             break;
         default:
             echo XML_Data::songs($results);
             break;
     }
 }
开发者ID:cheese1,项目名称:ampache,代码行数:27,代码来源:api.class.php

示例15: array

            }
            return;
        }
        $myPages = array('dashboard' => array('', 'View your dashboard'), 'pulls ' => array('pulls', 'View your pull requests', 'pull-request'), 'issues ' => array('issues', 'View your issues', 'issue'), 'stars' => array('stars', 'View your starred repositories'), 'profile' => array(self::$user->login, 'View your public user profile', 'user'), 'settings' => array('settings', 'View or edit your account settings'), 'notifications' => array('notifications', 'View all your notifications'));
        foreach ($myPages as $key => $my) {
            Workflow::addItem(Item::create()->title('my ' . $key)->subtitle($my[1])->icon(isset($my[2]) ? $my[2] : rtrim($key))->arg('/' . $my[0])->prio(1));
        }
        Workflow::addItem(Item::create()->title('my gists')->subtitle('View your gists')->icon('gists')->arg(Workflow::getGistUrl() . '/' . self::$user->login)->prio(1));
    }
    private static function addSystemCommands()
    {
        $cmds = array('delete cache' => 'Delete GitHub Cache', 'logout' => 'Log out this workflow', 'update' => 'Update this Alfred workflow');
        if (Workflow::getConfig('autoupdate', true)) {
            $cmds['deactivate autoupdate'] = 'Deactivate auto updating this Alfred Workflow';
        } else {
            $cmds['activate autoupdate'] = 'Activate auto updating this Alfred Workflow';
        }
        if (self::$enterprise) {
            $cmds['enterprise reset'] = 'Reset the GitHub Enterprise URL';
        }
        foreach ($cmds as $cmd => $desc) {
            Workflow::addItem(Item::create()->title('> ' . $cmd)->subtitle($desc)->icon($cmd)->arg('> ' . str_replace(' ', '-', $cmd)));
        }
        $cmds = array('help' => 'readme', 'changelog' => 'changelog');
        foreach ($cmds as $cmd => $file) {
            Workflow::addItem(Item::create()->title('> ' . $cmd)->subtitle('View the ' . $file)->icon('file')->arg('https://github.com/gharlan/alfred-github-workflow/blob/master/' . strtoupper($file) . '.md'));
        }
    }
}
print Search::run($argv[1], $argv[2], getenv('hotkey'));
开发者ID:jessefurmanek,项目名称:dotfiles,代码行数:30,代码来源:search.php


注:本文中的Search::run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。