本文整理匯總了PHP中Instagram::save_config方法的典型用法代碼示例。如果您正苦於以下問題:PHP Instagram::save_config方法的具體用法?PHP Instagram::save_config怎麽用?PHP Instagram::save_config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Instagram
的用法示例。
在下文中一共展示了Instagram::save_config方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Instagram
}
});
$instagram = new Instagram();
$kirby = $this;
$this->options['routes'][] = array('pattern' => 'kirbygram/install', 'method' => 'GET', 'action' => function ($path = null) use($instagram, $kirby) {
if (!$instagram->is_installed()) {
return f::load(__DIR__ . '/templates/install.php', array('instagram' => $instagram));
}
return false;
});
$this->options['routes'][] = array('pattern' => 'kirbygram/done', 'method' => 'GET', 'action' => function ($path = null) use($instagram) {
if ($instagram->is_installed()) {
return f::load(__DIR__ . '/templates/complete.php', array('instagram' => $instagram));
} else {
return f::load(__DIR__ . '/templates/error.php', array('instagram' => $instagram));
}
});
$this->options['routes'][] = array('pattern' => 'kirbygram/complete', 'method' => 'POST', 'action' => function ($path = null) use($instagram) {
if (!$instagram->is_installed()) {
//write to cache
$data = $_POST;
if ($data['kgt'] == $instagram->get_config('csrf')) {
if ($data['token'] && $data['user']) {
$instagram->set_config(array('token' => $data['token'], 'user' => $data['user'], 'uid' => $data['uid'], 'installed' => true));
}
$instagram->save_config();
}
exit;
}
return false;
});