Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.24 KB | None | 0 0
  1. <?php
  2.  
  3. // Section variables corresponding with question numbers - FOUR PATHS
  4. for($i==1; $i<28; $i++){
  5. $_SESSION[$i] = $form_state['values']['submitted']['2'][$i];
  6. }
  7.  
  8. // Section variables corresponding with question numbers - CHANGE AGENCY
  9. for($i==28; $i<41; $i++){
  10. $_SESSION[$i] = $form_state['values']['submitted']['4'][$i];
  11. }
  12.  
  13. // Section variables corresponding with question numbers - MESSENGERHOOD
  14. for($i==41; $i<57; $i++){
  15. $_SESSION[$i] = $form_state['values']['submitted']['6'][$i];
  16. }
  17.  
  18. // Section variables corresponding with question numbers - CLARITY OF PURPOSE
  19. for($i==57; $i<66; $i++){
  20. $_SESSION[$i] = $form_state['values']['submitted']['8'][$i];
  21. }
  22.  
  23. // Section variables corresponding with question numbers - CONNECTION TO TRUSTED SOURCES
  24. for($i==70; $i<77; $i++){
  25. $_SESSION[$i] = $form_state['values']['submitted']['14'][$i];
  26. }
  27. $_SESSION['32'] = $form_state['values']['submitted']['32'];
  28. $_SESSION['33'] = $form_state['values']['submitted']['33'];
  29. $_SESSION['34'] = $form_state['values']['submitted']['34'];
  30.  
  31. // Section variables corresponding with question numbers - PERSONAL DEVELOPMENT
  32. for($i==77; $i<83; $i++){
  33. $_SESSION[$i] = $form_state['values']['submitted']['16'][$i];
  34. }
  35. for($i==83; $i<89; $i++){
  36. $_SESSION[$i] = $form_state['values']['submitted']['17'][$i];
  37. }
  38. for($i==89; $i<97; $i++){
  39. $_SESSION[$i] = $form_state['values']['submitted']['18'][$i];
  40. }
  41.  
  42. // Section variables corresponding with question numbers - INTERNAL STRUCTURES & SKILLS
  43. for($i==97; $i<100; $i++){
  44. $_SESSION[$i] = $form_state['values']['submitted']['20'][$i];
  45. }
  46. for($i==100; $i<105; $i++){
  47. $_SESSION[$i] = $form_state['values']['submitted']['21'][$i];
  48. }
  49. for($i==105; $i<108; $i++){
  50. $_SESSION[$i] = $form_state['values']['submitted']['22'][$i];
  51. }
  52. for($i==108; $i<113; $i++){
  53. $_SESSION[$i] = $form_state['values']['submitted']['23'][$i];
  54. }
  55. for($i==113; $i<117; $i++){
  56. $_SESSION[$i] = $form_state['values']['submitted']['24'][$i];
  57. }
  58.  
  59. // Section variables corresponding with question numbers - MANIFESTATION
  60. for($i==117; $i<122; $i++){
  61. $_SESSION[$i] = $form_state['values']['submitted']['26'][$i];
  62. }
  63. for($i==122; $i<127; $i++){
  64. $_SESSION[$i] = $form_state['values']['submitted']['27'][$i];
  65. }
  66. for($i==127; $i<133; $i++){
  67. $_SESSION[$i] = $form_state['values']['submitted']['28'][$i];
  68. }
  69. for($i==133; $i<141; $i++){
  70. $_SESSION[$i] = $form_state['values']['submitted']['29'][$i];
  71. }
  72.  
  73. // ########## Four Paths ########## //
  74. // Power
  75. $power_path = $_SESSION['2'] + $_SESSION['3'] + $_SESSION['9'] + $_SESSION['12'] + $_SESSION['15'] + $_SESSION['17'] + $_SESSION['19'] + $_SESSION['20'] + $_SESSION['25'];
  76.  
  77. // Piety
  78. $piety_path = $_SESSION['1'] + $_SESSION['5'] + $_SESSION['14'] + $_SESSION['16'] + $_SESSION['6'] + $_SESSION['10'] + $_SESSION['22'] + $_SESSION['23'] + $_SESSION['24'] + $_SESSION['21'];
  79.  
  80. // Presence
  81. $presence_path = $_SESSION['4'] + $_SESSION['7'] + $_SESSION['8'] + $_SESSION['11'] + $_SESSION['13'] + $_SESSION['18'] + $_SESSION['26'] + $_SESSION['21'] + $_SESSION['25'];
  82.  
  83. // Purpose
  84. $purpose_path = $_SESSION['1'] + $_SESSION['5'] + $_SESSION['14'] + $_SESSION['16'] + $_SESSION['27'] + $_SESSION['15'] + $_SESSION['17'] + $_SESSION['19'] + $_SESSION['20'];
  85.  
  86. // Pull highest value from the 4 paths and use that as your "path"
  87. $path_message_power = "In the Path of Power, your ego is the source of your purpose. Your purpose is your purpose because you declare it to be so. You decide what you wish to achieve, commit, create a strategy, set goals, and devote yourself to the achievement of these goals. There is no need to consult with a trusted source. This path works best if you take personal accountability for everything that happens to you. In this way, you will grow and develop into someone capable of achieving bigger and bigger things.";
  88.  
  89. $path_message_piety = "In the Path of Piety, you surrender your individual will to that of a trusted source. The focus is on giving yourself fully to your path, without reservation. Devotion, worship and surrender are manifest through spiritual practices, such as prayer, meditation, and reading sacred texts. In this path, your purpose is given to you by your trusted source, and it is your task to devote yourself to fulfilling it.";
  90.  
  91. $path_message_presence = "In the Path of Presence, the focus is on releasing attachment to the things of the ego. This is usually done through focused spiritual practices, such as meditation, prayer and chanting. There is no need for a purpose or a trusted source in this path; being fully present in the moment is the key. In this way, you can release attachment to your desires and become more and more fully awake.";
  92.  
  93. $path_message_purpose = "In the Path of Purpose, your trusted source gives you your purpose and your ego decides whether and how to manifest it. Though in regular contact with a trusted source, your ego retains decision-making authority. Manifestation becomes a partnership, a project shared between your ego and your trusted source";
  94.  
  95. if ($power_path >= ($piety_path + 6) || $power_path >= ($presence_path + 6) || $purpose_path >= ($piety_path + 6)) {
  96. $path = "Power";
  97. $path_message = $path_message_power;
  98. }
  99. elseif ($piety_path >= ($power_path + 6) || $piety_path >= ($presence_path + 6) || $piety_path >= ($purpose_path + 6)) {
  100. $path = "Piety";
  101. $path_message = $path_message_piety;
  102. }
  103. elseif ($presence_path >= ($power_path + 6) || $presence_path >= ($piety_path + 6) || $presence_path >= ($purpose_path + 6)) {
  104. $path = "Presence";
  105. $path_message = $path_message_presence;
  106. }
  107. elseif ($purpose_path >= ($power_path + 6) || $purpose_path >= ($piety_path + 6) || $purpose_path >= ($purpose_path + 6)) {
  108. $path = "Purpose";
  109. $path_message = $path_message_purpose;
  110. }
  111. else {
  112. $path = "No chosen path";
  113. $path_message = "No path message";
  114. }
  115.  
  116.  
  117. // ########## Change Agency ########## //
  118. $change_agent_score = $_SESSION['28'] + $_SESSION['29'] + $_SESSION['30'] + $_SESSION['31'] + $_SESSION['32'] + $_SESSION['33'] + $_SESSION['34'] + $_SESSION['35'] + $_SESSION['36'] + $_SESSION['37'] + $_SESSION['38'] + $_SESSION['39'] + $_SESSION['40'];
  119.  
  120.  
  121. // ########## Messengerhood ########## //
  122. $messenger_score = $_SESSION['41'] + $_SESSION['42'] + $_SESSION['43'] + $_SESSION['44'] + $_SESSION['45'] + $_SESSION['46'] + $_SESSION['47'] + $_SESSION['48'] + $_SESSION['49'] + $_SESSION['50'] + $_SESSION['51'] + $_SESSION['52'] + $_SESSION['53'];
  123.  
  124. $writer_score = $_SESSION['41'] + $_SESSION['42'] + $_SESSION['43'] + $_SESSION['44'] + $_SESSION['45'] + $_SESSION['46'];
  125.  
  126. $speaker_score = $_SESSION['47'] + $_SESSION['48'] + $_SESSION['49'] + $_SESSION['50'] + $_SESSION['51'];
  127.  
  128. $message_clarity = $_SESSION['54'];
  129.  
  130. $audience_clarity = $_SESSION['55'];
  131.  
  132.  
  133. // ########## Clarity of Purpose ########## //
  134. $purpose_clarity_score = $_SESSION['57'] + $_SESSION['58'] + $_SESSION['59'] + $_SESSION['60'] + $_SESSION['61'] + $_SESSION['62'] + $_SESSION['63'] + $_SESSION['64'];
  135.  
  136. $permission_score = $_SESSION['65'] + $_SESSION['66'];
  137.  
  138.  
  139. // ########## Connection to Trusted Sources ########## //
  140. $text1 = $form_state['values']['submitted']['10'];
  141. $text2 = $form_state['values']['submitted']['11'];
  142. $text3 = $form_state['values']['submitted']['12'];
  143.  
  144. $connection_score = max($_SESSION['32'], $_SESSION['33'], $_SESSION['34']) + $_SESSION['73'] + $_SESSION['74'] + $_SESSION['75'] + $_SESSION['76'];
  145.  
  146.  
  147. // ########## Personal Development ########## //
  148. $uncertainty_score = $_SESSION['78'] + $_SESSION['79'] + $_SESSION['80'];
  149.  
  150. $order_score = $_SESSION['77'] + $_SESSION['82'] - $_SESSION['79'] - $_SESSION['81'];
  151.  
  152. $self_awareness_score = $_SESSION['84'] + $_SESSION['85'] + $_SESSION['86'] + $_SESSION['87'] + $_SESSION['88'] - $_SESSION['83'];
  153.  
  154. $wound_score = $_SESSION['89'] + $_SESSION['90'] + $_SESSION['91'] + $_SESSION['92'] + $_SESSION['93'] + $_SESSION['94'] + $_SESSION['95'] + $_SESSION['96'];
  155.  
  156. // ########## Internal Structures & Skills ########## //
  157. $spiritual_practice_score = $_SESSION['97'] + $_SESSION['98'] + $_SESSION['99'];
  158.  
  159. $values_score = $_SESSION['100'] + $_SESSION['101'] + $_SESSION['102'] + $_SESSION['103'] + $_SESSION['104'];
  160.  
  161. $beliefs_score = $_SESSION['105'] + $_SESSION['106'] + $_SESSION['107'];
  162.  
  163. $parts_score = $_SESSION['108'] + $_SESSION['109'] + $_SESSION['110'] + $_SESSION['111'] + $_SESSION['112'];
  164.  
  165. $fear_score = $_SESSION['113'] + $_SESSION['114'] + $_SESSION['115'] + $_SESSION['116'];
  166.  
  167.  
  168. // ########## Internal Structures & Skills ########## //
  169. $messaging_score = $_SESSION['117'] + $_SESSION['118'] + $_SESSION['119'] + $_SESSION['120'] + $_SESSION['121'];
  170.  
  171. $day_job_score = $_SESSION['122'] + $_SESSION['123'] + $_SESSION['124'] + $_SESSION['125'] + $_SESSION['126'];
  172.  
  173. $impact_score = $_SESSION['127'] + $_SESSION['128'] + $_SESSION['129'] + $_SESSION['130'] + $_SESSION['131'] + $_SESSION['132'];
  174.  
  175. $personal_vision_score = $_SESSION['133'] + $_SESSION['134'] + $_SESSION['136'];
  176.  
  177. $collective_score = $_SESSION['135'] + $_SESSION['137'] + $_SESSION['138'] + $_SESSION['139'] + $_SESSION['140'];
  178.  
  179. $resource_score = $_SESSION['135'] + $_SESSION['137'] + $_SESSION['140'];
  180.  
  181.  
  182. // ########## Paragraph Logic ########## //
  183. // Change Agent
  184. if ($change_agent_score < 40) {
  185. $change_agent_message = "Based on your responses, you are probably not a change agent. Living your individual purpose and helping those around you will likely provide you with all the fulfillment you will ever need. Consider yourself fortunate! Being called to change the world can be an overwhelming responsibility.<br/><br/>
  186.  
  187. If you are interested in learning more about finding and living your individual higher purpose, go here: <a href='#'>link to purpose seekers page</a><br/><br/>
  188.  
  189. If you would like to see which of the various change agent skills and structures you have in place, by all means, keep reading!";
  190. }
  191.  
  192. if ($change_agent_score >= 40 && $change_agent_score <= 55) {
  193. $change_agent_message = "Based on your responses, you may be a change agent. Living your individual purpose and helping those around you may provide you with sufficient fulfillment in your life. Alternatively, you can choose to further explore what it would take to become a successful change agent. Keep reading to see which of the change agent skills and structures you have in place.";
  194. }
  195.  
  196. if ($change_agent_score > 55 && $change_agent_score <= 65) {
  197. $change_agent_message = "Based on your responses, you are probably a change agent. As such, you will have trouble finding peace and fulfillment unless you are actively engaged in creating a better planet. For you, “success” means making a good living at changing the world. The outer things that fulfill others may bring you temporary joy, but they will never be enough. Learning to be a successful, powerful change agent is the only path for you. Keep reading to see which of the change agent skills and structures you have in place already!";
  198. }
  199. if ($change_agent_score > 65) {
  200. $change_agent_message = "Based on your responses, you are definitely a change agent! The call to create a better planet is just too strong to ignore. For you, “success” means making a good living at changing the world. The outer things that fulfill others may bring you temporary joy, but they will never be enough. Learning to be a successful, powerful change agent is the only path for you. Keep reading to see which of the change agent skills and structures you have in place already!";
  201. }
  202.  
  203. // Messengerhood
  204. if ($messenger_score < 45 && $writer_score < 25 && $speaker_score < 20) {
  205. $messengerhood_message = "You are probably not a \"messenger\" in the way we use the term. Though everyone has a message of some form that they are meant to transmit to others, most are not called to broadcast this message on a large scale.";
  206. }
  207. elseif ($messenger_score > 60 || $writer_score > 30 || $speaker_score > 25) {
  208. $messengerhood_message = "You are almost certainly a messenger. Like most messengers, you are drawn to situations that involve communicating to many people. You have developed your ability to impact many people at once. Spreading your message is integral to manifesting your purpose.";
  209. }
  210. else {
  211. $messengerhood_message = "You may be a messenger. Everyone has some message they are meant to transmit to others; it may be part of your purpose to transmit it to many people. If so, you will need to develop your ability to speak, write, lead, and/or teach so that you will be effective at this. By impacting many people at once, you will be able to increase your impact and accelerate global transformation.";
  212. }
  213.  
  214. if ($message_clarity > 4 && $audience_clarity > 4) {
  215. $clarity_message = "Fortunately, you are pretty clear about your message and your audience. This will make delivering your message in a way that reaches their hearts much easier. We congratulate you for the work it must have taken to gain that clarity!";
  216. }
  217. elseif ($message_clarity > 4 && $audience_clarity <= 4) {
  218. $clarity_message = "Fortunately, you are clear about your message. If you could gain greater clarity about the exact audience for whom that message is intended, you would be in a much better position to deliver it! Trying to deliver the message to everyone will likely be a frustrating experience; there are those aching to hear you! You will need support to find them.";
  219. }
  220. elseif ($message_clarity <= 4 && $audience_clarity > 4) {
  221. $clarity_message = "Fortunately, you are clear about your audience. If you could gain greater clarity about your exact message, you would be in a much better position to deliver it! Delivering an approximation of your message may be frustrating for you and less engaging for your audience. You will need support to find your exact message";
  222. }
  223. else {
  224. $clarity_message = "Like many who are called to be messengers, you are clear neither about your exact message nor about the precise audience who is meant to hear it. Though you can develop your skills while delivering content that is not your message, it may be difficult to feel fully satisfied and fulfilled. The sooner you are completely clear, the sooner you will be giving your true message to those who are aching to hear it.";
  225. }
  226.  
  227. // Clarity of Purpose
  228. if ($purpose_clarity_score > 40) {
  229. $clarity_of_purpose_message = "You are much clearer than most people about the different aspects of your purpose. You have probably done a considerable amount of work on yourself to gain this clarity. Congratulations! Though more purpose information is always helpful, for you the challenge is manifesting your purpose. Focus on whether you have the skills, vision and resources necessary to fulfill your purpose.";
  230. }
  231. elseif ($purpose_clarity_score < 30) {
  232. $clarity_of_purpose_message = "There are considerable gaps in your understanding of your higher purpose. It will be difficult and frustrating if you try to create change from this shaky foundation. In order to be able to make a living as a change agent, you need to gain much greater clarity about your exact role in global transformation";
  233. }
  234. else {
  235. $clarity_of_purpose_message = "You have some clarity of purpose, probably as a result of work you have done on yourself. There are enough holes in your understanding, though, that your efforts to create change will probably meet with mixed results. Change agents are most successful when they are able to meet their financial needs from their transformational activities, which requires having a detailed and powerful sense of purpose. We recommend gaining greater clarity as your next step.";
  236. }
  237.  
  238. if ($permission_score > 4 && $purpose_clarity_score <= 40) {
  239. $permission_message = "Unless it is against your beliefs, we strongly recommend improving your connection to your trusted source. This will give you important guidance in tough situations and allow for dramatically improved clarity of purpose.";
  240. }
  241. elseif ($permission_score <= 4 && $purpose_clarity_score > 40) {
  242. $permission_message = "Based on your responses, there is little or no unmanaged resistance (fears, doubts and limiting beliefs) blocking your understanding of your purpose. This is highly unusual; it must have required concerted spiritual practice or psychological work for quite some time to create this internal state of alignment.";
  243. }
  244. else {
  245. $permission_message = "<strong>We need an ELSE here</strong>";
  246. }
  247.  
  248. // Trusted Source Connection
  249. if ((max($_SESSION['32'], $_SESSION['33'], $_SESSION['34'])) <3 && (!isset($_SESSION['35'])) && (!isset($_SESSION['36'])) && (!isset($_SESSION['37']))) {
  250. $trusted_source_message = "Your belief system does not appear to include the existence of any trusted sources. This means that it will be up to you to choose a personal purpose, decide on what changes you would like to create in the world, and make it happen!";
  251. }
  252.  
  253. if ($path == "Piety" || $path == "Purpose") {
  254. $trusted_source_path_message = "This is a difficult situation for someone on the Path of <Path>. This path's functioning depends on your belief in and connection to a trusted source. We recommend that you seek guidance to help you resolve this apparent contradiction.";
  255. }
  256. elseif ($path == "Power" || $path == "Presence") {
  257. $trusted_source_path_message = "This is a difficult situation for someone on the Path of <Path>. This path's functioning depends on your belief in and connection to a trusted source. We recommend that you seek guidance to help you resolve this apparent contradiction.";
  258. }
  259.  
  260. if ($connection_score >= 30) {
  261. $connection_message = "You have an extraordinarily clear connection with your trusted source. Make full use of this unusual gift by consulting it about many things! With constant communication with your trusted source, you are in a much better position to evolve into a greater and more powerful instrument of purpose and create amazing transformation.";
  262. }
  263. elseif ($connection_score > 20) {
  264. $connection_message = "You have little connection to a trusted source. Trying to create change in the world without support from beyond your mind can be very difficult. Our individual minds simply cannot grasp the incredible complexity of the challenge that lies ahead of us! Unless it is against your beliefs, we strongly recommend improving your connection to your trusted source. This will give you important guidance in tough situations and allow for dramatically improved clarity of purpose.";
  265. }
  266. else {
  267. $connection_message = "You have some connection to a trusted source (more than most people). This connection provides you with guidance as you make decisions and move through life. To have a really big impact, though, you will benefit greatly from improving your connection. As a change agent, it is best if you can have verbal conversations with your trusted source about any topic at any time. This is necessary to accelerate your personal evolution, help you to make the most purposeful choices under tough, stressful conditions, and give you extremely detailed clarity of purpose.";
  268. }
  269.  
  270. if ((max($_SESSION['32'], $_SESSION['33'], $_SESSION['34']) >= 5) && ((isset($_SESSION['35'])) || (isset($_SESSION['36'])) || (!isset($_SESSION['37'])))) {
  271. $trusted_sources = "Here are the trusted sources with which you connect (or could connect):<br/>";
  272. }
  273. if (isset($_SESSION['35'])) {
  274. echo $_SESSION['35'] . "<br/>";
  275. }
  276. if (isset($_SESSION['36'])) {
  277. echo $_SESSION['36'] . "<br/>";
  278. }
  279. if (isset($_SESSION['37'])) {
  280. echo $_SESSION['37'] . "<br/>";
  281. }
  282.  
  283. // Personal Development
  284. if ($uncertainty_score > 16) {
  285. $uncertainty_score_message = "You appear to be at ease in situations of uncertainty. This is an important trait for a change agent, as creating change introduces and increases uncertainty. ";
  286. }
  287. elseif (($uncertainty_score >= 10) && ($uncertainty_score <=16)) {
  288. $uncertainty_score_message = "You seem to have some comfort with uncertainty. This is an important trait for a change agent, as creating change introduces and increases uncertainty. ";
  289. }
  290. elseif ($uncertainty_score < 10) {
  291. $uncertainty_score_message = "You appear to be uncomfortable in situations of uncertainty. Being at ease in such situations is an important trait for a change agent, as creating change introduces and increases uncertainty. ";
  292. }
  293. else {
  294. $uncertainty_score_message = "NEED AN ELSE STATEMENT HERE";
  295. }
  296.  
  297. if ($order_score > 8) {
  298. $order_score_message = "You are far more comfortable with structure and order than with chaos. As a change agent, you will need to be able to operate in new territory, where there is no clear map. Enhancing your comfort with lack of structure is essential! If you don't, you will tend to cling to existing structures or create new ones out of a need for control.";
  299. }
  300. elseif ($order_score > 5 && $order_score <=8) {
  301. $order_score_message = "You seem to be more comfortable with structure and order than with chaos. As a change agent, you will need to be able to operate in new territory, where there is no clear map. Enhancing your comfort with lack of structure would benefit you.";
  302. }
  303. elseif ($order_score < (-8)) {
  304. $order_score_message = "You are far more comfortable with chaos than with structure and order. As a change agent, you will need to be able to create new structures; simply tearing down old ones will invite fear and resistance from others. Increasing your skill and comfort at operating within existing structures and creating new ones is essential!";
  305. }
  306. elseif ($order_score < (-5) && $order_score >= (-8)) {
  307. $order_score_message = "You seem to be more comfortable with structure and order than with chaos. As a change agent, you will need to be able to operate in new territory, where there is no clear map. Enhancing your comfort with lack of structure would benefit you.";
  308. }
  309. elseif ($order_score >= (-5) && $order_score <= (5) && $uncertainty_score < 12) {
  310. $order_score_message = "You seem to be capable of operating fairly well when you are held by structure and when you are not. These are great qualities for change agents, who must operate within existing structures, modify them, create new ones, and operate outside of any structure.";
  311. }
  312. elseif ($order_score >= (-5) && $order_score <= (5) && $uncertainty_score >= 12) {
  313. $order_score_message = "You seem to be capable of operating fairly well when you are held by structure and when you are not. These are great qualities for change agents, who must operate within existing structures, modify them, create new ones, and operate outside of any structure.";
  314. }
  315. else {
  316. $order_score_message = "WE NEED AN ELSE STATEMENT";
  317. }
  318.  
  319. if ($self_awareness_score > 25) {
  320. $self_awareness_message = "You have done a tremendous amount of work on yourself. You are aware of the impact you have on others, you have explored your unconscious, and you seek and use feedback. These skills will help you to grow and develop into a better and more powerful change agent. Congratulations!";
  321. }
  322. elseif ($self_awareness_score <= 25 && $self_awareness_score > 12) {
  323. $self_awareness_message = "You have done considerable work developing yourself. Of course, there is always more room to grow: you can delve more deeply to explore the roots of your reactions to and projections on those you seek to influence and change. These skills will help you to grow and develop into a better and more powerful change agent.";
  324. }
  325. elseif ($self_awareness_score <= 12) {
  326. $self_awareness_message = "Your power as a change agent would be enhanced if you were to do additional work on yourself: developing greater awareness of the impact you have on others, exploring your unconscious, and seeking feedback from those around you. These skills would help you to grow and develop into a better and more powerful change agent.";
  327. }
  328.  
  329. if ($wound_score > 40) {
  330. $wound_message = "You have done extraordinarily thorough work with your childhood wounds and integrated their gifts. The freedom you have gained from this deep work will allow you to see the blessings in the old and the new, allowing you to guide people to the new paradigm with minimal fear and resistance. Take pride in this extraordinary accomplishment!";
  331. }
  332. elseif ($wound_score <= 40 && $wound_score > 30) {
  333. $wound_message = "You have done considerable work with your childhood wounds and can probably see how they benefited you. There is still some work left to do, so that you can fully appreciate and integrate the gifts of these wounds. The freedom you will gain will allow you to see the blessings in the old and the new, allowing you to guide people to the new paradigm with minimal fear and resistance. Keep going!";
  334. }
  335. elseif ($wound_score <= 30 && $wound_score > 20) {
  336. $wound_message = "You have done some work with your childhood wounds, developing awareness of them and probably some healing. There is still considerable work left to do, so that you can fully appreciate and integrate the gifts of these wounds. The freedom you will gain will allow you to see the blessings in the old and the new, allowing you to guide people to the new paradigm with minimal fear and resistance. Keep going!";
  337. }
  338. elseif ($wound_score <= 20) {
  339. $wound_message = "You have considerable work to do to become fully aware of and heal your childhood wounds. Negative experiences from childhood form the foundation of the personality. However, if you do not develop greater awareness of these wounds, your change agent activities will probably encounter stiff opposition and negative reactions from others. Operating from wound-driven motivations tends to polarize people.";
  340. }
  341. else {
  342. $wound_message = "NEED ELSE DATA";
  343. }
  344.  
  345.  
  346. // Internal Structures & Skills
  347. if ($spiritual_practice_score <= 10) {
  348. $spiritual_practice_message = "You don't seem to have a consistent spiritual practice. Besides the health benefits of regular meditation, prayer or other practices, they help change agents to maintain an internal state of awareness consistent with the world they seek to create. We recommend choosing a spiritual practice you enjoy and sticking with it!";
  349. }
  350. elseif ($spiritual_practice_score > 10 && $spiritual_practice_score <=15) {
  351. $spiritual_practice_message = "You have a spiritual practice, but it could be more consistent. Gaps in practice give your ego a chance to revert back to a less evolved state. This can impede your personal evolution and make it harder to create transformation. We recommend scheduling a consistent time and making your spiritual practice a priority.";
  352. }
  353. elseif ($spiritual_practice_score > 15) {
  354. $spiritual_practice_message = "You have a strong, consistent spiritual practice. Congratulations! This will accelerate your personal evolution and help you to create an environment of transformation around you at all times. (It will also reduce stress and its associated health problems.)";
  355. }
  356. else {
  357. $spiritual_practice_message = "NEED ELSE";
  358. }
  359.  
  360. if ($values_score <= 10) {
  361. $values_score_message = "It appears that you have not worked out a specific set of personal values to live by. Values guide your behavior and decisions to ensure that they remain consistent with the world you seek to create. They are required in order to reach the highest levels of impact as a change agent, both for individuals and organizations. We recommend engaging in a values definition process.";
  362. }
  363. elseif ($values_score > 10 && $values_score <= 21) {
  364. $values_score_message = "You have values, but you could benefit from making them clearer and more a part of your everyday life. The value of values is only realized when you use them consistently in decision-making! We recommend updating your values and posting them somewhere where you will constantly be reminded of them.";
  365. }
  366. elseif ($values_score > 21 && $values_score <= 28) {
  367. $values_score_message = "Congratulations! You have clear values and live by them with some consistency. To get even more benefit from them, you can practice making them a part of your behavior and decision-making even more of the time. This is a great way of being the change you seek to create.";
  368. }
  369. elseif ($values_score > 28) {
  370. $values_score_message = "Congratulations! You know your values and live by them consistently. This is a great way of being the change you seek to create. Your attention to your values will stand you in excellent stead as a change agent.";
  371. }
  372. else {
  373. $values_score_message = "NEED ELSE";
  374. }
  375.  
  376. if ($beliefs_score <= 8) {
  377. $beliefs_score_message = "It appears that you haven't worked with very many limiting beliefs. For most people, removing a dozen or so limiting beliefs gives them all the freedom they need to live their lives fully. But for change agents, clearing away hundreds of internal blocks is crucial. We recommend that you train in a method for removing beliefs and use it consistently, or take a BeliefCleansing™ Teleseminar to remove all your limiting beliefs.";
  378. }
  379. elseif ($beliefs_score > 8 && $beliefs_score <= 15) {
  380. $beliefs_score_message = "Congratulations, you have cleared many of your limiting beliefs! For most people, the work you've done gives them all the freedom they need to live their lives fully. But for change agents, clearing away hundreds of internal blocks is crucial. We recommend that you use your belief-clearing method consistently to remove the rest, or take a BeliefCleansing™ Teleseminar to remove all your limiting beliefs.";
  381. }
  382. elseif ($beliefs_score > 15 && $beliefs_score <= 18) {
  383. $beliefs_score_message = "Congratulations on clearing so many of your limiting beliefs! You have removed more than most people even know they have. Don't stop now; clear the rest! (If you're concerned it may take too long, you can take a BeliefCleansing™ Teleseminar to remove all of them at once.)";
  384. }
  385. elseif ($beliefs_score > 18) {
  386. $beliefs_score_message = "Congratulations on freeing yourself from your limiting beliefs! As a change agent, this will allow you to contemplate and plan global strategies that are simply out of reach for others. Put this ability to use; your mission is calling!";
  387. }
  388.  
  389. if ($parts_score <= 12) {
  390. $parts_score_message = "It appears that you haven't worked with very many of the parts of your psyche. The internal subpersonalities that comprise your psyche can be powerful allies or potent saboteurs. Without a healthy relationship with them, you may find it very difficult to be successful as a change agent.";
  391. }
  392. elseif ($parts_score > 12 && $parts_score <= 18) {
  393. $parts_score_message = "You have some familiarity with the internal parts of your psyche and have done some work with them. Now it's time to apply your skills to aligning your parts with your purpose! Simply being aware of them isn't enough; you need their permission and support to be the powerful change agent you are meant to be.";
  394. }
  395. elseif ($parts_score > 18 && $parts_score <= 28) {
  396. $parts_score_message = "Congratulations on working with so many of your internal parts! The internal awareness that comes from consistent parts work will help you tremendously as a change agent. There is further to go, though; you can transform all of your personality parts into potent allies who will assist you in manifesting your purpose";
  397. }
  398. elseif ($parts_score > 28) {
  399. $parts_score_message = "Congratulations on doing such a thorough job aligning your internal parts! You have achieved a rare state that most people don't even know is possible. Maintain this awareness and continue to expand your internal team to include new parts! Be alert to signs of internal misalignment.";
  400. }
  401. else {
  402. $parts_score_message = "NEEDS ELSE";
  403. }
  404.  
  405. if ($fear_score <= 7) {
  406. $fear_score_message = "You seem to have concluded that fear is a bad thing and taken steps to eradicate or override your fears. This approach can lead to significant internal and external resistance to your change efforts. Developing a positive, honoring relationship with fear and skepticism may seem counter-intuitive, but without it, you may find yourself consistently blocked.";
  407. }
  408. elseif ($fear_score > 7 && $fear_score <= 15) {
  409. $fear_score_message = "You have worked some with your fears, but appear to have a “love-hate” relationship with fear. This can lead to external resistance if you are unable to honor and appreciate others' fears of change. We recommend working with the frightened parts of yourself and honoring the gifts that fear can bring. Remember, you must love something in order to transform it!";
  410. }
  411. elseif ($fear_score > 15) {
  412. $fear_score_message = "You have a very evolved and integrated relationship to fear. This is very rare; change agents usually try to ignore and override their fears. As a result, many become mired in internal resistance. Your holistic view of fear will help you to better understand and work with the fears of others, avoiding unnecessary conflict and resistance to your efforts";
  413. }
  414. else {
  415. $fear_score_message = "NEED ELSE";
  416. }
  417.  
  418. // Manifestation
  419. if ($messaging_score <= 15) {
  420. $messaging_message = "You don't appear to have spread your message very widely yet. This may be because you are not very clear about your purpose or because you are blocked by fear and doubt. It is difficult to have a significant impact as a change agent if you are unwilling or unable to go public about the change you are trying to create.";
  421. }
  422. elseif ($messaging_score > 15 && $messaging_score <= 25) {
  423. $messaging_message = "You have had some success at getting your message out to the masses. Congratulations! Don't stop now; being clear and public about the change you seek to create is the best way to attract supporters and colleagues to your cause. It is also an excellent way to be paid to live your purpose!";
  424. }
  425. elseif ($messaging_score > 25) {
  426. $messaging_message = "You have achieved significant success getting your message out to the masses. Congratulations! Make sure that you are transmitting the most up-to-date version of your purpose and not relying on a message that has given you success in the past! It is easy to stick with a “winning formula” and unwittingly sacrifice the change you are meant to create. Stay current and take risks!";
  427. }
  428. else {
  429. $messaging_message = "NEED ELSE";
  430. }
  431.  
  432. if ($day_job_score <= 15) {
  433. $day_job_message = "It doesn't appear that you are able to make a significant amount of income as a change agent. This could seriously degrade the impact you are able to have in your lifetime! Changing the world as a hobby is much less effective than doing it as a day job. You probably need to get much clearer about the details of your purpose and how to market it effectively in order to earn the income you need as a change agent.";
  434. }
  435. elseif ($day_job_score > 15 && $day_job_score <= 25) {
  436. $day_job_message = "You are able to make some money working as a change agent, but not necessarily all that you need. This can lead to a frustrating experience of constantly grasping for clients and income, unable to get serious traction with your purpose! Do not ignore your personal financial needs; meeting them is a prerequisite for being a powerful change agent. You probably need either greater clarity of purpose, increased skill at marketing yourself as a change agent, or both.";
  437. }
  438. if ($day_job_score > 25) {
  439. $day_job_message = "You are able to meet you financial needs working as a change agent! This is an excellent development; it will free you to have much greater impact. As you increase your financial resources, you will be able to devote some of them to the manifestation of your purpose. Most change agents spend years struggling without achieving your level of success.";
  440. }
  441. else {
  442. $day_job_message = "NEED ELSE";
  443. }
  444.  
  445. if ($impact_score <= 15) {
  446. $impact_message = "You have not had nearly the degree of impact you desire. It can be extremely frustrating to know that you are meant to change the world and be unable to do so! There can be many causes for this “stuck” state, but there are four primary ones:<br/>
  447.  
  448. &#032; &#032; &#032; &#032; &#032; 1. Insufficient clarity of purpose – If you don't know the change you're meant to create IN DETAIL, it's pretty impossible to get anywhere as a change agent.<br/>
  449. &#032; &#032; &#032; &#032; &#032; 2. Internal blocks – You may be mired in fear, doubt and limiting beliefs. Internal misalignment can sabotage even the best of intentions.<br/>
  450. &#032; &#032; &#032; &#032; &#032; 3. Lack of skill – Knowing the change you're meant to create doesn't mean you know how! You may need additional training to become a powerful change agent.<br/>
  451. &#032; &#032; &#032; &#032; &#032; 4. Lack of resources – If you don't have the income or support you need, being a change agent can be a lonely, frustrating experience.<br/><br/>
  452.  
  453. You have work to do to be able to flourish and excel as a powerful change agent!";
  454. }
  455. elseif ($imact_score > 15 && $impact_score <=25) {
  456. $impact_message = "You have had some impact with your purpose, but probably not the degree of impact you feel called to create. It can be extremely frustrating to know that you are meant to change the world and be unable to do so! There can be many things that limit your impact, but there are four primary ones:<br/>
  457.  
  458. &#032; &#032; &#032; &#032; &#032; 5. Insufficient clarity of purpose – If you don't know the change you're meant to create IN DETAIL, it's pretty impossible to get anywhere as a change agent.
  459. &#032; &#032; &#032; &#032; &#032; 6. Internal blocks – You may be mired in fear, doubt and limiting beliefs. Internal misalignment can sabotage even the best of intentions.
  460. &#032; &#032; &#032; &#032; &#032; 7. Lack of skill – Knowing the change you're meant to create doesn't mean you know how! You may need additional training to become a powerful change agent.
  461. &#032; &#032; &#032; &#032; &#032; 8. Lack of resources – If you don't have the income or support you need, being a change agent can be a lonely, frustrating experience.<br/><br/>
  462.  
  463. You have already done a lot of work; now it's time to get the help you need to flourish and excel as a powerful change agent!";
  464. }
  465. elseif ($impact_score > 25) {
  466. $impact_message = "Congratulations on the impact you've been able to create! You have moved into a rarefied realm of successful change agents. Living your purpose has brought many benefits to you and others. The world isn't done transforming yet, though! Your purpose will call you to greater and greater levels of impact, and you will need to keep doing the internal work necessary to stay on the path. In particular, pay attention to the lure of power and its shadow; an empowered ego can be seduced unless you maintain constant vigilance.";
  467. }
  468.  
  469. if ($personal_vision_score <= 8) {
  470. $personal_vision_message = "You don't seem to have a clear, shared vision of the future you seek to create. This is dangerous, as it can lead you to complain about the current state of the world rather than calling people to a positive future. Problem-solving by itself will not create global transformation; we must navigate to a shared destination.";
  471. }
  472. elseif ($personal_vision_score > 8 && $personal_vision_score <= 18) {
  473. $personal_vision_message = "You seem to have some clarity of the world you are trying to create, however, it isn't completely clear to you. It is much easier to complain about the current state of the world rather than calling people to a positive future. Problem-solving by itself will not create global transformation; we must navigate to a shared destination.";
  474. }
  475. elseif ($personal_vision_score > 18 && $collective_score < 12) {
  476. $personal_vision_message = "You have a very clear vision of the future you seek to create, but you have had limited success at enrolling others in this vision. You will need to be more public about your vision and may need to develop your skills as a messenger. You cannot change the world alone!";
  477. }
  478. elseif ($personal_vision_score > 18 && $collective_score >= 12 && $collective_score <= 20) {
  479. $personal_vision_message = "You have a very clear vision of the future you seek to create and have had some success at enrolling others in your vision. You may need to develop your skills as a messenger to gather enough support to manifest your vision fully.";
  480. }
  481. elseif ($personal_vision_score > 18 && $collective_score > 20) {
  482. $personal_vision_message = "You have a very clear vision of the future you seek to create and have had great success at enrolling others in your vision. Bearing the torch and leading others to a positive future is a great gift to the world! Make sure that others own this vision fully and put their mark on it, otherwise it will die with you.";
  483. }
  484.  
  485. if ($resource_score <= 15) {
  486. $resource_message = "You don't seem to have access to the resources you need to manifest your vision. A dream of the future will remain a dream if you cannot create a foundation for it! You may need additional training in enrollment, marketing, sales and influence skills.";
  487. }
  488. elseif ($resource_score > 15 && $resource_score <= 25) {
  489. $resource_message = "You are able to make some money working as a change agent, but not necessarily all that you need. This can lead to a frustrating experience of constantly grasping for clients and income, unable to get serious traction with your purpose! Do not ignore your personal financial needs; meeting them is a prerequisite for being a powerful change agent. You probably need either greater clarity of purpose, increased skill at marketing yourself as a change agent, or both.";
  490. }
  491. elseif ($resource_score > 25) {
  492. $resource_message = "You are able to meet you financial needs working as a change agent! This is an excellent development; it will free you to have much greater impact. As you increase your financial resources, you will be able to devote some of them to the manifestation of your purpose. Most change agents spend years struggling without achieving your level of success.";
  493. }
  494.  
  495. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement